2012-11-05 20:29:04 +01:00
|
|
|
package mekanism.api;
|
2012-11-05 16:46:50 +01:00
|
|
|
|
2012-11-05 16:52:56 +01:00
|
|
|
/**
|
|
|
|
* Implement this if you want your GUI to be accessible by the Control Panel.
|
|
|
|
* @author AidanBrady
|
|
|
|
*
|
|
|
|
*/
|
2012-11-05 16:46:50 +01:00
|
|
|
public interface IAccessibleGui
|
|
|
|
{
|
2012-11-05 16:52:56 +01:00
|
|
|
/**
|
|
|
|
* The block's GUI's specific access ID.
|
|
|
|
* @return gui id
|
|
|
|
*/
|
2012-11-05 16:46:50 +01:00
|
|
|
public int getGuiID();
|
|
|
|
|
2012-11-05 16:52:56 +01:00
|
|
|
/**
|
|
|
|
* The mod's instance object
|
|
|
|
* @return mod instance
|
|
|
|
*/
|
2012-11-21 16:14:35 +01:00
|
|
|
public String getInstanceName();
|
|
|
|
|
|
|
|
public String getClassPath();
|
2012-11-05 16:46:50 +01:00
|
|
|
}
|