mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-07 12:21:52 +09:00
60 lines
2.0 KiB
Kotlin
60 lines
2.0 KiB
Kotlin
package net.torvald.terrarum
|
|
|
|
import net.torvald.terrarum.langpack.Lang
|
|
|
|
/**
|
|
* You directly modify the source code to tune the engine to suit your needs.
|
|
*
|
|
* Created by minjaesong on 2019-08-15.
|
|
*/
|
|
object TerrarumAppConfiguration {
|
|
//////////////////////////////////////
|
|
// CONFIGURATION FOR THE APP ITSELF //
|
|
//////////////////////////////////////
|
|
const val GAME_NAME = "Terrarum"
|
|
const val COPYRIGHT_DATE_NAME = "Copyright 2013-2022 CuriousToꝛvald (minjaesong)"
|
|
val COPYRIGHT_LICENSE: String; get() = Lang["COPYRIGHT_GNU_GPL_3"]
|
|
const val COPYRIGHT_LICENSE_ENGLISH = "Distributed under GNU GPL 3"
|
|
const val COPYRIGHT_LICENSE_TERMS_SHORT = """
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
"""
|
|
|
|
/**
|
|
*
|
|
*
|
|
* 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
|
|
*
|
|
*/
|
|
const val VERSION_RAW = 0x000206D3
|
|
|
|
//////////////////////////////////////////////////////////
|
|
// CONFIGURATION FOR TILE MAKER //
|
|
// MAKE SURE THESE VALUES ARE UNIQUE IN THE SOURCE CODE //
|
|
//////////////////////////////////////////////////////////
|
|
const val TILE_SIZE = 16
|
|
const val TILE_SIZEF = TILE_SIZE.toFloat()
|
|
const val TILE_SIZED = TILE_SIZE.toDouble()
|
|
} |