1package com.osroyale.game.world.entity.combat.strategy.player.special.melee;
3import com.osroyale.game.Animation;
4import com.osroyale.game.Graphic;
5import com.osroyale.game.UpdatePriority;
6import com.osroyale.game.world.entity.combat.hit.CombatHit;
7import com.osroyale.game.world.entity.combat.hit.Hit;
8import com.osroyale.game.world.entity.combat.strategy.player.PlayerMeleeStrategy;
9import com.osroyale.game.world.entity.mob.Mob;
10import com.osroyale.game.world.entity.mob.player.Player;
46 public void attack(
Player attacker,
Mob defender,
Hit hit) {
47 super.attack(attacker, defender, hit);
48 defender.graphic(GRAPHIC);
52 public void start(
Player attacker,
Mob defender,
Hit[] hits) {
53 super.start(attacker, defender, hits);
59 return new CombatHit[]{nextMeleeHit(attacker, defender)};