1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-09 12:17:45 +00:00
sapphire/src/world/Manager/EventMgr.h
2018-12-23 03:53:08 +01:00

23 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