start of settings, slightly broken

This commit is contained in:
kawaiizenbo 2022-12-07 22:10:48 -07:00
parent 411790540a
commit 0ebc2f3512
10 changed files with 206 additions and 8 deletions

View file

@ -1,6 +1,7 @@
package me.kawaiizenbo.moonlight.ui.altmanager;
import net.minecraft.client.gui.screen.Screen;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.text.Text;
public class AltManagerScreen extends Screen
@ -11,5 +12,11 @@ public class AltManagerScreen extends Screen
{
super(Text.literal("Alt Manager"));
}
@Override
public void render(MatrixStack matrices, int mouseX, int mouseY, float delta)
{
renderBackgroundTexture(0);
}
}