Example #1
0
 public void DisplayInfo(GameTile gameTile)
 {
     if (gameTile == null)
     {
         infoText.text = "";
     }
     else
     {
         infoText.text = gameTile.GetInfoText();
     }
 }