Add animations.

This commit is contained in:
David Thompson 2024-05-25 06:52:59 -04:00
parent 6896b49848
commit faf4fa7124
5 changed files with 128 additions and 21 deletions

6
modules/game/time.scm Normal file
View file

@ -0,0 +1,6 @@
(define-module (game time)
#:use-module (scheme time)
#:export (current-time*))
(define (current-time*)
(/ (exact->inexact (current-jiffy)) (jiffies-per-second)))