001package squidpony.squidgrid.mapping.styled;
002
003/**
004 * Part of the JSON that defines a tileset.
005 * Created by Tommy Ettinger on 3/10/2015.
006 */
007public class Config {
008
009        /* If this list of fields is modified, TilesetsGenerator should be modified too */
010
011    public boolean is_corner;
012    public int num_color_0, num_color_1, num_color_2, num_color_3, num_color_4 = 0, num_color_5 = 0;
013    public int num_x_variants, num_y_variants, short_side_length;
014
015    /**
016     * Probably not something you will construct manually. See DungeonGen .
017     */
018    public Config() {
019        is_corner = true;
020        num_color_0 = 1;
021        num_color_1 = 1;
022        num_color_2 = 1;
023        num_color_3 = 1;
024        num_x_variants = 1;
025        num_y_variants = 1;
026    }
027}