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