blob: babb85d118359dde75385d5d49933ea5123995af (
plain)
1
2
3
4
5
6
7
8
9
10
|
package gregtech.api.multitileentity.interfaces;
public interface IMultiTileMachine {
void setBooleans(int booleans);
int getBooleans();
void setSound(byte soundEvent, int soundEventValue);
}
|