diff --git a/src/graphics.rs b/src/graphics.rs index f05c4a9..3adede8 100644 --- a/src/graphics.rs +++ b/src/graphics.rs @@ -5,10 +5,7 @@ use sfml::{ }; use sfml_xt::graphics::RenderWindowExt; use crate::math::FPS_TARGET; -pub(crate) struct ScreenRes { - pub(crate) w: u16, - pub(crate) h: u16, -} +pub(crate) struct ScreenRes {} #[derive(Default, Clone, Copy, Debug, Inspect, Serialize, Deserialize)] pub struct ScreenVec { pub(crate) x: ScreenSc, diff --git a/src/world/reg_chunk_existence.rs b/src/world/reg_chunk_existence.rs index 818af4f..b39ddea 100644 --- a/src/world/reg_chunk_existence.rs +++ b/src/world/reg_chunk_existence.rs @@ -1,3 +1,3 @@ use std::{fs::File, io::Read, path::Path}; #[derive(Clone, Copy)] -pub(crate) struct ExistenceBitset(pub u64); +pub(crate) struct ExistenceBitset();