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
TheBrokenRail 6052e00429
All checks were successful
SorceryCraft/pipeline/head This commit looks good
Initial Commit
2020-03-01 13:19:59 -05:00

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();
}