aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/entity.rs
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-04-30 22:30:50 -0500
committermat <github@matdoes.dev>2022-04-30 22:30:50 -0500
commit0dc6decf7f3a4ea273e0eabccd74815c528ba6bd (patch)
tree8d6e0586afb208feb83f424504cc88bfbadd1c81 /azalea-client/src/entity.rs
parent3c3deb625db1b466b9cb3b123af73333b27b14cc (diff)
downloadazalea-drasl-0dc6decf7f3a4ea273e0eabccd74815c528ba6bd.tar.xz
put something useful in state
Diffstat (limited to 'azalea-client/src/entity.rs')
-rw-r--r--azalea-client/src/entity.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/azalea-client/src/entity.rs b/azalea-client/src/entity.rs
new file mode 100644
index 00000000..ed8aa68d
--- /dev/null
+++ b/azalea-client/src/entity.rs
@@ -0,0 +1,5 @@
+#[derive(Default)]
+pub struct Entity {
+ /// The incremental numerical id of the entity.
+ pub id: u32,
+}