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
TheBrokenRail c1e935764d
All checks were successful
SorceryCraft/pipeline/head This commit looks good
1.0.8
Update to 20w10a
Add the /spell learn, /spell add, and /spell remove commands
Use CurseForge
2020-03-06 18:41:25 -05:00

12 lines
273 B
Java

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