How to get system time in HaxeFlixel ?
-
I'm making a project for school and I want to get the current time of the system in the game and show it on screen.
I know there is a function called in Unity ; "System.DateTime.Now" to get the time. is there also something like this in HaxeFlixel?
if there is none, what is another way to get this done?
Thanks in Advance!
-
There's
Date.now()
: http://api.haxe.org/Date.html#now
-
Thanks :)