📄 luckinfo.cpp
字号:
////////////////////////////////////////////////////////////////////////////////// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -