Perhaps done basic ship warfare?

This commit is contained in:
KahootChampion
2019-02-20 07:47:04 -07:00
parent 8f324ac967
commit 73f757890a
4 changed files with 90 additions and 58 deletions

View File

@@ -11,6 +11,7 @@ public class Player {
private int guns = 3;
private int HP = 100;
public String getName() {
return name;
}
@@ -113,4 +114,11 @@ public class Player {
System.out.flush();
System.out.println("Game over");
}
public static void main(String[] args) throws Exception{
ShipWarfare littyboi = new ShipWarfare();
TaipanShop littyShop = new TaipanShop();
littyShop.shop();
}
}