RuneHive-Game
Loading...
Searching...
No Matches
DefaultMelee.java
Go to the documentation of this file.
1package com.runehive.game.world.entity.combat.strategy.player.special.melee;
2
3import 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 */
10public 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}