vooga.games.digger
Class Blah

java.lang.Object
  extended by com.golden.gamedev.Game
      extended by vooga.engine.core.Game
          extended by vooga.games.digger.Blah

public class Blah
extends Game

The start of a game which will apparently feature digging somehow.


Field Summary
 java.util.Map<java.lang.String,GameState> stateMap
           
 
Fields inherited from class vooga.engine.core.Game
levelParser, myCurrentLevel, myPlayState, stateManager
 
Constructor Summary
Blah()
           
 
Method Summary
 void initGameStates()
          Initializes the GameStateManager.
static void main(java.lang.String[] args)
           
 void switchGameState(java.lang.String stateName)
           
 
Methods inherited from class vooga.engine.core.Game
addGameState, getCurrentLevel, getGameStateManager, getPlayGameState, getResourceXMLPath, initResources, initSoundPlayer, launch, render, setAsPlayGameState, update
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

stateMap

public java.util.Map<java.lang.String,GameState> stateMap
Constructor Detail

Blah

public Blah()
Method Detail

main

public static void main(java.lang.String[] args)

switchGameState

public void switchGameState(java.lang.String stateName)

initGameStates

public void initGameStates()
Description copied from class: Game
Initializes the GameStateManager. This should be overridden by subclasses which should call super() and then setup/add all necessary GameStates.

Overrides:
initGameStates in class Game