Bubble up the error to main instead of panicking

This commit is contained in:
Zykino
2024-12-22 21:09:55 +01:00
parent b9bffdc19c
commit dd706228e4
10 changed files with 1119 additions and 325 deletions

View File

@ -5,17 +5,17 @@ GameConfig( // optional struct name
mouse_sensitivity: 1.4,
key_bindings: {
"up": Up,
"down": Down,
"left": Left,
"right": Right,
"up": "Up",
"down": "Down",
"left": "Left",
"right": "Right",
// Uncomment to enable WASD controls
/*
"W": Up,
"A": Down,
"S": Left,
"D": Right,
"W": "Up",
"A": "Down",
"S": "Left",
"D": "Right",
*/
},

6
test-data/package.json Normal file
View File

@ -0,0 +1,6 @@
{
"systems": {
"name": "Apt",
"install": "toto"
}
}