16 lines
398 B
Rust
16 lines
398 B
Rust
use eframe::*;
|
|
use eframe::egui;
|
|
|
|
fn main() -> eframe::Result{
|
|
let native_options = eframe::NativeOptions {
|
|
viewport: egui::ViewportBuilder::default()
|
|
.with_title("Shrimp"),
|
|
..Default::default()
|
|
};
|
|
eframe::run_native(
|
|
"PlateToolEframe",
|
|
native_options,
|
|
Box::new(|cc| Ok(Box::new(plate_tool_eframe::PlateToolEframe::new(cc))))
|
|
)
|
|
}
|