Develope game branch #33

Merged
schrom01 merged 23 commits from develope_Game_branch into main 2022-05-12 13:44:47 +02:00
1 changed files with 0 additions and 10 deletions
Showing only changes of commit 9a3a9f3b53 - Show all commits

View File

@ -12,8 +12,6 @@ public class Game implements Serializable {
public Game(Participant participant1, Participant participant2, int index1, int index2) {
this.participant1 = participant1;
this.participant2 = participant2;
this.index1 = index1;
this.index2 = index2;
}
public Place getLocation() {
@ -60,14 +58,6 @@ public class Game implements Serializable {
return place;
}
public int getIndex1() {
return index1;
}
public int getIndex2() {
return index2;
}
public Participant getWinner(){
if(points1 > points2){
return participant1;