WIP: infusion

This commit is contained in:
Aleksey 2020-11-08 00:13:03 +03:00
parent e96d06337e
commit 437e8d9cdc
6 changed files with 306 additions and 23 deletions

View file

@ -0,0 +1,8 @@
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);
}