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
|
2020-07-23 10:01:48 +00:00
|
|
|
#![warn(clippy::all)]
|
|
|
|
|
2020-12-19 20:30:51 +00:00
|
|
|
// When compiling natively:
|
2020-07-23 10:01:48 +00:00
|
|
|
fn main() {
|
2020-12-29 12:40:11 +00:00
|
|
|
let app = egui_demo_lib::DemoApp::default();
|
2020-12-29 14:57:13 +00:00
|
|
|
eframe::run_native(Box::new(app));
|
2020-07-23 10:01:48 +00:00
|
|
|
}
|