minecraft-mod/remappedSrc/modchest/util/ServerPlayerEntityInterface...

11 lines
284 B
Java
Raw Normal View History

2024-07-07 16:17:55 +02:00
package modchest.util;
import net.minecraft.nbt.NbtCompound;
import net.minecraft.server.network.ServerPlayerEntity;
import org.spongepowered.asm.mixin.Unique;
public interface ServerPlayerEntityInterface {
NbtCompound getDataSaver();
void setDataSaver(NbtCompound data);
}