aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/GetRectangle.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/util/GetRectangle.kt')
-rw-r--r--src/main/kotlin/util/GetRectangle.kt17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/kotlin/util/GetRectangle.kt b/src/main/kotlin/util/GetRectangle.kt
new file mode 100644
index 0000000..ec64f31
--- /dev/null
+++ b/src/main/kotlin/util/GetRectangle.kt
@@ -0,0 +1,17 @@
+
+
+package moe.nea.firmament.util
+
+import me.shedaniel.math.Rectangle
+import moe.nea.firmament.mixins.accessor.AccessorHandledScreen
+import net.minecraft.client.gui.screen.ingame.HandledScreen
+
+fun HandledScreen<*>.getRectangle(): Rectangle {
+ this as AccessorHandledScreen
+ return Rectangle(
+ getX_Firmament(),
+ getY_Firmament(),
+ getBackgroundWidth_Firmament(),
+ getBackgroundHeight_Firmament()
+ )
+}