DarkflameServer/dGame/dBehaviors/PlayEffectBehavior.cpp

24 lines
709 B
C++
Raw Permalink Normal View History

2022-08-06 03:01:59 +00:00
#include "PlayEffectBehavior.h"
#include "BehaviorContext.h"
#include "BehaviorBranchContext.h"
2022-07-28 13:39:57 +00:00
void PlayEffectBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
// On managed behaviors this is handled by the client
if (!context->unmanaged)
return;
const auto& target = branch.target == LWOOBJID_EMPTY ? context->originator : branch.target;
PlayFx(u"", target);
}
2022-07-28 13:39:57 +00:00
void PlayEffectBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
const auto& target = branch.target == LWOOBJID_EMPTY ? context->originator : branch.target;
//PlayFx(u"", target);
}
2022-07-28 13:39:57 +00:00
void PlayEffectBehavior::Load() {
}