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 Maximums {
008    public int h, v;
009
010    /**
011     * Probably not something you will construct manually. See DungeonBoneGen .
012     */
013    public Maximums() {
014        h = 64;
015        v = 64;
016    }
017}