diff --git a/src/routine.rs b/src/routine.rs deleted file mode 100644 index c795a1f..0000000 --- a/src/routine.rs +++ /dev/null @@ -1,16 +0,0 @@ -pub struct Routine { - pub kind: RoutineKind, -} - -pub enum RoutineKind { - Test, - Move, - CreatePlayer, - CreateLobby, -} - -impl Routine { - pub fn new() -> Self { - todo!() - } -}