16 lines
367 B
Rust
16 lines
367 B
Rust
use egui::Vec2;
|
|
use katabastird::timer::Timer;
|
|
|
|
fn main() {
|
|
let options = eframe::NativeOptions {
|
|
renderer: eframe::Renderer::Wgpu,
|
|
initial_window_size: Some(Vec2::new(1400.0, 800.0)),
|
|
..Default::default()
|
|
};
|
|
|
|
eframe::run_native(
|
|
"katabastird",
|
|
options,
|
|
Box::new(|_cc| Box::new(Timer::default())),
|
|
);
|
|
}
|