Skip to content

Commit

Permalink
fix: add missing headers
Browse files Browse the repository at this point in the history
  • Loading branch information
powerof3 committed Feb 3, 2024
1 parent f51a5c6 commit b31d0b0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions CommonLibSF/include/RE/B/BGSMod.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include "RE/B/BGSAttachParentArray.h"
#include "RE/B/BGSModelMaterialSwap.h"
#include "RE/B/BSTArray.h"
#include "RE/B/BaseFormComponent.h"
#include "RE/T/TESDescription.h"
Expand Down
18 changes: 18 additions & 0 deletions CommonLibSF/include/RE/I/IAddressControllerStore.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#pragma once

namespace RE::BSBind
{
class IAddressControllerStore
{
public:
virtual ~IAddressControllerStore(); // 00

// add
virtual void Unk_01(); // 01
virtual void Unk_02(); // 02
virtual void Unk_03(); // 03
virtual void Unk_04(); // 04
virtual void Unk_05(); // 05
};
static_assert(sizeof(IAddressControllerStore) == 0x8);
}

0 comments on commit b31d0b0

Please sign in to comment.