aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/player.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-client/src/player.rs')
-rw-r--r--azalea-client/src/player.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/azalea-client/src/player.rs b/azalea-client/src/player.rs
new file mode 100644
index 00000000..fc54ff93
--- /dev/null
+++ b/azalea-client/src/player.rs
@@ -0,0 +1,7 @@
+use crate::Entity;
+
+#[derive(Default)]
+pub struct Player {
+ /// The entity attached to the player. There's some useful fields here.
+ pub entity: Entity,
+}