RuneHive-Game
Loading...
Searching...
No Matches
ActionEffect.java
Go to the documentation of this file.
1package com.runehive.content.staff;
2
3import com.runehive.game.world.entity.mob.player.Player;
4
5/**
6 * The action execute of the staff panel.
7 *
8 * @author Daniel
9 *
10 */
11public 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}
This class represents a character controlled by a player.
Definition Player.java:125
The action execute of the staff panel.
void handle(final Player player)
Handles the execute of the staff panel action.