Infusion crafting

This commit is contained in:
Aleksey 2020-11-09 16:45:21 +03:00
parent beab6ce10a
commit 16039bcb47
8 changed files with 48 additions and 19 deletions

View file

@ -3,6 +3,6 @@ package ru.betterend.interfaces;
import net.minecraft.nbt.CompoundTag;
public interface CompoundSerializer<T> {
public abstract CompoundTag toTag(CompoundTag tag);
public abstract T fromTag(CompoundTag tag);
public abstract CompoundTag beToTag(CompoundTag tag);
public abstract T beFromTag(CompoundTag tag);
}