Ejemplo n.º 1
0
 private void BatteryEmpty()
 {
     Debug.Log("BatteryEmpty");
     type           = watchType.battery;
     _timeText.text = "Low battery";
     _dayText.text  = "worming";
 }
Ejemplo n.º 2
0
 //Watch Constructor
 public Watch(string name, Type itemType, decimal cost, int stockLevel, int restockLevel, accessoryType accessoryType, watchType type) :
     base(name, itemType, cost, stockLevel, restockLevel, accessoryType)
 {
     this.type = type;
 }