From ba267b7a50b395ef8755a70eedf8be98e6cf8510 Mon Sep 17 00:00:00 2001 From: UTAKERDEV Date: Thu, 8 May 2025 18:09:49 +0000 Subject: [PATCH] Upload files to "/" --- main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 main.rs diff --git a/main.rs b/main.rs new file mode 100644 index 0000000..def3633 --- /dev/null +++ b/main.rs @@ -0,0 +1,17 @@ +// Import custom rust file as crate +mod ui; +mod core; +use ui::gui::ZZZRRLauncher; + +// Import eframe crate to make the UI +use eframe::NativeOptions; + +// Init the Eframe UI and Launch the launcher +fn main() -> eframe::Result<()> { + let options = NativeOptions::default(); + eframe::run_native( + "ZZZ-RR-Launcher Beta", + options, + Box::new(|_cc| Ok(Box::new(ZZZRRLauncher::default()))), + ) +} \ No newline at end of file