This commit is contained in:
aozhiwei 2023-03-04 20:04:40 +08:00
parent fa82dfce26
commit 747d6d73bd
2 changed files with 7 additions and 1 deletions

View File

@ -13,7 +13,7 @@ void CallFuncBuff::Activate()
switch ((BuffCallFunc_e)meta->_int_buff_param1) {
case BuffCallFunc_e::kAddMinorMode:
{
ProcAddMinorMode();
}
break;
case BuffCallFunc_e::kSpeedReduce:
@ -85,3 +85,8 @@ void CallFuncBuff::ProcIntervalRangeAddBuffFunc()
&xtimer_attacher
);
}
void CallFuncBuff::ProcAddMinorMode()
{
}

View File

@ -18,4 +18,5 @@ class CallFuncBuff : public Buff
private:
void ProcIntervalRangeAddBuffFunc();
void ProcAddMinorMode();
};