vooga.games.zombieland.gamestates
Class MainMenu

java.lang.Object
  extended by vooga.engine.state.GameState
      extended by vooga.games.zombieland.gamestates.MenuState
          extended by vooga.games.zombieland.gamestates.MainMenu
All Implemented Interfaces:
Constants

public class MainMenu
extends MenuState


Field Summary
 
Fields inherited from class vooga.engine.state.GameState
myRenderField, myUpdateField
 
Fields inherited from interface vooga.games.zombieland.Constants
ATTACKDOWN, ATTACKLEFT, ATTACKRIGHT, ATTACKUP, DEATH, DEFAULT_RESOURCE_DIRECTORY, GAME_HEIGHT, GAME_WIDTH, MAIN_CLASS, PLAYER_CLASS, PLAYER_DOWN, PLAYER_LEFT, PLAYER_RIGHT, PLAYER_UP, RESOURCE_FILENAME, STATES_XML_PATH, XML_PATH, ZOMBIE_DOWN, ZOMBIE_LEFT, ZOMBIE_RIGHT, ZOMBIE_UP
 
Constructor Summary
MainMenu(Blah g)
           
 
Method Summary
 void initialize()
          The initialize method sets up specific variables and parameters necessary to the specific functioning of the GameState.
 
Methods inherited from class vooga.games.zombieland.gamestates.MenuState
getKeyboardControl, getMouseControl, initialize
 
Methods inherited from class vooga.engine.state.GameState
activate, addGroup, addPlayField, addRenderPlayField, addRenderState, addState, addUpdatePlayField, addUpdateState, deactivate, equals, getGroup, getRenderField, getUpdateField, isActive, removeEverything, render, update
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MainMenu

public MainMenu(Blah g)
Method Detail

initialize

public void initialize()
Description copied from class: GameState
The initialize method sets up specific variables and parameters necessary to the specific functioning of the GameState. This should include all of the necessary initialization for the GameState's specific use, rather than anything broadly required for all GameStates.

Specified by:
initialize in class GameState