Blame |
Last modification |
View Log
| RSS feed
package com.gebauz.Bauzoid.app;
/** Base class for all objects that are tied into the game graph. */
public abstract class GameObject
{
private Game mGame = null;
/** Constructor. */
public GameObject(Game game)
{
mGame = game;
}
/** Get the root game object. */
public final Game getGame()
{
return mGame;
}
}