Files
Firebird_2D/Firebird2D/Configuration/ConfigurationSchema/ConfigSchema.json
T
2025-02-23 14:29:32 +01:00

22 lines
527 B
JSON

{
"type": "object",
"properties": {
"AppSettings": {
"type": "object",
"properties": {
"ScreenResolution": {
"type": "object",
"properties": {
"x": { "type": "integer" },
"y": { "type": "integer" }
},
"required": [ "x", "y" ]
},
"Fullscreen": { "type": "boolean" },
"Log" : {"type": "boolean"}
},
"Required": [ "ScreenResolution", "Fullscreen", "Log" ]
}
},
"Required" : ["AppSettings"]
}