Initial commit

This commit is contained in:
2026-02-24 15:36:10 -03:00
commit fe885a9e24
42 changed files with 2383 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
export const SLOT_SIZE = 18 * 3;
export interface SpriteRegion {
x: number;
y: number;
}
export const ITEM_SPRITES: Record<string, SpriteRegion> = {
"bworld:pickaxe": { x: 7, y: 9 },
"bworld:bomb": { x: 9, y: 8 },
};