1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-11 21:17:45 +00:00
sapphire/src/world/Manager/EventMgr.h

23 lines
312 B
C
Raw Normal View History

2018-12-23 03:53:08 +01:00
#ifndef _EVENTHELPER_H
#define _EVENTHELPER_H
#include <cstdint>
#include <string>
namespace Sapphire::World::Manager
{
2020-03-01 01:00:57 +11:00
class EventMgr
2018-12-23 03:53:08 +01:00
{
public:
2020-03-01 01:00:57 +11:00
EventMgr() = default;
2018-12-23 03:53:08 +01:00
std::string getEventName( uint32_t eventId );
uint32_t mapEventActorToRealActor( uint32_t eventActorId );
};
}
#endif