diff options
author | David Thompson <dthompson2@worcester.edu> | 2013-11-04 06:39:04 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2013-11-04 06:39:04 -0500 |
commit | ce9242b9a40f995bd60aa6111a79900e12b9f1de (patch) | |
tree | b8168031826551987a68273fbd80240db4042e05 /examples | |
parent | 238800cded9aa2df6748de1ba3b6f86fffb83821 (diff) |
Update examples.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/action.scm | 1 | ||||
-rw-r--r-- | examples/animation.scm | 1 | ||||
-rw-r--r-- | examples/coroutine.scm | 1 | ||||
-rw-r--r-- | examples/font.scm | 1 | ||||
-rw-r--r-- | examples/particles.scm | 1 | ||||
-rw-r--r-- | examples/scenes.scm | 1 | ||||
-rw-r--r-- | examples/simple.scm | 1 | ||||
-rw-r--r-- | examples/tilemap.scm | 1 |
8 files changed, 0 insertions, 8 deletions
diff --git a/examples/action.scm b/examples/action.scm index fa68dc0..b2a43b6 100644 --- a/examples/action.scm +++ b/examples/action.scm @@ -2,7 +2,6 @@ (2d agenda) (2d coroutine) (2d game) - (2d game-loop) (2d scene) (2d sprite) (2d stage) diff --git a/examples/animation.scm b/examples/animation.scm index 6e0c5c7..bee35c2 100644 --- a/examples/animation.scm +++ b/examples/animation.scm @@ -1,6 +1,5 @@ (use-modules (2d animation) (2d game) - (2d game-loop) (2d scene) (2d sprite) (2d stage) diff --git a/examples/coroutine.scm b/examples/coroutine.scm index bdfc973..58b3a1b 100644 --- a/examples/coroutine.scm +++ b/examples/coroutine.scm @@ -1,7 +1,6 @@ (use-modules (2d agenda) (2d coroutine) (2d game) - (2d game-loop) (2d scene) (2d sprite) (2d stage) diff --git a/examples/font.scm b/examples/font.scm index 3c8e085..05eb4bf 100644 --- a/examples/font.scm +++ b/examples/font.scm @@ -3,7 +3,6 @@ (2d color) (2d font) (2d game) - (2d game-loop) (2d scene) (2d stage) (2d vector2)) diff --git a/examples/particles.scm b/examples/particles.scm index cc7ca82..786793d 100644 --- a/examples/particles.scm +++ b/examples/particles.scm @@ -2,7 +2,6 @@ (use-modules (srfi srfi-1) (srfi srfi-9) (2d game) - (2d game-loop) (2d scene) (2d sprite) (2d texture) diff --git a/examples/scenes.scm b/examples/scenes.scm index ec0de6d..46d9956 100644 --- a/examples/scenes.scm +++ b/examples/scenes.scm @@ -1,5 +1,4 @@ (use-modules (2d game) - (2d game-loop) (2d scene) (2d stage) (2d sprite) diff --git a/examples/simple.scm b/examples/simple.scm index 09a403f..04711a5 100644 --- a/examples/simple.scm +++ b/examples/simple.scm @@ -1,5 +1,4 @@ (use-modules (2d game) - (2d game-loop) (2d scene) (2d sprite) (2d vector2)) diff --git a/examples/tilemap.scm b/examples/tilemap.scm index 141184e..011136d 100644 --- a/examples/tilemap.scm +++ b/examples/tilemap.scm @@ -2,7 +2,6 @@ (srfi srfi-9) (srfi srfi-42) (2d game) - (2d game-loop) (2d scene) (2d sprite) (2d texture) |