aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/mc/Rectangle.kt
blob: 6495c296e0eb6be757278255c3e1f574194e6a2f (plain)
1
2
3
4
5
6
7
8
9
10
11
package moe.nea.firmament.util.mc

import me.shedaniel.math.Rectangle
import net.minecraft.client.gui.navigation.ScreenAxis
import net.minecraft.client.gui.navigation.ScreenRectangle

fun Rectangle.asScreenRectangle() =
	ScreenRectangle.of(
		ScreenAxis.HORIZONTAL,
		x, y, width, height
	)