Uses of Class
com.jmex.game.state.GameStateNode

Packages that use GameStateNode
com.jmex.game.state   
 

Uses of GameStateNode in com.jmex.game.state
 

Subclasses of GameStateNode in com.jmex.game.state
 class BasicGameStateNode<G extends GameState>
          BasicGameStateNode this is identical to BasicGameState except it allows you to add additional GameStates as children beneath it.
 class GameStateManager
          GameStateManager is nothing more than a singleton GameStateNode.
 

Fields in com.jmex.game.state declared as GameStateNode
protected  GameStateNode GameState.parent
          GameState's parent, or null if it has none (is the root node).
 

Methods in com.jmex.game.state that return GameStateNode
 GameStateNode GameState.getParent()
          Retrieves the parent of this GameState.
 

Methods in com.jmex.game.state with parameters of type GameStateNode
 void GameState.setParent(GameStateNode parent)
          Sets the parent of this node.