{
	"$id": "schema:UIPicture",
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"title": "UIPicture",
	"alias": "image",
	"$ref": "schema:UIElement",
	"type": "object",
	"properties": {
		"image": {
			"description": "our image to render, automatically precached in our constructor",
			"type": "string",
			"precacheType": "image"
		},
		"image2": {
			"description": "helper image, gets precached but is not rendered by default, automatically precached in our constructor",
			"type": "string",
			"precacheType": "image"
		},
		"drawflag": {
			"description": "draw mode to use",
			"type": "number"
		},
		"angle": {
			"description": "angle to rotate pic by",
			"type": "number"
		}
	}
}
