refactor: continue working on ghost house implementation, other stuff

This commit is contained in:
2025-07-27 12:15:11 -05:00
parent 4f87a116d5
commit 413f9f156f
7 changed files with 334 additions and 163 deletions

View File

@@ -10,7 +10,6 @@ pub struct AnimatedTexture {
pub frames: Vec<AtlasTile>,
pub ticks_per_frame: u32,
pub ticker: u32,
pub reversed: bool,
pub paused: bool,
}
@@ -20,7 +19,6 @@ impl AnimatedTexture {
frames,
ticks_per_frame,
ticker: 0,
reversed: false,
paused: false,
}
}