Example #1
0
 public BlockCmd(Identifier id, BlockImport import, BlockWebImport webImport, CommandBlock commandBlock)
 {
     this.id = id;
     this.import = import;
     this.commandBlock = commandBlock;
     this.webImport = webImport;
 }
Example #2
0
 public BlockCmd(Identifier id, BlockHandleToken handle, BlockWebImport webImport, BlockRemotableType blockSuffix, CommandBlock commandBlock)
 {
     this.id = id;
     this.handle = handle;
     this.commandBlock = commandBlock;
     this.webImport = webImport;
     this.blockSuffix = blockSuffix;
 }
Example #3
0
        public BlockWebCmd(Identifier name, BlockWebImport import, BlockWebSuffix suffix, CommandBlock commandBlock)
        {
            this.name = name;
            this.commandBlock = commandBlock;
            this.import = import;
            this.suffix = suffix;

            ExecutionContext.Current.RegisterBlockWebDefinition(name.ValueText, this);
        }
Example #4
0
 public IfCmd(Condition condition, CommandBlock ifBlock, CommandBlock elseBlock)
 {
     this.condition = condition;
     this.ifBlock = ifBlock;
     this.elseBlock = elseBlock;
 }
Example #5
0
 public DefineBody(CommandBlock commandBlock)
 {
     this.commandBlock = commandBlock;
 }
Example #6
0
 public WhileCmd(CommandBlock commandBlock, Condition condition)
 {
     this.condition = condition;
     this.commandBlock = commandBlock;
     isDoWhile = true;
 }
Example #7
0
 public WhileCmd(Condition condition, CommandBlock commandBlock)
 {
     this.condition = condition;
     this.commandBlock = commandBlock;
 }