mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-28 21:58:54 +07:00
Added Marathon speed per user request
This commit is contained in:
@ -3,13 +3,15 @@ package com.unciv.models.metadata
|
||||
enum class GameSpeed{
|
||||
Quick,
|
||||
Standard,
|
||||
Epic;
|
||||
Epic,
|
||||
Marathon;
|
||||
|
||||
fun getModifier(): Float {
|
||||
when(this) {
|
||||
Quick -> return 0.67f
|
||||
Standard -> return 1f
|
||||
Epic -> return 1.5f
|
||||
Marathon -> return 1.5f
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user