Bubble up the error to main instead of panicking
This commit is contained in:
@ -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
6
test-data/package.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"systems": {
|
||||
"name": "Apt",
|
||||
"install": "toto"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user