class Player{ private String name; private String occupation; int level = 0; Node location; String pose = "¯¸¦b"; Player(){} Player(String name){ this.name = name; } public String getName(){ return this.name; } public void setName(String name){ this.name = name; } public String getOccupation(){ return occupation; } public void setOccupation(String occ){ this.occupation = occ; } public Node getLocation(){ return location; } public void setLocation(Node location){ this.location = location; } public void setPose(String pose){ this.pose = pose; } public String getPose(){ return pose; } }