mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-05 10:17:46 +00:00
19 lines
348 B
C
19 lines
348 B
C
![]() |
#ifndef SAPPHIRE_ACTIONMGR_H
|
||
|
#define SAPPHIRE_ACTIONMGR_H
|
||
|
|
||
|
#include "BaseManager.h"
|
||
|
|
||
|
namespace Sapphire::World::Manager
|
||
|
{
|
||
|
class ActionMgr : public Manager::BaseManager
|
||
|
{
|
||
|
public:
|
||
|
explicit ActionMgr( FrameworkPtr pFw );
|
||
|
~ActionMgr() = default;
|
||
|
|
||
|
// void handlePlayerCast( Entity::Player& player)
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //SAPPHIRE_ACTIONMGR_H
|