diff options
| author | Johannes Wache <jbwa@posteo.de> | 2020-11-27 10:39:40 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-11-29 20:08:59 (GMT) |
| commit | e450ccf9f0cc7a646bfac75d6e1b67d5ee7481f0 (patch) | |
| tree | 4d0bf8cfdb77c216bb59b5d110616bb793ce81e7 /wasp/boards | |
| parent | bdd3f91b77d1911a0a8728e90435b271c4218321 (diff) | |
apps: snake: Add a snake game application
Signed-off-by: Johannes Wache <jbwa@posteo.de>
[daniel@redfelineninja.org.uk: Removed some couple of unwanted merge artifacts]
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'wasp/boards')
| -rw-r--r-- | wasp/boards/manifest_240x240.py | 1 | ||||
| -rw-r--r-- | wasp/boards/simulator/main.py | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/wasp/boards/manifest_240x240.py b/wasp/boards/manifest_240x240.py index e2febbf..4341fc9 100644 --- a/wasp/boards/manifest_240x240.py +++ b/wasp/boards/manifest_240x240.py @@ -16,6 +16,7 @@ manifest = ( 'apps/steps.py', 'apps/stopwatch.py', 'apps/fibonacci_clock.py', + 'apps/snake.py', 'apps/testapp.py', 'fonts/__init__.py', 'fonts/clock.py', diff --git a/wasp/boards/simulator/main.py b/wasp/boards/simulator/main.py index fb7698b..d170247 100644 --- a/wasp/boards/simulator/main.py +++ b/wasp/boards/simulator/main.py @@ -12,6 +12,9 @@ wasp.system.register(FibonacciClockApp()) from apps.gameoflife import GameOfLifeApp wasp.system.register(GameOfLifeApp()) +from apps.snake import SnakeGameApp +wasp.system.register(SnakeGameApp()) + from apps.musicplayer import MusicPlayerApp wasp.system.register(MusicPlayerApp()) wasp.system.set_music_info({ |
