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
Raw Normal View History

2020-03-01 18:19:59 +00:00
package com.thebrokenrail.sorcerycraft.spell;
import java.util.Map;
public interface SpellPlayerEntity {
void setSpells(Map<String, Integer> spells);
Map<String, Integer> getSpells();
}