blob: d8e80170604eb388163423252583af14789e651b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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;
}
|