From a85cde380c6aa6447f8abfb105d2cc55cf7dc149 Mon Sep 17 00:00:00 2001 From: syeyoung Date: Fri, 8 Jan 2021 10:58:13 +0900 Subject: colours! --- .../dungeonsguide/commands/CommandReparty.java | 52 ++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 src/main/java/kr/syeyoung/dungeonsguide/commands/CommandReparty.java (limited to 'src/main/java/kr/syeyoung/dungeonsguide/commands/CommandReparty.java') diff --git a/src/main/java/kr/syeyoung/dungeonsguide/commands/CommandReparty.java b/src/main/java/kr/syeyoung/dungeonsguide/commands/CommandReparty.java new file mode 100644 index 00000000..92d5546a --- /dev/null +++ b/src/main/java/kr/syeyoung/dungeonsguide/commands/CommandReparty.java @@ -0,0 +1,52 @@ +package kr.syeyoung.dungeonsguide.commands; + +import kr.syeyoung.dungeonsguide.config.guiconfig.GuiConfig; +import kr.syeyoung.dungeonsguide.dungeon.roomfinder.DungeonRoomInfoRegistry; +import kr.syeyoung.dungeonsguide.e; +import net.minecraft.client.Minecraft; +import net.minecraft.command.CommandBase; +import net.minecraft.command.ICommandSender; +import net.minecraft.util.ChatComponentText; +import net.minecraftforge.client.event.ClientChatReceivedEvent; +import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; +import net.minecraftforge.fml.common.gameevent.TickEvent; + +import javax.crypto.BadPaddingException; +import javax.crypto.IllegalBlockSizeException; +import javax.crypto.NoSuchPaddingException; +import java.io.IOException; +import java.security.InvalidAlgorithmParameterException; +import java.security.InvalidKeyException; +import java.security.NoSuchAlgorithmException; + +public class CommandReparty extends CommandBase { + @Override + public String getCommandName() { + return "reparty"; + } + + @Override + public String getCommandUsage(ICommandSender sender) { + return "reparty"; + } + + @Override + public void processCommand(ICommandSender sender, String[] args) { + + } + + @SubscribeEvent + public void onChat(ClientChatReceivedEvent e) { + + } + + @SubscribeEvent + public void onTick(TickEvent.ClientTickEvent e) { + + } + + @Override + public int getRequiredPermissionLevel() { + return 0; + } +} -- cgit