mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-05 10:17:46 +00:00
20 lines
372 B
C
20 lines
372 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <Common.h>
|
||
|
#include "ForwardsZone.h"
|
||
|
#include <cstdint>
|
||
|
#include <unordered_map>
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace Sapphire::World::Action
|
||
|
{
|
||
|
class Warrior
|
||
|
{
|
||
|
public:
|
||
|
static void onAction( Entity::Player& player, Action& action );
|
||
|
|
||
|
private:
|
||
|
static void handleWrath( Entity::Player& player, Action& action );
|
||
|
};
|
||
|
}
|