📄 rankbonus.cpp
字号:
//////////////////////////////////////////////////////////////////////////////// Filename : RankBonus.cpp// Written by :// Description ://////////////////////////////////////////////////////////////////////////////#include "RankBonus.h"#include "Exception.h"RankBonus::RankBonus() throw(){ __BEGIN_TRY __END_CATCH}RankBonus::RankBonus( DWORD type, DWORD point, Rank_t rank ) throw(){ __BEGIN_TRY m_Type = type; m_Point = point; m_Rank = rank; __END_CATCH}RankBonus::~RankBonus() throw(){ __BEGIN_TRY __END_CATCH}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -