package net.torvald.terrarum; /** * You directly modify the source code to tune the engine to suit your needs. * * Created by minjaesong on 2019-08-15. */ public class TerrarumAppConfiguration { ////////////////////////////////////// // CONFIGURATION FOR THE APP ITSELF // ////////////////////////////////////// public static final String GAME_NAME = "Terrarum"; public static final String COPYRIGHT_DATE_NAME = "Copyright 2013-2019 Torvald (minjaesong)"; /** *

* Version numbering that follows Semantic Versioning 2.0.0 (https://semver.org/) *

* *

* 0xAA_BB_XXXX, where: *

*
  • AA: Major version
  • *
  • BB: Minor version
  • *
  • XXXX: Patch version
  • *

    * e.g. 0x02010034 will be translated as 2.1.52 *

    */ public static final int VERSION_RAW = 0x00_02_0590; ////////////////////////////////// // CONFIGURATION FOR TILE MAKER // ////////////////////////////////// public static final int MAX_TEX_SIZE = 4096; public static final int TILE_SIZE = 16; }