From def9764b0d2ed98208a8e1df2129a911ed5ec49e Mon Sep 17 00:00:00 2001 From: Aidan Brady Date: Sun, 27 Oct 2013 00:10:17 -0400 Subject: [PATCH] Remove IAccessibleGui --- common/mekanism/api/IAccessibleGui.java | 27 ------------------------- 1 file changed, 27 deletions(-) delete mode 100644 common/mekanism/api/IAccessibleGui.java diff --git a/common/mekanism/api/IAccessibleGui.java b/common/mekanism/api/IAccessibleGui.java deleted file mode 100644 index c604428a5..000000000 --- a/common/mekanism/api/IAccessibleGui.java +++ /dev/null @@ -1,27 +0,0 @@ -package mekanism.api; - -/** - * Implement this if you want your GUI to be accessible by the Control Panel. - * @author AidanBrady - * - */ -public interface IAccessibleGui -{ - /** - * The block's GUI's specific access ID. - * @return gui id - */ - public int getGuiID(); - - /** - * The mod's instance object - * @return what the @Instance field is named in your mod. - */ - public String getInstanceName(); - - /** - * Gets the mod's main class path as a string. For Mekanism I would return "mekanism.common.Mekanism" - * @return - */ - public String getClassPath(); -}