accounts are now real

This commit is contained in:
2025-12-03 22:51:57 -05:00
parent 4aa22de61b
commit 24bb65bf7b
15 changed files with 679 additions and 163 deletions
+2 -8
View File
@@ -1,16 +1,14 @@
use crate::{
Client,
net::{ConnectInfo, NetSender, connect},
ui::login::login_screen,
net::{ConnectInfo, connect},
};
use iris::prelude::*;
use len_fns::*;
use openworm::net::{ClientMsg, NetMsg};
use winit::dpi::{LogicalPosition, LogicalSize};
mod login;
mod main;
mod misc;
pub use login::*;
pub use main::*;
pub use misc::*;
@@ -27,7 +25,3 @@ impl DefaultEvent for Submit {
impl DefaultEvent for Edited {
type Data = ();
}
pub fn init(client: &mut Client) {
login_screen(client).set_root(&mut client.ui);
}