RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
Spell.java
1package com.osroyale.content.skill.impl.magic.spell;
2
3import com.osroyale.game.world.entity.mob.player.Player;
4import com.osroyale.game.world.items.Item;
5
11public interface Spell {
12
14 String getName();
15
17 Item[] getRunes();
18
20 int getLevel();
21
23 void execute(Player player, Item item);
24
25}
void execute(Player player, Item item)