mirror of
https://github.com/yairm210/Unciv.git
synced 2025-02-01 02:14:51 +07:00
Renamed ConstructionsTable -> CityConstructionsTable
This commit is contained in:
parent
c90a79363d
commit
f238cb3f3c
@ -21,7 +21,7 @@ import kotlin.concurrent.thread
|
||||
import kotlin.math.min
|
||||
import com.unciv.ui.utils.AutoScrollPane as ScrollPane
|
||||
|
||||
class ConstructionsTable(val cityScreen: CityScreen) : Table(CameraStageBaseScreen.skin) {
|
||||
class CityConstructionsTable(val cityScreen: CityScreen) : Table(CameraStageBaseScreen.skin) {
|
||||
/* -1 = Nothing, >= 0 queue entry (0 = current construction) */
|
||||
private var selectedQueueEntry = -1 // None
|
||||
|
@ -27,7 +27,7 @@ class CityScreen(internal val city: CityInfo): CameraStageBaseScreen() {
|
||||
// Clockwise from the top-left
|
||||
|
||||
/** Displays current production, production queue and available productions list - sits on LEFT */
|
||||
private var constructionsTable = ConstructionsTable(this)
|
||||
private var constructionsTable = CityConstructionsTable(this)
|
||||
|
||||
/** Displays stats, buildings, specialists and stats drilldown - sits on TOP LEFT, can be toggled to */
|
||||
private var cityInfoTable = CityInfoTable(this)
|
||||
|
Loading…
Reference in New Issue
Block a user