diff options
| author | mat <github@matdoes.dev> | 2022-04-30 22:30:50 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-04-30 22:30:50 -0500 |
| commit | 0dc6decf7f3a4ea273e0eabccd74815c528ba6bd (patch) | |
| tree | 8d6e0586afb208feb83f424504cc88bfbadd1c81 /azalea-client/src/player.rs | |
| parent | 3c3deb625db1b466b9cb3b123af73333b27b14cc (diff) | |
| download | azalea-drasl-0dc6decf7f3a4ea273e0eabccd74815c528ba6bd.tar.xz | |
put something useful in state
Diffstat (limited to 'azalea-client/src/player.rs')
| -rw-r--r-- | azalea-client/src/player.rs | 7 |
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, +} |
