blob: 2f560c5f1500612f49f2ac9ac95ec17f14615cbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package gregtech.api.metatileentity;
public final class GregTechTileClientEvents {
public static final byte CHANGE_COMMON_DATA = 0;
public static final byte CHANGE_CUSTOM_DATA = 1;
public static final byte CHANGE_COLOR = 2;
public static final byte CHANGE_REDSTONE_OUTPUT = 3;
public static final byte DO_SOUND = 4;
public static final byte START_SOUND_LOOP = 5;
public static final byte STOP_SOUND_LOOP = 6;
public static final byte CHANGE_LIGHT = 7;
}
|