1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-06 10:47:45 +00:00
sapphire/src/servers/Server_Zone/Event/EventHelper.h

17 lines
259 B
C
Raw Normal View History

2017-08-08 13:53:47 +02:00
#ifndef _EVENTHELPER_H
#define _EVENTHELPER_H
#include <stdint.h>
#include <string>
namespace Core {
namespace Event {
std::string getEventName( uint32_t eventId );
uint32_t mapEventActorToRealActor( uint32_t eventActorId );
}
}
#endif