This commit is contained in:
aozhiwei 2020-06-16 10:20:40 +08:00
parent fce1c41750
commit 6ce406aea1
3 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#include "precompile.h"
#include "cachemgr.h"
void CacheMgr::Init()
{
}
void CacheMgr::UnInit()
{
}

View File

@ -0,0 +1,23 @@
#pragma once
#include "ss_proto.pb.h"
class CacheMgr : public a8::Singleton<CacheMgr>
{
public:
enum { HID = HID_CacheMgr };
private:
CacheMgr() {};
friend class a8::Singleton<CacheMgr>;
public:
void Init();
void UnInit();
private:
private:
};

View File

@ -19,6 +19,7 @@ enum NetHandler_e
{
HID_GSMgr,
HID_IMSMgr,
HID_CacheMgr,
};
const char* const PROJ_NAME_FMT = "friend_masterserver";