blob: 79eba4c968564375643974678a90ebd9b38d4fae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package gregtech.common.misc.spaceprojects.interfaces;
import com.gtnewhorizons.modularui.api.drawable.UITexture;
import gregtech.common.misc.spaceprojects.enums.SpaceBodyType;
import gregtech.common.misc.spaceprojects.enums.StarType;
/**
* @author BlueWeabo
*/
public interface ISpaceBody {
/**
* @return The star type of the space body, if its a star
*/
StarType getStarType();
/**
* @return The type of space body it is
*/
SpaceBodyType getType();
/**
* @return The internal name of the space body
*/
String getName();
/**
* @return The texture of the space body used for UI
*/
UITexture getTexture();
/**
* @return The Unlocalized name for this body
*/
String getUnlocalizedName();
}
|