luaselectitem.h
来自「天之炼狱1服务器端源文件游戏服务端不完整」· C头文件 代码 · 共 27 行
H
27 行
#ifndef __LUA_SELECT_ITEM_H__#define __LUA_SELECT_ITEM_H__#include "LuaScript.h"#include "Item.h"class LuaSelectItem : public LuaScript {public : LuaSelectItem(LuaState* pState); virtual int executeFile(const string& filename) throw (Error); Item::ItemClass getItemClass() const { return m_ItemClass; } ItemType_t getItemType() const { return m_ItemType; } OptionType_t getOptionType() const { return m_OptionType; } OptionType_t getOptionType2() const { return m_OptionType2; }protected : Item::ItemClass m_ItemClass; ItemType_t m_ItemType; OptionType_t m_OptionType; OptionType_t m_OptionType2;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?