egui/egui_demo_app/src/main.rs

10 lines
266 B
Rust
Raw Normal View History

2020-11-17 22:24:14 +00:00
#![forbid(unsafe_code)]
2020-12-18 21:19:56 +00:00
#![cfg_attr(not(debug_assertions), deny(warnings))] // Forbid warnings in release builds
#![warn(clippy::all)]
// When compiling natively:
fn main() {
let app = egui_demo_lib::DemoApp::default();
eframe::run_native(Box::new(app));
}