mirror of
https://github.com/SimplexDevelopment/ArcanumOcculta.git
synced 2025-07-12 04:28:34 +00:00
15 lines
296 B
Java
15 lines
296 B
Java
package app.simplexdev.arcanumocculta.api.book;
|
|
|
|
import app.simplexdev.arcanumocculta.api.spell.Spell;
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
public interface SpellTome {
|
|
String getTomeName();
|
|
|
|
String getTomeDescription();
|
|
|
|
ItemStack getTomeItem();
|
|
|
|
Spell getContainedSpell();
|
|
}
|