eqemu-server/zone/zone_event_scheduler.h
2025-12-26 20:58:07 -08:00

18 lines
407 B
C++

#pragma once
#include "common/content/world_content_service.h"
#include "common/server_event_scheduler.h"
#include "zone/zone.h"
class ZoneEventScheduler : public ServerEventScheduler {
public:
void Process(Zone *zone, WorldContentService *content_service);
void SyncEventDataWithActiveEvents();
static ZoneEventScheduler* Instance()
{
static ZoneEventScheduler instance;
return &instance;
}
};