コード例 #1
0
ファイル: Timer.cs プロジェクト: Blizzardx/ClientFrameWork
 public Timer(TimerCollection.Callback _func, bool autoR, TimerCollection.CallbackWithTime _funcWithTime)
 {
     func = _func;
     funcWithTime = _funcWithTime;
     autoRelease = autoR;
 }
コード例 #2
0
 public Timer(TimerCollection.Callback _func, bool autoR, TimerCollection.CallbackWithTime _funcWithTime)
 {
     func         = _func;
     funcWithTime = _funcWithTime;
     autoRelease  = autoR;
 }
コード例 #3
0
ファイル: Timer.cs プロジェクト: Blizzardx/ClientFrameWork
    public Timer(TimerCollection.Callback _func, TimerCollection.CallbackWithTime _funcWithTime)
    {
		func = _func;
        funcWithTime = _funcWithTime;
        autoRelease = false;
	}
コード例 #4
0
 public Timer(TimerCollection.Callback _func, TimerCollection.CallbackWithTime _funcWithTime)
 {
     func         = _func;
     funcWithTime = _funcWithTime;
     autoRelease  = false;
 }