Files
realm-chat/client/src/main.rs
Joshua Higgins add6dfa468 further stripping
idk if this is still worth it, if the docs are really this bad
2024-06-20 22:03:56 -04:00

11 lines
361 B
Rust

use realm_client::RealmApp;
pub fn main() -> iced::Result {
tracing_subscriber::fmt::init();
iced::program(RealmApp::title, RealmApp::update, RealmApp::view)
.load(RealmApp::load)
.subscription(RealmApp::subscription)
.font(include_bytes!("../assets/icons.ttf").as_slice())
.window_size((1280.0, 720.0))
.run()
}