Removed report system from example schedule

This commit is contained in:
ickshonpe 2025-07-11 23:46:26 +01:00
parent b7ac3b270c
commit f93dea452f

View File

@ -16,8 +16,7 @@ fn main() {
app.add_plugins(DefaultPlugins)
.insert_resource(WinitSettings::desktop_app())
.add_systems(Startup, setup)
.add_systems(Update, update_scroll_position)
.add_systems(Update, report);
.add_systems(Update, update_scroll_position);
app.run();
}