Example #1
0
 public static bool GoldIsEnoughToBuy(IBuyable buyableScript)
 {
     if (buyableScript.Price() <= gold)
     {
         return(true);
     }
     else
     {
         FloatingTextController.CreateWarningText("The current money is not enough to buy");
         return(false);
     }
 }