public Timer Create(Callback func, bool autoRelease, CallbackWithTime _funcWithTime) { Timer t = new Timer(func, autoRelease, _funcWithTime); timerList.AddLast(t); return(t); }
public Timer Create(Callback func, CallbackWithTime _funcWithTime) { var timer = new Timer(func, _funcWithTime); timerList.AddLast(timer); return(timer); }
public Timer Create(Callback func, bool autoRelease, CallbackWithTime _funcWithTime) { Timer t = new Timer(func, autoRelease, _funcWithTime); timerList.AddLast(t); return t; }
public Timer Create(Callback func, CallbackWithTime _funcWithTime) { var timer = new Timer(func, _funcWithTime); timerList.AddLast(timer); return timer; }