📄 partystate.cpp
字号:
#include "StdAfx.h"
#include "PartyState.h"
PartyState::PartyState()
{
Init();
}
PartyState::~PartyState()
{
}
VOID PartyState::Init()
{
m_State = PARTY_STATE_BE_FREE;
m_dwOtherUserKey = INITIAL_KEY_VALUE;
m_wPartyKey = INITIAL_KEY_VALUE;
m_bMaster = FALSE;
}
VOID PartyState::JoinParty( WORD wPartyKey, bool bMaster )
{
m_wPartyKey = wPartyKey;
m_bMaster = bMaster;
SetState( PARTY_STATE_BE_MEMBER );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -