From 5f137b41ebeadfca3907221713f85f2c9fe431bf Mon Sep 17 00:00:00 2001 From: Kai Stevenson Date: Sun, 23 Aug 2026 11:25:20 -0700 Subject: entityID newtype --- src/sim/cell.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/sim/cell.rs') diff --git a/src/sim/cell.rs b/src/sim/cell.rs index 5a9fc1f..ca0b969 100644 --- a/src/sim/cell.rs +++ b/src/sim/cell.rs @@ -4,6 +4,7 @@ use crate::{config::SETTLED_THRESOHLD, content::materials::MaterialId}; pub struct Cell { pub material: MaterialId, pub flags: u8, + // TODO move this to a per-chunk hashmap pub data: u16, } -- cgit v1.3.1