mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
20 lines
394 B
C
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;
|
|
};
|