📄 simplemeleeskill.h
字号:
//////////////////////////////////////////////////////////////////////////////// Filename : SimpleMeleeSkill.h// Written by : excel96// Description : //////////////////////////////////////////////////////////////////////////////#ifndef __SIMPLEMELEESKILL__#define __SIMPLEMELEESKILL__#include "SimpleSkill.h"class SimpleMeleeSkill{public: void execute(Slayer* pSlayer, ObjectID_t ObjectID, SkillSlot* pSkillSlot, const SIMPLE_SKILL_INPUT& param, SIMPLE_SKILL_OUTPUT& result, CEffectID_t CEffectID=0) throw (Error); void execute(Vampire* pVampire, ObjectID_t ObjectID, VampireSkillSlot* pVampireSkillSlot, const SIMPLE_SKILL_INPUT& param, SIMPLE_SKILL_OUTPUT& result, CEffectID_t CEffectID=0, int HitBonus=0) throw (Error); void execute(Ousters* pOusters, ObjectID_t ObjectID, OustersSkillSlot* pOustersSkillSlot, const SIMPLE_SKILL_INPUT& param, SIMPLE_SKILL_OUTPUT& result, CEffectID_t CEffectID=0, int HitBonus=0) throw (Error); void execute(Monster* pMonster, Creature* pEnemy, const SIMPLE_SKILL_INPUT& param, SIMPLE_SKILL_OUTPUT& result, CEffectID_t CEffectID=0) throw (Error);};extern SimpleMeleeSkill g_SimpleMeleeSkill;#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -