C# Class TestGame.TestGame

Inheritance: Game
Afficher le fichier Open project: demiurghg/FusionEngine Class Usage Examples

Méthodes publiques

Méthode 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

Méthodes protégées

Méthode 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 méthode

Disposes game
protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

Draw() protected méthode

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

Game_Exiting() public méthode

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

Initialize() protected méthode

Initializes game :
protected Initialize ( ) : void
Résultat void

InputDevice_KeyDown() public méthode

Handle keys
public InputDevice_KeyDown ( object sender, InputDevice e ) : void
sender object
e InputDevice
Résultat void

TestGame() public méthode

TestGame constructor
public TestGame ( ) : System
Résultat System

Update() protected méthode

Updates game
protected Update ( GameTime gameTime ) : void
gameTime GameTime
Résultat void