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 28fa7115c6
All checks were successful
SorceryCraft/pipeline/head This commit looks good
1.0.3
Tweak Loot Tables
Fix Dispenser Bugs
Fix Inward Bugs
2020-03-03 18:08:22 -05:00

12 lines
244 B
Java

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