ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/network/IDataHandler.java
Michael be421af8e2
Big Refactor of the package layout
Ignore this commit for diffs
2020-09-09 15:48:43 +01:00

11 lines
267 B
Java

package de.ellpeck.actuallyadditions.network;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraftforge.fml.common.network.simpleimpl.MessageContext;
public interface IDataHandler {
void handleData(NBTTagCompound compound, MessageContext context);
}