-
Notifications
You must be signed in to change notification settings - Fork 225
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
1 parent
4a3cbf4
commit ca4476a
Showing
4 changed files
with
33 additions
and
9 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
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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
#pragma once | ||
|
||
struct TESLevItem : BaseFormComponent | ||
{ | ||
#include "TESLeveledList.h" | ||
|
||
struct TESLevItem : TESBoundObject, TESLeveledList | ||
{ | ||
}; | ||
|
||
static_assert(sizeof(TESLevItem) == 0x58); |
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,18 @@ | ||
#pragma once | ||
|
||
struct TESLeveledList : BaseFormComponent | ||
{ | ||
struct LEVELED_OBJECT | ||
{ | ||
TESForm* pForm; | ||
uint16_t count; | ||
uint16_t level; | ||
uint32_t padC; | ||
void* pItemExtra; | ||
}; | ||
|
||
LEVELED_OBJECT* pLeveledListA; // this array has count at offset -8 | ||
uint8_t unk10[0x28 - 0x10]; | ||
}; | ||
|
||
static_assert(sizeof(TESLeveledList) == 0x28); |
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