DEADSOFTWARE

cf8112720b64d60158e755f58d32c088e9c7c03f
[cavedroid.git] / core / src / ru / deadsoftware / cavedroid / game / windows / GameWindowsConfigs.kt
1 package ru.deadsoftware.cavedroid.game.windows
3 object GameWindowsConfigs {
4 data object Creative {
5 const val scrollIndicatorMarginLeft = 156f
6 const val scrollIndicatorMarginTop = 18f
7 const val scrollIndicatorFullHeight = 72f
9 const val itemsGridMarginLeft = 8f
10 const val itemsGridMarginTop = 18f
12 const val itemsGridRowHeight = 18f
13 const val itemsGridColWidth = 18f
15 const val itemsInRow = 8
16 const val itemsInCol = 5
18 const val invItems = 9
20 const val playerInventoryOffsetFromBottom = 24f
22 val itemsOnPage get() = itemsInCol * itemsInRow
23 }
24 }