🚀 initial commit

This commit is contained in:
lunarydess
2025-02-15 15:03:20 +01:00
commit 86fc14c37c
5 changed files with 178 additions and 0 deletions

19
src/main.rs Normal file
View File

@@ -0,0 +1,19 @@
use eframe::Renderer;
use Application_Catnip::TemplateApp;
fn main() {
env_logger::init();
eframe::run_native(
"Meow",
eframe::NativeOptions {
centered: true,
renderer: Renderer::Glow,
viewport: egui::ViewportBuilder::default()
.with_inner_size([400.0, 300.0])
.with_min_inner_size([300.0, 220.0]),
..Default::default()
},
Box::new(|context| Ok(Box::new(TemplateApp::new(context)))),
)
.expect("TODO: panic message");
}