Files
Boundard/examples/square/config.ceg
T
2026-08-17 10:26:27 +08:00

24 lines
634 B
Plaintext

{
"window": {
"width": 800,
"height": 600,
"title": "Boundard - Square Example"
},
"input": [
{ "action": "quit", "keys": ["Escape"] },
{ "action": "switch_scene", "keys": ["Tab"] },
{ "action": "move_left", "keys": ["Left"] },
{ "action": "move_right", "keys": ["Right"] },
{ "action": "move_up", "keys": ["Up"] },
{ "action": "move_down", "keys": ["Down"] }
],
"start_scene": "square",
"scenes": [
{ "name": "square", "path": "scenes/square.json" },
{ "name": "square_alt", "path": "scenes/square_alt.json" }
]
}