public void PickupDrop(Drop drop) { drop.IsPickedUp = true; _drops.Remove(drop); }
public void AddDrop(Drop drop) { _drops.Add(drop); }