This commit is contained in:
aozhiwei 2021-06-24 12:34:17 +00:00
parent a6736eb700
commit 38d63d079d
2 changed files with 6 additions and 0 deletions

View File

@ -39,3 +39,8 @@ void Trigger::HpChg(float old_hp, float new_hp)
{
}
void Trigger::Die()
{
}

View File

@ -17,6 +17,7 @@ public:
void UseItemAction(int slot_id);
void UseSkill(Skill* skill);
void HpChg(float old_hp, float new_hp);
void Die();
private:
Creature* owner_ = nullptr;