C# Class RedBadger.Xpf.Sandbox.Game1

Inheritance: Microsoft.Xna.Framework.Game
Mostra file Open project: redbadger/XPF

Public Methods

Method Description
Game1 ( ) : System

Protected Methods

Method Description
Draw ( GameTime gameTime ) : void
LoadContent ( ) : void

LoadContent will be called once per game and is the place to load all of your content.

Update ( GameTime gameTime ) : void

Allows the game to run logic such as updating the world, checking for collisions, gathering input, and playing audio.

Method Details

Draw() protected method

protected Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime
return void

Game1() public method

public Game1 ( ) : System
return System

LoadContent() protected method

LoadContent will be called once per game and is the place to load all of your content.
protected LoadContent ( ) : void
return void

Update() protected method

Allows the game to run logic such as updating the world, checking for collisions, gathering input, and playing audio.
protected Update ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime Provides a snapshot of timing values.
return void