C# Class Swordening.StationaryRockSmall

This is a game component that implements IUpdateable.
Inheritance: StationaryObject
ファイルを表示 Open project: ArghyV/Peliohjelmointi-s2011

Public Methods

Method Description
Draw ( GameTime gameTime ) : void

Allows the game component to update itself.

Initialize ( ) : void

Allows the game component to perform any initialization it needs to before starting to run. This is where it can query for any required services and load content.

StationaryRockSmall ( Microsoft.Xna.Framework.Game game ) : System
Update ( GameTime gameTime ) : void

Allows the game component to update itself.

Method Details

Draw() public method

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

Initialize() public method

Allows the game component to perform any initialization it needs to before starting to run. This is where it can query for any required services and load content.
public Initialize ( ) : void
return void

StationaryRockSmall() public method

public StationaryRockSmall ( Microsoft.Xna.Framework.Game game ) : System
game Microsoft.Xna.Framework.Game
return System

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