mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
24 lines
470 B
Java
24 lines
470 B
Java
package com.hbm.tileentity.machine;
|
|
|
|
import com.hbm.packet.PacketDispatcher;
|
|
import com.hbm.packet.TEAssemblerPacket;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
public class TileEntityRadiobox extends TileEntity {
|
|
|
|
public double freq;
|
|
public int type;
|
|
public String message;
|
|
public int music;
|
|
|
|
@Override
|
|
public void updateEntity() {
|
|
|
|
if(!worldObj.isRemote) {
|
|
//PacketDispatcher.wrapper.sendToAll(new TEAssemblerPacket(xCoord, yCoord, zCoord));
|
|
}
|
|
}
|
|
|
|
}
|