i guess something like that might work eventually

This commit is contained in:
LunarAkai 2025-08-05 02:06:54 +02:00
commit c44d29ded7
8 changed files with 138 additions and 12 deletions

View file

@ -0,0 +1,15 @@
#[derive(Debug)]
pub struct RenderSystem;
impl Default for RenderSystem {
fn default() -> Self {
Self {
}
}
}
impl RenderSystem {
pub(crate) fn update(&self) {
}
}