Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/A/AnimationSystemUtils.h
T
2026-05-30 18:33:24 +12:00

17 lines
372 B
C++

#pragma once
#include "RE/B/BSFixedString.h"
namespace RE
{
namespace AnimationSystemUtils
{
inline bool WillEventChangeState(const TESObjectREFR& a_ref, const BSFixedString& a_evn)
{
using func_t = decltype(&WillEventChangeState);
static REL::Relocation<func_t> func{ ID::AnimationSystemUtils::WillEventChangeState };
return func(a_ref, a_evn);
}
}
}