I am building a video game that uses a large number of timers that I would like to suspend if the user hits the Pause button. If the user then hits the Continue button I would like to either restart them, or if need be, potentially create new timers with what was remaining from the original one's.
Is there a way to get the amount of time remaining on a Java Timer before it would normally expire?
Thanks.