Ejemplo n.º 1
0
 public NashaOpcode(int ID)
 {
     this.ID         = ID;
     this.ShuffledID = NashaOpcodes.GenerateInteger();
     this.BlockID    = NashaOpcodes.GenerateBlockInteger();
 }
Ejemplo n.º 2
0
 public NashaOpcode(string Name, int ID)
 {
     this.Name       = Name;
     this.ID         = ID;
     this.ShuffledID = NashaOpcodes.GenerateInteger();
 }