merge edited model into test #18

Merged
j23f0712 merged 11 commits from development into dev/test 2024-11-26 23:32:03 +01:00
3 changed files with 21 additions and 1 deletions
Showing only changes of commit 20c9000d56 - Show all commits

View File

@@ -6,4 +6,14 @@ public class Ceremony extends ClientState {
public Ceremony(ClientState parent, ClientGameLogic logic) {
super(parent, logic);
}
@Override
public void enter() {
}
@Override
public void exit() {
}
}

View File

@@ -5,4 +5,14 @@ public class Settings extends ClientState {
public Settings(ClientState parent, ClientGameLogic logic) {
super(parent, logic);
}
@Override
public void enter() {
}
@Override
public void exit() {
}
}

View File

@@ -34,7 +34,7 @@ public UpdateTSK(int id, Color color) {
* Default constructor for serialization purposes.
*/
private UpdateTSK() {
this("", null);
this(0, null);
}
/**