@@ -0,0 +1,14 @@
+package me.lethunderhawk.entity;
+
+import java.util.UUID;
+public class Player {
+ public UUID uuid;
+ public float x;
+ public float y;
+ public Player(){
+ this.uuid = UUID.randomUUID();
+ }
+}