Added texture_list json validation

This commit is contained in:
DaanV2
2021-01-27 19:46:16 +01:00
parent d0c41a949e
commit a5e6e6176e

View File

@@ -0,0 +1,12 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "Texture list",
"description": "A list of texture to load in",
"type": "array",
"items": {
"title": "Filepath",
"type": "string",
"pattern": "^textures/",
"examples": ["textures/blocks/"]
}
}