com.codingame.gameengine.runner.dto.ConfigResponseDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runner Show documentation
Show all versions of runner Show documentation
Runner / Testbed to locally run Games created using the CodinGame engine toolkit.
package com.codingame.gameengine.runner.dto;
/**
* A data transfer object for level configuration data.
*
* Used internally.
*
*/
@SuppressWarnings("javadoc")
public class ConfigResponseDto {
public int minPlayers;
public int maxPlayers;
public String type;
public String criteria;
public String sortingOrder;
public String criteriaEn;
public String criteriaFr;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy