RuneHive-Game
Loading...
Searching...
No Matches
DefaultMelee.java
Go to the documentation of this file.
1
package
com.runehive.game.world.entity.combat.strategy.player.special.melee;
2
3
import
com.runehive.game.world.entity.combat.strategy.player.PlayerMeleeStrategy;
4
5
/**
6
* Handles the staff of the dead weapon special attack.
7
*
8
* @author Daniel
9
*/
10
public
class
DefaultMelee
extends
PlayerMeleeStrategy
{
11
12
private
static
final
DefaultMelee
INSTANCE
=
new
DefaultMelee
();
13
14
public
static
DefaultMelee
get
() {
15
return
INSTANCE
;
16
}
17
18
}
com.runehive.game.world.entity.combat.strategy.player.PlayerMeleeStrategy.PlayerMeleeStrategy
PlayerMeleeStrategy()
Definition
PlayerMeleeStrategy.java:26
com.runehive.game.world.entity.combat.strategy.player.special.melee.DefaultMelee
Handles the staff of the dead weapon special attack.
Definition
DefaultMelee.java:10
com.runehive.game.world.entity.combat.strategy.player.special.melee.DefaultMelee.INSTANCE
static final DefaultMelee INSTANCE
Definition
DefaultMelee.java:12