WindowHandler.Tick C# (CSharp) 메소드

Tick() 공개 메소드

public Tick ( float t ) : void
t float
리턴 void
    public void Tick(float t)
    {
        if((Time.time - this.lastTime) > this.checkTimeout)
        {
            this.CheckIDs();
        }
    }