예제 #1
0
 public void Write(ROM rom)
 {
     rom.Write16(Rx, 10);
     rom.Write16(Ry, 12);
     rom.Write16(Rz, 14);
 }
예제 #2
0
 public void Write(ROM rom)
 {
     rom.Write16(X, 4);
     rom.Write16(Y, 6);
     rom.Write16(Z, 8);
 }
예제 #3
0
 public ObjectRotation(ROM rom)
 {
     Rx = rom.Read16(10);
     Ry = rom.Read16(12);
     Rz = rom.Read16(14);
 }
예제 #4
0
 public ObjectPosition(ROM rom)
 {
     X = rom.Read16(4);
     Y = rom.Read16(6);
     Z = rom.Read16(8);
 }