Assignment3Advanced.Timer.Timer C# (CSharp) 메소드

Timer() 공개 메소드

public Timer ( System.Action onReached, float targetTime ) : System
onReached System.Action
targetTime float
리턴 System
    public Timer(Action onReached, float targetTime)
    {
      this.elapsedTime = 0.0f;
      this.onReached = onReached;
      this.targetTime = targetTime;
    }