Example #1
0
 public Timer(TimerCollection.Callback _func, bool autoR, TimerCollection.CallbackWithTime _funcWithTime)
 {
     func = _func;
     funcWithTime = _funcWithTime;
     autoRelease = autoR;
 }
Example #2
0
 public Timer(TimerCollection.Callback _func, bool autoR, TimerCollection.CallbackWithTime _funcWithTime)
 {
     func         = _func;
     funcWithTime = _funcWithTime;
     autoRelease  = autoR;
 }
Example #3
0
    public Timer(TimerCollection.Callback _func, TimerCollection.CallbackWithTime _funcWithTime)
    {
		func = _func;
        funcWithTime = _funcWithTime;
        autoRelease = false;
	}
Example #4
0
 public Timer(TimerCollection.Callback _func, TimerCollection.CallbackWithTime _funcWithTime)
 {
     func         = _func;
     funcWithTime = _funcWithTime;
     autoRelease  = false;
 }