summaryrefslogtreecommitdiff
path: root/src/main/kotlin/gui/BaseScreen.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/gui/BaseScreen.kt')
-rw-r--r--src/main/kotlin/gui/BaseScreen.kt52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/main/kotlin/gui/BaseScreen.kt b/src/main/kotlin/gui/BaseScreen.kt
deleted file mode 100644
index 06aafb9..0000000
--- a/src/main/kotlin/gui/BaseScreen.kt
+++ /dev/null
@@ -1,52 +0,0 @@
-package moe.nea.ultranotifier.gui
-
-import net.minecraft.client.gui.DrawContext
-import net.minecraft.client.gui.screen.Screen
-import net.minecraft.text.Text
-//#if MC < 1.20.4
-//$$import com.mojang.blaze3d.platform.GlStateManager
-//#endif
-
-class DrawingContext(
-//#if MC > 1.20.4
- val vanilla: DrawContext,
-//#endif
-) {
- fun pushMatrix() {
-//#if MC > 1.20.4
- vanilla.matrices.push()
-//#else
-//$$ GlStateManager.pushMatrix()
-//#endif
- }
- fun popMatrix() {
-//#if MC > 1.20.4
- vanilla.matrices.pop()
-//#else
-//$$ GlStateManager.popMatrix()
-//#endif
- }
- fun translate(x: Double, y: Double, z: Double) {
-//#if MC > 1.20.4
- vanilla.matrices.translate(x, y, z)
-//#else
-//$$ GlStateManager.translate(x, y, z)
-//#endif
- }
- fun scale(x: Float, y: Float, z: Float) {
-//#if MC > 1.20.4
- vanilla.matrices.scale(x, y, z)
-//#else
-//$$ GlStateManager.scale(x, y, z)
-//#endif
- }
-
-}
-
-abstract class BaseScreen(title: Text) : Screen(
-//#if MC >= 11400
- title
-//#endif
-) {
-
-}