C# 클래스 CarpMuffin.Screens.Screen

Base for all screens
상속: IScreen
파일 보기 프로젝트 열기: BetaToast/CarpMuffin

공개 메소드들

메소드 설명
Draw ( GameTime gameTime ) : void
ListenForMessage ( string id, Action action ) : void
LoadContent ( Microsoft.Xna.Framework.Content.ContentManager content ) : void
SendMessage ( string to, object what ) : void
Update ( GameTime gameTime ) : void

보호된 메소드들

메소드 설명
Screen ( ) : System

메소드 상세

Draw() 공개 추상적인 메소드

public abstract Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime
리턴 void

ListenForMessage() 공개 메소드

public ListenForMessage ( string id, Action action ) : void
id string
action Action
리턴 void

LoadContent() 공개 추상적인 메소드

public abstract LoadContent ( Microsoft.Xna.Framework.Content.ContentManager content ) : void
content Microsoft.Xna.Framework.Content.ContentManager
리턴 void

Screen() 보호된 메소드

protected Screen ( ) : System
리턴 System

SendMessage() 공개 메소드

public SendMessage ( string to, object what ) : void
to string
what object
리턴 void

Update() 공개 추상적인 메소드

public abstract Update ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime
리턴 void