DarkflameServer/dGame/dBehaviors/NpcCombatSkillBehavior.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
416 B
C
Raw Normal View History

#pragma once
#include "Behavior.h"
class NpcCombatSkillBehavior final : public Behavior
{
public:
std::vector<Behavior*> m_behaviors;
float m_npcSkillTime;
/*
* Inherited
*/
explicit NpcCombatSkillBehavior(const uint32_t behavior_id) : Behavior(behavior_id) {
}
2022-07-28 13:39:57 +00:00
void Calculate(BehaviorContext* context, RakNet::BitStream* bit_stream, BehaviorBranchContext branch) override;
void Load() override;
};