示例#1
0
 public void SetText(int textId, AdventureGameState returnState)
 {
     GameData.state = AdventureGameState.Text;
     SetText(textId);
     this.returnState = returnState;
 }
示例#2
0
 public ScriptHandler(AdventureGameState scriptState, short[] CommandCodes, short[] ArgumentCodes)
 {
     this.scriptState = scriptState;
     commandCodes     = CommandCodes;
     argumentCodes    = ArgumentCodes;
 }