Exemple #1
0
 public void Reset(float timer, OnFinishedTimer onFinishedTimer)
 {
     StopAllCoroutines();
     this.time            = timer;
     this.onFinishedTimer = onFinishedTimer;
     StartCoroutine(UpdateTimer());
 }
Exemple #2
0
 public void Init(string id, float time, OnFinishedTimer onFinishedTimer)
 {
     this.id              = id;
     this.time            = time;
     this.onFinishedTimer = onFinishedTimer;
     StartCoroutine(UpdateTimer());
 }