aboutsummaryrefslogtreecommitdiff
path: root/core/src/data/controller/structs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/data/controller/structs.rs')
-rw-r--r--core/src/data/controller/structs.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/src/data/controller/structs.rs b/core/src/data/controller/structs.rs
new file mode 100644
index 0000000..c6fdd31
--- /dev/null
+++ b/core/src/data/controller/structs.rs
@@ -0,0 +1,10 @@
+use crate::data::player::structs::Player;
+
+/// Controller-side Data
+/// Describes the basic information of the controller side
+#[derive(Default)]
+pub struct ControllerData {
+
+ /// Player bound to the controller side
+ pub(crate) player: Player
+} \ No newline at end of file