ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/network/IDataHandler.java

11 lines
267 B
Java
Raw Normal View History

package de.ellpeck.actuallyadditions.network;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraftforge.fml.common.network.simpleimpl.MessageContext;
2019-05-02 09:10:29 +02:00
public interface IDataHandler {
void handleData(NBTTagCompound compound, MessageContext context);
}