diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-06-28 18:46:16 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-06-28 18:46:16 -0400 |
commit | f47eb69a354188154731846dde8b384c2c2f39f6 (patch) | |
tree | 6aa1ccb9212836b7c941e771475eb995fa6df9f9 /sandbox | |
parent | df0f2a5f3f09394f1953abbc7e33e9a98204680e (diff) |
Rename guile-2d to Sly!
Massive find/replace job.
Diffstat (limited to 'sandbox')
-rwxr-xr-x | sandbox | 44 |
1 files changed, 22 insertions, 22 deletions
@@ -2,7 +2,7 @@ -L . -s !# -;;; guile-2d +;;; Sly ;;; Copyright (C) 2014 David Thompson <dthompson2@worcester.edu> ;;; ;;; This program is free software: you can redistribute it and/or @@ -19,32 +19,32 @@ ;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. -;; Include almost every guile-2d module for convenience. -(use-modules (2d agenda) - (2d audio) - (2d color) - (2d coroutine) - (2d font) - (2d fps) - (2d game) - (2d keyboard) - (2d mouse) - (2d rect) - (2d signal) - (2d sprite) - (2d texture) - (2d transform) - (2d vector2) - (2d window) - (2d repl)) +;; Include almost every Sly module for convenience. +(use-modules (sly agenda) + (sly audio) + (sly color) + (sly coroutine) + (sly font) + (sly fps) + (sly game) + (sly keyboard) + (sly mouse) + (sly rect) + (sly signal) + (sly sprite) + (sly texture) + (sly transform) + (sly vector2) + (sly window) + (sly repl)) -(start-2d-repl) +(start-sly-repl) (add-hook! window-close-hook stop-game-loop) -(display "Welcome to the guile-2d sandbox. Happy hacking!\n") +(display "Welcome to the Sly sandbox. Happy hacking!\n") -(with-window (make-window #:title "Guile-2D Sandbox") +(with-window (make-window #:title "Sly Sandbox") (start-game-loop)) (display "Bye!\n") |