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(); } }