aboutsummaryrefslogtreecommitdiff
path: root/core/src/data/controller/runtime/structs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/data/controller/runtime/structs.rs')
-rw-r--r--core/src/data/controller/runtime/structs.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/data/controller/runtime/structs.rs b/core/src/data/controller/runtime/structs.rs
index 7be2cd6..bfd39c5 100644
--- a/core/src/data/controller/runtime/structs.rs
+++ b/core/src/data/controller/runtime/structs.rs
@@ -10,11 +10,12 @@ use crate::service::service_types::ServiceType;
#[derive(Default)]
pub struct ControllerRuntime {
+ pub(crate) service_type: ServiceType,
pub(crate) received: HashMap<(ServiceType, u8), VecDeque<GameMessage>>,
pub(crate) send: HashMap<(ServiceType, u8), VecDeque<ControlMessage>>,
pub(crate) player: Player,
pub game_info: GameInfo,
- pub close: AtomicBool
+ pub close: AtomicBool,
} \ No newline at end of file