C# Class Artemis.Engine.GameKernel

A subclass of Monogame's Game object from which the Updating and Rendering actually stems. We need to explicitly create an instance of this in ArtemisEngine.
Inheritance: Microsoft.Xna.Framework.Game
Afficher le fichier Open project: ArtemisEngine/Artemis-Engine Class Usage Examples

Méthodes publiques

Méthode Description
GameKernel ( ArtemisEngine engine, string contentFolder, bool fixedTimeStep, int frameRate ) : System

Méthodes protégées

Méthode Description
Draw ( GameTime gameTime ) : void
Initialize ( ) : void
LoadContent ( ) : void
UnloadContent ( ) : void
Update ( GameTime gameTime ) : void

Method Details

Draw() protected final méthode

protected final Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime
Résultat void

GameKernel() public méthode

public GameKernel ( ArtemisEngine engine, string contentFolder, bool fixedTimeStep, int frameRate ) : System
engine ArtemisEngine
contentFolder string
fixedTimeStep bool
frameRate int
Résultat System

Initialize() protected final méthode

protected final Initialize ( ) : void
Résultat void

LoadContent() protected final méthode

protected final LoadContent ( ) : void
Résultat void

UnloadContent() protected final méthode

protected final UnloadContent ( ) : void
Résultat void

Update() protected final méthode

protected final Update ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime
Résultat void