⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 baseeffect.cpp

📁 奇迹世界 部分源代码奇迹世界 部分源代码奇迹世界 部分源代码
💻 CPP
字号:
#include "stdafx.h"
#include "BaseEffect.h"



VOID BaseEffect::Init( SLOTCODE SkillCode, int iApplicationTime, int iPeriod, Character *pAttacker, WzVector vCurPos, float fRadius )
{
	m_SkillCode = SkillCode;
	m_pOwner = pAttacker;
	m_vCurPos = vCurPos;
	m_fRadius = fRadius;

	m_pField = pAttacker->GetField();
	m_dwSectorIndex = pAttacker->GetSectorIndex();

	BaseStatus::Init( NULL, 0, iApplicationTime, iPeriod );
}

VOID BaseEffect::Execute()
{
	BaseStatus::Execute();
}








⌨️ 快捷键说明

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