Initial check-in

This commit is contained in:
Isaac Shoebottom
2022-06-16 19:21:05 -03:00
commit 55e0908c78
19 changed files with 759 additions and 0 deletions

16
src/Player.java Normal file
View File

@@ -0,0 +1,16 @@
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;
}
}