Example #1
0
 public void DropSoftObject(Pawn pawn, Cell target, int amount)
 {
     SpawnSoftObject(pawn.Carrying, target, amount);
     pawn.Carrying = null;
 }
Example #2
0
 // Constructor
 public HardObject(ObjectInfo objectInfo, Cell cell) : base(cell)
 {
     this.objectInfo = objectInfo;
 }