Files
mir_server/Gateway/gateway/event/base_event.cc

19 lines
224 B
C++
Raw Permalink Normal View History

2025-01-09 17:45:40 +08:00
#include "StdAfx.h"
#include "base_event.h"
BaseEvent::BaseEvent(GameClientMgr* cli_mgr)
:cli_mgr_(cli_mgr) {
}
BaseEvent::~BaseEvent()
{
}
bool BaseEvent::init(void) {
return true;
}
void BaseEvent::RunOne(void) {
}