luckinfo.h
来自「天之炼狱1服务器端源文件游戏服务端不完整」· C头文件 代码 · 共 42 行
H
42 行
////////////////////////////////////////////////////////////////////////////////// Filename : LuckInfo.h// Written By : // Description :////////////////////////////////////////////////////////////////////////////////#ifndef __LUCK_INFO_H__#define __LUCK_INFO_H__#include "Exception.h"#include "Types.h"#include <vector>const int MAX_LUCK_LEVEL = 140;////////////////////////////////////////////////////////////////////////////////// Class LuckInfoManager/////////////////////////////////////////////////////////////////////////////////*class LuckInfoManager {public: LuckInfoManager() throw(); ~LuckInfoManager() throw();public: void init() throw(Error); void load() throw(Error); const LuckInfo& getLuckInfo(int level) const throw (Error); string toString() const throw();private: vector<int> m_ItemTypeUpgradeRatio[3]; vector<int> m_OptionTypeUpgradeRatio[3];};extern LuckInfoManager* g_pLuckInfoManager;*/#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?