layout for client routines

This commit is contained in:
clizia 2025-02-20 15:52:34 +01:00
parent b53c5aeea9
commit 45f9b5b137
2 changed files with 17 additions and 0 deletions

View file

@ -7,3 +7,4 @@ pub mod player;
pub mod message;
pub mod message_read;
pub mod constant;
pub mod routine;

16
src/routine.rs Normal file
View file

@ -0,0 +1,16 @@
pub struct Routine {
pub kind: RoutineKind,
}
pub enum RoutineKind {
Test,
Move,
CreatePlayer,
CreateLobby,
}
impl Routine {
pub fn new() -> Self {
todo!()
}
}