Skip to content

Commit

Permalink
FIGHT_ACTION enum.
Browse files Browse the repository at this point in the history
  • Loading branch information
FalloutCascadia authored May 14, 2024
1 parent 4fe1082 commit 88ad8b5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion CommonLibF4/include/RE/Bethesda/FormComponents.h
Original file line number Diff line number Diff line change
Expand Up @@ -1730,13 +1730,21 @@ namespace RE
};
static_assert(sizeof(TESRaceForm) == 0x10);

enum class FIGHT_REACTION
{
kNeutral = 0,
kEnemy = 1,
kAlly = 2,
kFriend = 3
};

struct GROUP_REACTION
{
public:
// members
TESForm* form; // 00
std::int32_t reaction; // 08
std::int32_t fightReaction; // 0C
FIGHT_REACTION fightReaction; // 0C
};
static_assert(sizeof(GROUP_REACTION) == 0x10);

Expand Down

0 comments on commit 88ad8b5

Please sign in to comment.