mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-21 21:30:20 +07:00
Dev: Save & Load screens put into separate package
This commit is contained in:
@ -233,7 +233,7 @@ class CityScreen(internal val city: CityInfo) : CameraStageBaseScreen() {
|
||||
statsTable.defaults().pad(2f)
|
||||
for (entry in stats.toHashMap().filterNot { it.value==0f }) {
|
||||
statsTable.add(ImageGetter.getStatIcon(entry.key.toString())).size(20f)
|
||||
statsTable.add(Label(Math.round(entry.value).toString() + "", CameraStageBaseScreen.skin))
|
||||
statsTable.add(Label(Math.round(entry.value).toString(), CameraStageBaseScreen.skin))
|
||||
statsTable.row()
|
||||
}
|
||||
tileTable.add(statsTable).row()
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.unciv.ui
|
||||
package com.unciv.ui.saves
|
||||
|
||||
import com.badlogic.gdx.utils.Base64Coder
|
||||
import java.io.BufferedReader
|
@ -1,4 +1,4 @@
|
||||
package com.unciv.ui
|
||||
package com.unciv.ui.saves
|
||||
|
||||
import com.badlogic.gdx.Gdx
|
||||
import com.badlogic.gdx.graphics.Color
|
@ -1,4 +1,4 @@
|
||||
package com.unciv.ui
|
||||
package com.unciv.ui.saves
|
||||
|
||||
import com.badlogic.gdx.Gdx
|
||||
import com.badlogic.gdx.scenes.scene2d.ui.Label
|
@ -3,6 +3,8 @@ package com.unciv.ui.worldscreen.optionstable
|
||||
import com.unciv.UnCivGame
|
||||
import com.unciv.ui.*
|
||||
import com.unciv.ui.pickerscreens.PolicyPickerScreen
|
||||
import com.unciv.ui.saves.LoadScreen
|
||||
import com.unciv.ui.saves.SaveScreen
|
||||
import com.unciv.ui.utils.center
|
||||
import com.unciv.ui.utils.tr
|
||||
|
||||
|
Reference in New Issue
Block a user