C# 클래스 AGS.Types.Script

상속: IScript, IToXml
파일 보기 프로젝트 열기: adventuregamestudio/ags 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
LoadFromDisk ( ) : void
SaveToDisk ( ) : void
Script ( XmlNode node ) : System
Script ( string fileName, string text, bool isHeader ) : System

Creates a new Script which can be compiled with the AGS Script Compiler.

Script ( string fileName, string text, string name, string description, string author, string version, int uniqueKey, bool isHeader ) : System
ToXml ( XmlTextWriter writer ) : void

메소드 상세

LoadFromDisk() 공개 메소드

public LoadFromDisk ( ) : void
리턴 void

SaveToDisk() 공개 메소드

public SaveToDisk ( ) : void
리턴 void

Script() 공개 메소드

public Script ( XmlNode node ) : System
node System.Xml.XmlNode
리턴 System

Script() 공개 메소드

Creates a new Script which can be compiled with the AGS Script Compiler.
public Script ( string fileName, string text, bool isHeader ) : System
fileName string The script filename. If the script is internally /// generated and not stored on disk, make up a name and prefix it with /// an underscore.
text string The script itself.
isHeader bool Is this a script header or an actual script?
리턴 System

Script() 공개 메소드

public Script ( string fileName, string text, string name, string description, string author, string version, int uniqueKey, bool isHeader ) : System
fileName string
text string
name string
description string
author string
version string
uniqueKey int
isHeader bool
리턴 System

ToXml() 공개 메소드

public ToXml ( XmlTextWriter writer ) : void
writer System.Xml.XmlTextWriter
리턴 void