less than half finished block states

This commit is contained in:
2026-03-30 15:43:26 -03:00
parent 3eec92d18e
commit 436adf9647
6 changed files with 93 additions and 12 deletions
+6
View File
@@ -12,3 +12,9 @@ export interface SpriteRegion {
export const faces = ["west", "east", "bottom", "top", "north", "south"] as const;
export type Faces = typeof faces[number];
export const AIR = 0;
export const VOID = 0xFFFFFFFF;
export const ID_MASK = 0xFFFF;
export const STATE_SHIFT = 16;