mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 12:41:30 +00:00
19 lines
375 B
C++
19 lines
375 B
C++
#ifndef EQEMU_EVENT_SCHEDULER_H
|
|
#define EQEMU_EVENT_SCHEDULER_H
|
|
|
|
#include "../common/server_event_scheduler.h"
|
|
#include "zonelist.h"
|
|
|
|
class WorldEventScheduler : public ServerEventScheduler {
|
|
public:
|
|
void Process(ZSList *zs_list);
|
|
|
|
static WorldEventScheduler* Instance()
|
|
{
|
|
static WorldEventScheduler instance;
|
|
return &instance;
|
|
}
|
|
};
|
|
|
|
#endif //EQEMU_EVENT_SCHEDULER_H
|