forked from MightyPirates/TIS-3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPI.java
27 lines (21 loc) · 845 Bytes
/
API.java
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
package li.cil.tis3d.api;
import net.minecraft.item.ItemGroup;
/**
* Glue / actual references for the TIS-3D API.
*/
public final class API {
/**
* The ID of the mod, i.e. the internal string it is identified by.
*/
public static final String MOD_ID = "tis3d";
// --------------------------------------------------------------------- //
public static ItemGroup itemGroup;
// Set in TIS-3D pre-init, prefer using static entry point classes instead.
public static li.cil.tis3d.api.detail.FontRendererAPI fontRendererAPI;
public static li.cil.tis3d.api.detail.InfraredAPI infraredAPI;
public static li.cil.tis3d.api.detail.ManualAPI manualAPI;
public static li.cil.tis3d.api.detail.ModuleAPI moduleAPI;
public static li.cil.tis3d.api.detail.SerialAPI serialAPI;
private API() {
}
}