blob: c3c22415cbd7749fc6258056602c9ae6ee7dc064 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package gregtech.api.metatileentity;
public 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;
}
|