C# Class TestGame.TestGame

Inheritance: Game
Show file Open project: demiurghg/FusionEngine Class Usage Examples

Public Methods

Method Description
Game_Exiting ( object sender, EventArgs e ) : void

Saves configuration on exit.

InputDevice_KeyDown ( object sender, InputDevice e ) : void

Handle keys

TestGame ( ) : System

TestGame constructor

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Disposes game

Draw ( GameTime gameTime, StereoEye stereoEye ) : void

Draws game

Initialize ( ) : void

Initializes game :

Update ( GameTime gameTime ) : void

Updates game

Method Details

Dispose() protected method

Disposes game
protected Dispose ( bool disposing ) : void
disposing bool
return void

Draw() protected method

Draws game
protected Draw ( GameTime gameTime, StereoEye stereoEye ) : void
gameTime Microsoft.Xna.Framework.GameTime
stereoEye StereoEye
return void

Game_Exiting() public method

Saves configuration on exit.
public Game_Exiting ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void

Initialize() protected method

Initializes game :
protected Initialize ( ) : void
return void

InputDevice_KeyDown() public method

Handle keys
public InputDevice_KeyDown ( object sender, InputDevice e ) : void
sender object
e InputDevice
return void

TestGame() public method

TestGame constructor
public TestGame ( ) : System
return System

Update() protected method

Updates game
protected Update ( GameTime gameTime ) : void
gameTime GameTime
return void