slayerattrexptable.h

来自「天之炼狱1服务器端源文件游戏服务端不完整」· C头文件 代码 · 共 31 行

H
31
字号
#ifndef __SLAYER_ATTR_EXP_TABLE_H__#define __SLAYER_ATTR_EXP_TABLE_H__#include "Types.h"#include "Exception.h"#include "ExpFwd.h"#include "SomethingGrowingUp.h"#include <string>class SlayerAttrExpTable : public ExpTable<Exp_t, Attr_t, 1, 295>{public:	SlayerAttrExpTable( AttrKind kind ) : m_Kind(kind)	{	}	const string getDBTableName() const { return DBTableName[m_Kind]; }	static const string DBTableName[ATTR_KIND_MAX];private:	AttrKind	m_Kind;public:	static SlayerAttrExpTable s_SlayerAttrExpTable[ATTR_KIND_MAX];};typedef SomethingGrowingUp<SlayerAttrExpTable> Attr;#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?