19 lines
224 B
C++
19 lines
224 B
C++
|
|
#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) {
|
||
|
|
|
||
|
|
}
|