Renamed ConstructionsTable -> CityConstructionsTable

This commit is contained in:
Yair Morgenstern 2021-05-28 14:39:09 +03:00
parent c90a79363d
commit f238cb3f3c
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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)