C# Class RecordRobot.GameElements.GameScreen

This is a placeholder public class in which screens should inherit from. It contains methods for Updating, Drawing, and Resetting.
显示文件 Open project: scastle/EECS290_Project1

Public Methods

Method Description
Draw ( ) : void

Draws this instance.

GameScreen ( ) : System

Initializes a new instance of the GameScreen class.

Update ( ) : void

Updates this instance.

Method Details

Draw() public method

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

GameScreen() public method

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

Update() public method

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