I made a simple card-memory game, and I want to implement timer/stopwatch (to record fastest time). Gosu.milliseconds works for the first playthrough, but then just keeps counting. Can I reset Gosu.milliseconds back to zero or should I use ruby time class (or something else)?
it's not that easy, there is an unknown time gap between when the game ends, and when the player click on "play again" button. looks like I'll have to implement custom Stopwatch class (or add 5 extra variables ...). It would be much easier if I could just restart Gosu::milliseconds :/