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

12 lines
269 B
Java
Raw Normal View History

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