DragonNest/Server/DNGameServer/MAAiCommand.h
Cussrro 47f7895977 Revert "修复编码问题"
This reverts commit 9e69c01767.
2024-12-21 10:04:04 +08:00

28 lines
441 B
C++

#pragma once
namespace AICommand
{
enum Command
{
CMD_USESKILL = 0, // 스킬 사용
CMD_REMOVEBLOW_BYSKILLINDEX, // 해당 스킬로 발생된 BLOW 제거
CMD_MAX,
};
typedef struct tagUseSkill
{
int iSkillIndex;
}SUseSkill;
typedef SUseSkill SRemoveBlowBySkillIndex;
};
class MAAiScript;
class MAAiCommand:public TBoostMemoryPool<MAAiCommand>
{
public:
void MsgProc( MAAiScript* pAIScript, const UINT uiMsg, void* pParam );
};