1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-10 20:47:46 +00:00
sapphire/src/world/Manager/EventMgr.h
2020-03-01 11:58:26 +11:00

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