Update
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 26m34s

This commit is contained in:
Florian RICHER 2025-04-13 18:06:18 +02:00
parent df99ef3a3f
commit 4f6216635f
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
17 changed files with 110 additions and 100 deletions

View file

@ -1,21 +0,0 @@
use bevy_ecs::world::World;
pub struct Scene {
world: World,
}
impl Scene {
pub fn new() -> Self {
Self {
world: World::new(),
}
}
pub fn world(&self) -> &World {
&self.world
}
pub fn world_mut(&mut self) -> &mut World {
&mut self.world
}
}