blob: 21bb52048277283d98172c2cdc1a9ee468edc13b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package gregtech.api.interfaces;
/**
* To get simple things like a ToolTip Description
*/
public interface IDescribable {
/**
* The Tooltip Text
*/
String[] getDescription();
}
|