rankbonus.cpp
来自「天之炼狱1服务器端源文件游戏服务端不完整」· C++ 代码 · 共 40 行
CPP
40 行
//////////////////////////////////////////////////////////////////////////////// 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 + =
减小字号Ctrl + -
显示快捷键?