Ejemplo n.º 1
0
 public void RemoveMeat(Meat removeMeat)
 {
     meatsToRemove.Add(removeMeat);
 }
 public void DropOffMeat(Meat meat)
 {
     meatStore.addMeat(meat.value);
 }
Ejemplo n.º 3
0
 public void RemoveCow(Cow removeCow)
 {
     activeCows.Remove(removeCow);
     Meat newMeat = new Meat(this, GetTexture(typeof(Meat)), removeCow.cowPosition);
     activeMeats.Add(newMeat);
     collisionManager.addOther(newMeat);
     collisionManager.removeCow(removeCow);
 }