mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-10 12:47:44 +00:00
24 lines
374 B
C
24 lines
374 B
C
![]() |
#ifndef _EVENTHELPER_H
|
||
|
#define _EVENTHELPER_H
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include <string>
|
||
|
#include "Manager/BaseManager.h"
|
||
|
|
||
|
namespace Sapphire::World::Manager
|
||
|
{
|
||
|
|
||
|
class EventMgr : public BaseManager
|
||
|
{
|
||
|
public:
|
||
|
EventMgr( FrameworkPtr pFw );
|
||
|
|
||
|
std::string getEventName( uint32_t eventId );
|
||
|
|
||
|
uint32_t mapEventActorToRealActor( uint32_t eventActorId );
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|