23 lines
317 B
C++
23 lines
317 B
C++
#pragma once
|
|
|
|
namespace cs
|
|
{
|
|
class CMJoin;
|
|
}
|
|
|
|
class RoomMgr : public a8::Singleton<RoomMgr>
|
|
{
|
|
public:
|
|
enum { HID = HID_RoomMgr };
|
|
|
|
private:
|
|
RoomMgr() {};
|
|
friend class a8::Singleton<RoomMgr>;
|
|
|
|
public:
|
|
void Init();
|
|
void UnInit();
|
|
|
|
void _CMJoin(f8::MsgHdr& hdr, const cs::CMJoin& msg);
|
|
};
|