blob: 565152bd593a45f134e83da9467750d7f4abe0d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package moe.nea.firmament.features.items.recipes
import me.shedaniel.math.Dimension
import me.shedaniel.math.Point
import net.minecraft.client.gui.GuiGraphics
class FireWidget(override var position: Point, val animationTicks: Int) : RecipeWidget() {
override val size: Dimension
get() = Dimension(10, 10)
override fun render(
guiGraphics: GuiGraphics,
mouseX: Int,
mouseY: Int,
partialTick: Float
) {
TODO("Not yet implemented")
}
}
|