dummy命令,用于注册没有对应实现的命令(为了解析需要注册)。
Inheritance: AbstractStoryCommand
Exemple #1
0
 static public int constructor(IntPtr l)
 {
     try {
         StorySystem.CommonCommands.DummyCommand o;
         o = new StorySystem.CommonCommands.DummyCommand();
         pushValue(l, true);
         pushValue(l, o);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemple #2
0
        public override IStoryCommand Clone()
        {
            DummyCommand cmd = new DummyCommand();

            return(cmd);
        }
 public override IStoryCommand Clone()
 {
     DummyCommand cmd = new DummyCommand();
     return cmd;
 }