luckinfo.cpp
来自「天之炼狱1服务器端源文件游戏服务端不完整」· C++ 代码 · 共 54 行
CPP
54 行
////////////////////////////////////////////////////////////////////////////////// Filename : LuckInfo.cpp// Written By : beowulf// Description :////////////////////////////////////////////////////////////////////////////////#include "LuckInfo.h"#include "Assert.h"#include "VariableManager.h"#include "DB.h"#include <algo.h>////////////////////////////////////////////////////////////////////////////////// Global Variable initialization/////////////////////////////////////////////////////////////////////////////////*LuckInfoManager * g_pLuckInfoManager = NULL;////////////////////////////////////////////////////////////////////////////////// class LuckInfoManager member methods////////////////////////////////////////////////////////////////////////////////LuckInfoManager::LuckInfoManager() throw(){ __BEGIN_TRY for ( int i=0; i<3; ++i ) { m_ItemTypeUpgradeRatio[i].reserve(MAX_LUCK_LEVEL); m_OptionTypeUpgradeRatio[i].reserve(MAX_LUCK_LEVEL); } __END_CATCH}LuckInfoManager::~LuckInfoManager() throw(){ __BEGIN_TRY __END_CATCH}void LuckInfoManager::init() throw(Error){ __BEGIN_TRY __END_CATCH}*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?