Example #1
0
File: RCS.cs Project: IronFox/Shard
 public GenID(StackID id, int generation)
 {
     StackID    = id;
     Generation = generation;
 }
Example #2
0
File: RCS.cs Project: IronFox/Shard
 public GenID(int[] numericID, int offset)
 {
     StackID    = new StackID(numericID, offset);
     Generation = numericID[offset + 6];
 }
Example #3
0
File: RCS.cs Project: IronFox/Shard
 public GenID(Int3 fromShard, Int3 toShard, int generation)
 {
     StackID    = new StackID(fromShard, toShard);
     Generation = generation;
 }