F4MP/codigos originales/tiltedcode/Code/client/Games/Animation/ActionOutput.h
2026-01-06 18:53:59 +01:00

20 lines
394 B
C

#pragma once
#include <Misc/BSFixedString.h>
struct TESIdleForm;
struct ActionOutput
{
ActionOutput();
~ActionOutput() { Release(); }
void Release();
BSFixedString eventName; // 28
BSFixedString targetEventName; // 30
int result; // 38
TESIdleForm* targetIdleForm; // 40
TESIdleForm* idleForm; // 48
uint32_t unk1;
};