From acc6f26df57fc9b17cbbfa2d963e45d18b518ea9 Mon Sep 17 00:00:00 2001 From: rasul Date: Mon, 6 Apr 2020 13:49:36 -0500 Subject: [PATCH] add a quit state for quitting the mud --- src/state.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/state.rs b/src/state.rs index a689de3..d6036d3 100644 --- a/src/state.rs +++ b/src/state.rs @@ -8,6 +8,9 @@ pub enum State { /// Performing an action Action, + + /// Quitting the game + Quit, } /// Login state