I have made separate project for countdown timer and it is working fine. Now i have to apply that in my game. So i need a suggestion where the timer should be called? In thread, in main class where i am giving gameview refernce or in a gameview class?
Share
As timer itself is a thread and Each timer has one thread on which tasks are executed sequentially. When this thread is busy running a task, runnable tasks may be subject to delays. So you should call your Thread from the Main class