From 69f0407637a071d79d73115e4ae9c0ab526066a7 Mon Sep 17 00:00:00 2001 From: Kai Stevenson Date: Thu, 13 Aug 2026 21:31:53 -0700 Subject: parallelization --- 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 154cf82..cf4179a 100644 --- a/src/sim/chunk.rs +++ b/src/sim/chunk.rs @@ -5,6 +5,7 @@ use crate::{ pub struct Chunk { pub cells: Box<[Cell; CELLS_IN_CHUNK as usize]>, + pub sleeping: bool, } impl Chunk { @@ -20,6 +21,7 @@ impl Chunk { pub fn void() -> Self { Chunk { cells: Box::new([Cell::void(); CELLS_IN_CHUNK]), + sleeping: true, } } } -- cgit v1.3.1