This commit is contained in:
azw 2023-02-19 03:40:49 +00:00
parent 26eadf0453
commit f5e300851e
3 changed files with 33 additions and 4 deletions

View File

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

View File

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

View File

@ -17,10 +17,7 @@ enum NetHandler_e
{
HID_Player,
HID_PlayerMgr,
HID_Room,
HID_RoomMgr,
HID_MatchMgr,
HID_MatchTeam,
HID_CacheMgr,
HID_GGListener,
};