summaryrefslogtreecommitdiffstats
path: root/src/renderer/editor/types.ts
blob: 4235bf4ebe1f7c4308589749bf0d9805bc22653a (plain)
1
2
3
4
5
6
7
8
9
10
11
export interface TilingMeta {
	name: string;
	desc?: string;
	width: number;
	height: number;
}

export interface Tiling {
	id: string;
	meta: TilingMeta;
}