コード例 #1
0
ファイル: BlockCmd.cs プロジェクト: mm-binary/DARF
 public BlockCmd(Identifier id, BlockImport import, BlockWebImport webImport, CommandBlock commandBlock)
 {
     this.id = id;
     this.import = import;
     this.commandBlock = commandBlock;
     this.webImport = webImport;
 }
コード例 #2
0
ファイル: BlockCmd.cs プロジェクト: mm-binary/DARF
 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;
 }
コード例 #3
0
ファイル: BlockWebCmd.cs プロジェクト: mm-binary/DARF
        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);
        }