Remove useless schedule (for now)
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 26m39s

This commit is contained in:
Florian RICHER 2025-04-13 20:05:17 +02:00
parent a04c769438
commit 8b0c59f7c0
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77

View file

@ -1,6 +1,6 @@
use std::error::Error; use std::error::Error;
use bevy_ecs::{schedule::Schedules, world::World}; use bevy_ecs::world::World;
pub enum AppExit { pub enum AppExit {
Success, Success,
@ -24,11 +24,8 @@ pub struct App {
impl Default for App { impl Default for App {
fn default() -> Self { fn default() -> Self {
let mut world = World::new();
world.init_resource::<Schedules>();
Self { Self {
world, world: World::new(),
runner: None, runner: None,
} }
} }