mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-06 02:37:47 +00:00
15 lines
257 B
C++
15 lines
257 B
C++
#ifndef _EVENTHELPER_H
|
|
#define _EVENTHELPER_H
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
namespace Core {
|
|
namespace Event {
|
|
|
|
std::string getEventName( uint32_t eventId );
|
|
|
|
uint32_t mapEventActorToRealActor( uint32_t eventActorId );
|
|
}
|
|
}
|
|
#endif
|