This commit is contained in:
2025-11-22 02:52:36 +01:00
parent 5cc4eb8731
commit 097df1f5de
8 changed files with 726 additions and 198 deletions

View File

@@ -16,3 +16,11 @@ export interface SpriteFile {
width: number;
height: number;
}
export interface Layer {
id: string;
name: string;
sprites: Sprite[];
visible: boolean;
locked: boolean;
}