diff options
Diffstat (limited to '')
| -rw-r--r-- | pacman/controller/src/main/resources/testGameState.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pacman/controller/src/main/resources/testGameState.json b/pacman/controller/src/main/resources/testGameState.json new file mode 100644 index 0000000..48e333a --- /dev/null +++ b/pacman/controller/src/main/resources/testGameState.json @@ -0,0 +1,22 @@ +{ + "pacman": { + "x": 1, + "y": 1, + "speed": 3.0, + "radius": 1.0 + }, + + "itmes": [], + "board": [ + ["W","W","W","W","W","W","W","W","W"], + ["W","E","E","E","E","E","E","E","W"], + ["E","E","W","W","E","W","W","E","E"], + ["W","E","W","W","E","W","W","E","W"], + ["W","E","W","W","E","W","W","E","W"], + ["W","E","E","E","E","E","E","E","W"], + ["W","E","W","W","E","W","W","E","W"], + ["E","E","W","W","E","W","W","E","E"], + ["W","E","E","E","E","E","E","E","W"], + ["W","W","W","W","W","W","W","W","W"] + ] +} |