C# 클래스 TerrainDisplay.MpqConsole

Console used to execute commands in game.
상속: Microsoft.Xna.Framework.DrawableGameComponent
파일 보기 프로젝트 열기: WCell/WCell-Terrain

공개 메소드들

메소드 설명
Execute ( string input ) : void

Executes python commands from the console.

IsOpen ( ) : bool

Check if the console is open.

MpqConsole ( Microsoft.Xna.Framework.Game game, SpriteFont font ) : System

Creates a new MpqConsole

Open ( ) : void

Opens the console.

Write ( string s ) : void

Writes text to the console

WriteLine ( string s ) : void

Writes a line to the console

메소드 상세

Execute() 공개 메소드

Executes python commands from the console.
public Execute ( string input ) : void
input string
리턴 void

IsOpen() 공개 메소드

Check if the console is open.
public IsOpen ( ) : bool
리턴 bool

MpqConsole() 공개 메소드

Creates a new MpqConsole
public MpqConsole ( Microsoft.Xna.Framework.Game game, SpriteFont font ) : System
game Microsoft.Xna.Framework.Game
font Microsoft.Xna.Framework.Graphics.SpriteFont
리턴 System

Open() 공개 메소드

Opens the console.
public Open ( ) : void
리턴 void

Write() 공개 메소드

Writes text to the console
public Write ( string s ) : void
s string String to write
리턴 void

WriteLine() 공개 메소드

Writes a line to the console
public WriteLine ( string s ) : void
s string String to write
리턴 void