mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-14 11:31:30 +00:00
16 lines
399 B
C++
16 lines
399 B
C++
#ifndef EQEMU_ZONE_EVENT_SCHEDULER_H
|
|
#define EQEMU_ZONE_EVENT_SCHEDULER_H
|
|
|
|
#include "../common/server_event_scheduler.h"
|
|
#include "../common/content/world_content_service.h"
|
|
|
|
class Zone;
|
|
|
|
class ZoneEventScheduler : public ServerEventScheduler {
|
|
public:
|
|
void Process(Zone *zone, WorldContentService *content_service);
|
|
void SyncEventDataWithActiveEvents();
|
|
};
|
|
|
|
#endif //EQEMU_ZONE_EVENT_SCHEDULER_H
|