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/util/SpellPlayerEntity.java

12 lines
269 B
Java

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