mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-10 20:47:46 +00:00
22 lines
312 B
C++
22 lines
312 B
C++
#ifndef _EVENTHELPER_H
|
|
#define _EVENTHELPER_H
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
namespace Sapphire::World::Manager
|
|
{
|
|
|
|
class EventMgr
|
|
{
|
|
public:
|
|
EventMgr() = default;
|
|
|
|
std::string getEventName( uint32_t eventId );
|
|
|
|
uint32_t mapEventActorToRealActor( uint32_t eventActorId );
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|