-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
64 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#pragma once | ||
|
||
#include "RE/B/BGSReflectedForm.h" | ||
#include "RE/B/BSTArray.h" | ||
|
||
namespace RE | ||
{ | ||
class BGSKeyword; | ||
|
||
class BGSFormFolderKeywordList : public BGSReflectedForm | ||
{ | ||
public: | ||
SF_RTTI_VTABLE(BGSFormFolderKeywordList); | ||
SF_FORMTYPE(FFKW); | ||
|
||
~BGSFormFolderKeywordList() override; // 00 | ||
|
||
// members | ||
BSTArray<BGSKeyword*> keywords; // 38 | ||
BSFixedString formFolder; // 48 | ||
}; | ||
static_assert(sizeof(BGSFormFolderKeywordList) == 0x50); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#pragma once | ||
|
||
#include "RE/T/TESForm.h" | ||
|
||
namespace RE | ||
{ | ||
class BGSReflectedForm : public TESForm | ||
{ | ||
public: | ||
SF_RTTI_VTABLE(BGSReflectedForm); | ||
|
||
~BGSReflectedForm() override; // 00 | ||
|
||
// add | ||
virtual void Unk_62(); // 62 | ||
virtual void Unk_63(); // 63 | ||
virtual void Unk_64(); // 64 | ||
virtual void Unk_65(); // 65 | ||
virtual void Unk_66(); // 66 | ||
virtual void Unk_67(); // 67 | ||
virtual void Unk_68(); // 68 | ||
virtual void Unk_69(); // 69 | ||
virtual void Unk_6A(); // 6A | ||
virtual void Unk_6B(); // 6B | ||
}; | ||
static_assert(sizeof(BGSReflectedForm) == 0x38); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters