+import java.util.Properties;
+
import com.codingame.gameengine.runner.MultiplayerGameRunner;
public class Main {
public static void main(String[] args) {
+ Properties props = new Properties();
+ props.setProperty("seed", "3");
+ props.setProperty("ehtnicity", "ice");
MultiplayerGameRunner gameRunner = new MultiplayerGameRunner();
+ gameRunner.setGameParameters(props);
+
gameRunner.addAgent(Player1.class);
gameRunner.addAgent(PlayerRand.class);