Gamelib/src/main/java/uulm/teamname/marvelous/gamelibrary/json/config/ScenarioConfig.java

15 lines
431 B
Java

package uulm.teamname.marvelous.gamelibrary.json.config;
import uulm.teamname.marvelous.gamelibrary.json.config.FieldType;
/**
* POJO describing the ScenarioConfig as defined by the standard document
*/
public class ScenarioConfig {
/** An array containing the map based on the {@link FieldType} enum. So, ROCK and GRASS basically. */
public FieldType[][] scenario;
public String author;
public String name;
}