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

33 lines
No EOL
699 B
C++

#include "StdAfx.h"
#include "DnDivideSEArgumentByTargets.h"
#ifdef _DEBUG
#define new new(_NORMAL_BLOCK,__FILE__,__LINE__)
#endif
CDnDivideSEArgumentByTargets::CDnDivideSEArgumentByTargets( DnActorHandle hActor, int iArgument ) : IDnSkillProcessor( hActor ), m_iStateEffectArgument( iArgument )
{
m_iType = DIVIDE_STATE_EFFECT_ARG;
}
CDnDivideSEArgumentByTargets::~CDnDivideSEArgumentByTargets(void)
{
}
void CDnDivideSEArgumentByTargets::OnBegin( LOCAL_TIME LocalTime, float fDelta, DnSkillHandle hParentSkill )
{
}
void CDnDivideSEArgumentByTargets::Process( LOCAL_TIME LocalTime, float fDelta )
{
}
void CDnDivideSEArgumentByTargets::OnEnd( LOCAL_TIME LocalTime, float fDelta )
{
}