mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-09 20:27:45 +00:00
23 lines
374 B
C++
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
|