Beispiel #1
0
 public bool Equals(Item otherItem)
 {
     return tag == otherItem.tag && image == otherItem.image;
 }
Beispiel #2
0
 void OnReceptacleChanged(Item targetItemNeeded, int targetQtyNeeded)
 {
     ItemDisplay.sprite = targetItemNeeded.image;
     ItemQtyDisplay.text = "x " + targetQtyNeeded.ToString("D2");
 }