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.
Show file Open project: scastle/Solitude Class Usage Examples

Public Methods

Method 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 method

Draws this instance.
public Draw ( ) : void
return void

IsOnTop() public method

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

Screen() public method

Initializes a new instance of the Screen class.
public Screen ( ) : System
return System

Update() public method

Updates this instance.
public Update ( ) : void
return void