aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/gui/WSpacer.kt
blob: 42d08fe1d1210211d97fe414edf663ebc91c1fff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package moe.nea.firmament.gui

import io.github.cottonmc.cotton.gui.widget.WPanel
import io.github.cottonmc.cotton.gui.widget.WWidget

class WSpacer(val child: WWidget, val spaceLeft: Int) : WPanel() {
    init {
        children.add(child)
        child.setLocation(spaceLeft, 0)
    }

    override fun getWidth(): Int {
        return child.width + spaceLeft
    }

    override fun getHeight(): Int {
        return child.height
    }
}