initial level selection gui

This commit is contained in:
Crispy 2024-10-06 12:39:36 +02:00
parent 66c9b10264
commit ed5084d0fd
11 changed files with 413 additions and 29 deletions

8
levels/00_zeroes.json Normal file
View file

@ -0,0 +1,8 @@
{
"id": "00_zeroes",
"name": "Zeroes",
"description": "learn how to output data",
"init_board": null,
"inputs": [],
"outputs": [0, 0, 0, 0, 0, 0, 0, 0]
}

8
levels/01_cat.json Normal file
View file

@ -0,0 +1,8 @@
{
"id": "01_cat",
"name": "Copy Cat",
"description": "learn how to meow",
"init_board": null,
"inputs": [72, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 103, 33],
"outputs": [72, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 103, 33]
}