C# Class Project290.Screens.Screen

This is a placeholder public class in which screens should inherit from. It contains methods for Updating, Drawing, and Resetting.
Afficher le fichier Open project: scastle/Solitude Class Usage Examples

Méthodes publiques

Méthode Description
Draw ( ) : void

Draws this instance.

IsOnTop ( ) : bool

Determines whether this instance is on the top of the screen stack.

Screen ( ) : System

Initializes a new instance of the Screen class.

Update ( ) : void

Updates this instance.

Method Details

Draw() public méthode

Draws this instance.
public Draw ( ) : void
Résultat void

IsOnTop() public méthode

Determines whether this instance is on the top of the screen stack.
public IsOnTop ( ) : bool
Résultat bool

Screen() public méthode

Initializes a new instance of the Screen class.
public Screen ( ) : System
Résultat System

Update() public méthode

Updates this instance.
public Update ( ) : void
Résultat void