C# Класс TerrainDisplay.MpqConsole

Console used to execute commands in game.
Наследование: Microsoft.Xna.Framework.DrawableGameComponent
Показать файл Открыть проект

Открытые методы

Метод Описание
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