moved some things around.

Signed-off-by: Sienna Meridian Satterwhite <sienna@r3t.io>
This commit is contained in:
2025-12-14 21:25:52 +00:00
parent 5493faa1f1
commit 70735a33a5
16 changed files with 861 additions and 298 deletions

View File

@@ -12,7 +12,6 @@ use std::path::PathBuf;
mod camera;
mod cube;
mod debug_ui;
mod executor;
mod engine_bridge;
mod rendering;
mod selection;
@@ -101,5 +100,5 @@ fn main() {
app.add_systems(Startup, initialize_offline_resources);
// Run with our executor (unbounded event loop)
executor::run(app).expect("Failed to run executor");
libmarathon::platform::desktop::run_executor(app).expect("Failed to run executor");
}