mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-04 15:43:52 +00:00
18 lines
407 B
C++
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;
|
|
}
|
|
};
|