F4MP/tiltedcode/Code/client/Games/Animation/TESActionData.h
Jous99 37b16f1547 code upload
codigo original de f4mp y tilted para referencias
2026-01-06 18:45:00 +01:00

21 lines
495 B
C

#pragma once
#include <Games/Animation/BGSActionData.h>
struct TESObjectREFR;
struct TESIdleForm;
struct Actor;
struct BGSAction;
struct TESActionData final : BGSActionData
{
TESActionData(uint32_t aParam1, Actor* apActor, BGSAction* apAction, TESObjectREFR* apTarget); // pass 2 for aParam1
~TESActionData();
bool ComputeResult();
};
#if TP_PLATFORM_64
static_assert(offsetof(TESActionData, eventName) == 0x28);
static_assert(offsetof(TESActionData, idleForm) == 0x48);
#endif