From c94749cc88080ef7fef7b285f9072ea26d18e1eb Mon Sep 17 00:00:00 2001 From: Kai Stevenson Date: Sat, 15 Aug 2026 14:17:28 -0700 Subject: wip, working with native resolution --- src/sim/chunk.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/sim/chunk.rs') diff --git a/src/sim/chunk.rs b/src/sim/chunk.rs index cf4179a..1980932 100644 --- a/src/sim/chunk.rs +++ b/src/sim/chunk.rs @@ -6,6 +6,7 @@ use crate::{ pub struct Chunk { pub cells: Box<[Cell; CELLS_IN_CHUNK as usize]>, pub sleeping: bool, + pub needs_texture_update: bool, } impl Chunk { @@ -22,6 +23,7 @@ impl Chunk { Chunk { cells: Box::new([Cell::void(); CELLS_IN_CHUNK]), sleeping: true, + needs_texture_update: true, } } } -- cgit v1.3.1