Java-TextBasedGame/src/Player.java
2022-06-16 19:21:05 -03:00

17 lines
427 B
Java

import java.io.Serializable;
public class Player extends Person implements Serializable {
boolean isPlayer = true;
Location current;
Player(String name, int age, boolean isMale, boolean isFemale, Location current) {
super();
this.name = name;
this.age = age;
this.isMale = isMale;
this.isFemale = isFemale;
this.heath = 100;
this.current = current;
}
}