Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.agmpenguin.mcphone.client;
- import net.agmpenguin.mcphone.client.screen.PhoneScreen;
- import net.minecraft.client.Minecraft;
- public class ClientHooks {
- public static void openScreen() {
- try {
- Minecraft.getInstance().setScreen(new PhoneScreen());
- } catch(Exception e) {
- return;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment