C# Class RekdEngine.Core.Game

Inheritance: RunnableRekd, IDisposable
Afficher le fichier Open project: Naronco/Rekd-Sharp

Méthodes publiques

Méthode Description
BeforeLoop ( ) : void
Init ( ) : void

Require Librarys and define Post Process Shaders etc. here

InitVars ( ) : void
Load ( ) : void

Load Content here

Render ( System.TimeSpan t ) : void

Draw your Scene here

Run ( string Title, uint Width, uint Height ) : void
Unload ( ) : void

Unload all non Content variable stuff here

Update ( System.TimeSpan t ) : void

Update your Game Logic here

Method Details

BeforeLoop() public méthode

public BeforeLoop ( ) : void
Résultat void

Init() public abstract méthode

Require Librarys and define Post Process Shaders etc. here
public abstract Init ( ) : void
Résultat void

InitVars() public méthode

public InitVars ( ) : void
Résultat void

Load() public abstract méthode

Load Content here
public abstract Load ( ) : void
Résultat void

Render() public abstract méthode

Draw your Scene here
public abstract Render ( System.TimeSpan t ) : void
t System.TimeSpan
Résultat void

Run() public méthode

public Run ( string Title, uint Width, uint Height ) : void
Title string
Width uint
Height uint
Résultat void

Unload() public abstract méthode

Unload all non Content variable stuff here
public abstract Unload ( ) : void
Résultat void

Update() public abstract méthode

Update your Game Logic here
public abstract Update ( System.TimeSpan t ) : void
t System.TimeSpan
Résultat void