Rev 369 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
package com.gebauz.Bauzoid.app;
import com.gebauz.Bauzoid.game.Game;
import com.gebauz.Bauzoid.game.GameObject;
public abstract class CustomServices extends GameObject
{
public CustomServices(Game game)
{
super(game);
}
public void init()
{
}
public void exit()
{
}
public void update(float deltaTime)
{
}
public void render()
{
}
}