Files
bworld/common/constants.ts
T
2026-03-07 13:01:52 -03:00

10 lines
154 B
TypeScript

export const TEXTURE_SIZE = 16;
export const TILE_SIZE = 48;
export const SLOT_SIZE = 18 * 3;
export interface SpriteRegion {
x: number;
y: number;
}