C# Class MyGame.CreditsScreen

This class represent the Credits Screen that hold the name of the persons who worked on that game
Inheritance: Screen
Show file Open project: mahmoudbahaa/XNA-Game-project Class Usage Examples

Public Methods

Method Description
CreditsScreen ( MyGame game ) : System
Draw ( GameTime gameTime ) : void

This method renders the current state.

Update ( GameTime gameTime ) : void

Allows the game component to update itself.

Method Details

CreditsScreen() public method

public CreditsScreen ( MyGame game ) : System
game MyGame
return System

Draw() public method

This method renders the current state.
public Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime The elapsed game time.
return void

Update() public method

Allows the game component to update itself.
public Update ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime Provides a snapshot of timing values.
return void