예제 #1
0
 public ArtGfxInstructionInfo(GfxProcessorModule module, int instructionId, bool isAnimatable)
 {
     this.module        = module;
     this.moduleId      = module.ModuleId;
     this.instructionId = instructionId;
     this.isAnimatable  = isAnimatable;
 }
예제 #2
0
 public static ArtGfxInstructionInfo RegisterGfxInfo(GfxProcessorModule module, int instructionId, bool isAnimatable, ArtGfxInstructionInfo[] table)
 {
     table[instructionId] = new ArtGfxInstructionInfo(module, instructionId, isAnimatable);
     return(table[instructionId]);
 }