diff options
author | David Thompson <dthompson2@worcester.edu> | 2013-07-31 23:34:03 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2013-07-31 23:34:03 -0400 |
commit | a3aa623daff26b34aa7e7eed656e73c236213351 (patch) | |
tree | 1b15ca639e8203469d14fe8de878fb1cf1702a5f | |
parent | 460ec9e2e0df67927e2afb742af15edf46c4182e (diff) |
Small re-organization.
-rw-r--r-- | 2d/game-loop.scm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/2d/game-loop.scm b/2d/game-loop.scm index 1c22ffc..199cb80 100644 --- a/2d/game-loop.scm +++ b/2d/game-loop.scm @@ -40,11 +40,20 @@ run-game-loop current-fps)) +;;; +;;; Constants +;;; + (define target-fps 60) -(define *fps* 0) (define tick-interval (floor (/ 1000 target-fps))) ;;; +;;; Globals +;;; + +(define *fps* 0) + +;;; ;;; Hooks ;;; |