Example #1
0
 public void Place(PlacementSurface surface)
 {
     if (surface.GetComponent <SinkSurface>())
     {
         throw new ArgumentException("Can't place food in Sink", nameof(surface));
     }
     throw new NotImplementedException();
 }