implemented Method getWinner and getWinPoints

added Class City for later use.
This commit is contained in:
schrom01
2021-11-30 20:20:48 +01:00
parent 54b1d794f8
commit 3830cf6594
8 changed files with 64 additions and 10 deletions
+8
View File
@@ -0,0 +1,8 @@
package ch.zhaw.catan;
public class City extends Structure {
public City(Config.Faction faction) {
super(faction);
}
}