mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
24 lines
469 B
C
24 lines
469 B
C
|
#pragma once
|
||
|
|
||
|
#include "Behavior.h"
|
||
|
|
||
|
class TauntBehavior final : public Behavior
|
||
|
{
|
||
|
public:
|
||
|
float m_threatToAdd;
|
||
|
|
||
|
/*
|
||
|
* Inherited
|
||
|
*/
|
||
|
|
||
|
explicit TauntBehavior(const uint32_t behaviorId) : Behavior(behaviorId)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) override;
|
||
|
|
||
|
void Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) override;
|
||
|
|
||
|
void Load() override;
|
||
|
};
|