C# 클래스 Project290.Screens.Screen

This is a placeholder public class in which screens should inherit from. It contains methods for Updating, Drawing, and Resetting.
파일 보기 프로젝트 열기: scastle/Solitude 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

Draw() 공개 메소드

Draws this instance.
public Draw ( ) : void
리턴 void

IsOnTop() 공개 메소드

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

Screen() 공개 메소드

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

Update() 공개 메소드

Updates this instance.
public Update ( ) : void
리턴 void