RuneHive-Game
Loading...
Searching...
No Matches
ActionEffect.java
Go to the documentation of this file.
1
package
com.runehive.content.staff;
2
3
import
com.runehive.game.world.entity.mob.player.Player;
4
5
/**
6
* The action execute of the staff panel.
7
*
8
* @author Daniel
9
*
10
*/
11
public
interface
ActionEffect
{
12
13
/**
14
* Handles the execute of the staff panel action.
15
*
16
* @param player
17
* The player causing the action.
18
* The other player enduring the action execute.
19
*/
20
void
handle
(
final
Player
player);
21
}
com.runehive.game.world.entity.mob.player.Player
This class represents a character controlled by a player.
Definition
Player.java:125
com.runehive.content.staff.ActionEffect
The action execute of the staff panel.
Definition
ActionEffect.java:11
com.runehive.content.staff.ActionEffect.handle
void handle(final Player player)
Handles the execute of the staff panel action.