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

10 lines
197 B
Java

package com.thebrokenrail.sorcerycraft.spell;
import java.util.Map;
public interface SpellPlayerEntity {
void setSpells(Map<String, Integer> spells);
Map<String, Integer> getSpells();
}