forked from Ryan-rsm-McKenzie/CommonLibSSE
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from Vermunds/dev
Map Menu findings and basic BGSTerrainManager RE
- Loading branch information
Showing
4 changed files
with
64 additions
and
23 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#pragma once | ||
|
||
namespace RE | ||
{ | ||
class BGSTerrainManager | ||
{ | ||
public: | ||
std::uint64_t unk00; // 00 | ||
std::uint64_t unk08; // 08 | ||
std::uint64_t unk10; // 10 | ||
std::uint64_t unk18; // 18 | ||
std::uint64_t unk20; // 20 | ||
std::uint64_t unk28; // 28 | ||
std::uint8_t unk30; // 30 | ||
std::uint8_t unk31; // 31 | ||
bool lodTreesHidden; // 32 | ||
std::uint8_t unk33; // 33 | ||
std::uint8_t unk34; // 34 | ||
std::uint8_t unk35; // 35 | ||
std::uint8_t unk36; // 36 | ||
std::uint8_t unk37; // 37 | ||
std::uint64_t unk38; // 38 | ||
std::uint64_t unk40; // 40 | ||
std::uint64_t unk48; // 48 | ||
std::uint64_t unk50; // 50 | ||
std::uint64_t unk58; // 58 | ||
std::uint64_t unk60; // 60 | ||
std::uint64_t unk68; // 68 | ||
std::uint64_t unk70; // 70 | ||
std::uint64_t unk78; // 78 | ||
std::uint64_t unk80; // 80 | ||
std::uint64_t unk88; // 88 | ||
std::uint64_t unk90; // 90 | ||
std::uint64_t unk98; // 98 | ||
std::uint64_t unkA0; // A0 | ||
std::uint64_t unkA8; // A8 | ||
std::uint64_t unkB0; // B0 | ||
std::uint64_t unkB8; // B8 | ||
std::uint64_t unkC0; // C0 | ||
}; | ||
static_assert(sizeof(BGSTerrainManager) == 0xC8); | ||
} |
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