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;
    }