merge dev into test #30

Merged
j23f0712 merged 45 commits from development into dev/test 2024-12-02 01:29:40 +01:00
30 changed files with 357 additions and 113 deletions
Showing only changes of commit 79f0e55c52 - Show all commits

View File

@@ -2,6 +2,7 @@
import com.jme3.network.serializing.Serializable;
import java.util.HashMap;
import java.util.Map;
/**
@@ -9,7 +10,7 @@
*/
@Serializable
public class Board {
private Map<Color, PlayerData> playerData;
private Map<Color, PlayerData> playerData = new HashMap<>();
private final Node[] infield;
/**