Assignment3.Timer.Timer C# (CSharp) Метод

Timer() публичный Метод

public Timer ( Event onReached, float targetTime ) : System
onReached Event
targetTime float
Результат System
    public Timer(Event onReached, float targetTime)
    {
      this.elapsedTime = 0.0f;
      this.onReached = onReached;
      this.targetTime = targetTime;
    }