Esempio n. 1
0
 void Start()
 {
     stomach = playerData.getStomach();
     stomach.registerSubscriber(this);
     if (score == null)
     {
         score = GameObject.FindObjectOfType <Score>();
     }
 }
Esempio n. 2
0
 void Start()
 {
     stomach.registerSubscriber(this);
     InvokeRepeating("decreaseStomach", 4.0f, 4.0f);
 }