Section.thatsMe C# (CSharp) 메소드

thatsMe() 공개 메소드

public thatsMe ( float time ) : bool
time float
리턴 bool
    public bool thatsMe(float time)
    {
        if (time >= t_upToHere && time < t_end)
            return true;
        return false;
    }