This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
SorceryCraft/src/main/java/com/thebrokenrail/sorcerycraft/spell/SpellPlayerEntity.java

12 lines
268 B
Java

package com.thebrokenrail.sorcerycraft.spell;
import net.minecraft.util.Identifier;
import java.util.Map;
public interface SpellPlayerEntity {
void setSorceryCraftSpells(Map<Identifier, Integer> spells);
Map<Identifier, Integer> getSorceryCraftSpells();
}