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