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