예제 #1
0
 public override void Awake()
 {
     Instance = this;
 }
예제 #2
0
파일: TimerComponent.cs 프로젝트: x00568/ET
        public static async ETTask <bool> WaitFrameAsync(this TimerComponent self, ETCancellationToken cancellationToken = null)
        {
            bool ret = await self.WaitAsync(1, cancellationToken);

            return(ret);
        }