C# Class WaveEngine.Components.GameActions.UpdatableGameAction

Game action that is updated
Inheritance: GameAction
ファイルを表示 Open project: WaveEngine/Components Class Usage Examples

Public Methods

Method Description
UpdatableGameAction ( string name, Scene scene = null ) : System

Initializes a new instance of the UpdatableGameAction class.

Update ( System.TimeSpan gameTime ) : void

Updates the game action

Method Details

UpdatableGameAction() public method

Initializes a new instance of the UpdatableGameAction class.
public UpdatableGameAction ( string name, Scene scene = null ) : System
name string The name of the game action
scene Scene The scene
return System

Update() public abstract method

Updates the game action
public abstract Update ( System.TimeSpan gameTime ) : void
gameTime System.TimeSpan The ellapsed time
return void