forked from MightyPirates/TIS-3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
API.java
32 lines (25 loc) · 970 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
28
29
30
31
32
package li.cil.tis3d.api;
import li.cil.tis3d.common.api.CreativeTab;
/**
* 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";
/**
* The current version of the mod.
*/
public static final String MOD_VERSION = "@VERSION@";
// --------------------------------------------------------------------- //
public static CreativeTab creativeTab;
// 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() {
}
}