diff --git a/Creation Kit Platform Extended Core/Core/CoreCommon.h b/Creation Kit Platform Extended Core/Core/CoreCommon.h index a2a2915c..9c79b512 100644 --- a/Creation Kit Platform Extended Core/Core/CoreCommon.h +++ b/Creation Kit Platform Extended Core/Core/CoreCommon.h @@ -87,16 +87,16 @@ namespace CreationKitPlatformExtended // Список названий редакторов static std::vector allowedEditorVersionStr = { "Unknown version", - //"Skyrim Special Edition [v1.5.3]", + "Skyrim Special Edition [v1.5.3]", "Skyrim Special Edition [v1.5.73]", - //"Skyrim Special Edition [v1.6.438]", + "Skyrim Special Edition [v1.6.438]", "Skyrim Special Edition [v1.6.1130]", "Skyrim Special Edition [v1.6.1378.1]", "Fallout 4 [v1.10.162.0]", - //"Fallout 4 [v1.10.943.1]", + "Fallout 4 [v1.10.943.1]", "Fallout 4 [v1.10.982.3]", - //"Starfield [v1.13.61.0]", - //"Starfield [v1.14.70.0]", + "Starfield [v1.13.61.0]", + "Starfield [v1.14.70.0]", "Starfield [v1.14.74.0]", }; @@ -147,18 +147,18 @@ namespace CreationKitPlatformExtended { switch (editorVersion) { - //case EDITOR_SKYRIM_SE_1_5_3: + case EDITOR_SKYRIM_SE_1_5_3: case EDITOR_SKYRIM_SE_1_5_73: - //case EDITOR_SKYRIM_SE_1_6_438: + case EDITOR_SKYRIM_SE_1_6_438: case EDITOR_SKYRIM_SE_1_6_1130: case EDITOR_SKYRIM_SE_1_6_1378_1: return EDITOR_SHORT_SKYRIM_SE; case EDITOR_FALLOUT_C4_1_10_162_0: - //case EDITOR_FALLOUT_C4_1_10_943_1: + case EDITOR_FALLOUT_C4_1_10_943_1: case EDITOR_FALLOUT_C4_1_10_982_3: return EDITOR_SHORT_FALLOUT_C4; - //case EDITOR_STARFIELD_1_13_61_0: - //case EDITOR_STARFIELD_1_14_70_0: + case EDITOR_STARFIELD_1_13_61_0: + case EDITOR_STARFIELD_1_14_70_0: case EDITOR_STARFIELD_1_14_74_0: return EDITOR_SHORT_STARFIELD; default: diff --git a/Creation Kit Platform Extended Core/Core/EngineSSEPatches.cpp b/Creation Kit Platform Extended Core/Core/EngineSSEPatches.cpp index 5409e469..ddbc037c 100644 --- a/Creation Kit Platform Extended Core/Core/EngineSSEPatches.cpp +++ b/Creation Kit Platform Extended Core/Core/EngineSSEPatches.cpp @@ -81,7 +81,6 @@ #include "Patches/SSE/UpdateUIWhenFogToggled.h" #include "Patches/SSE/FixParamsATXT.h" #include "Patches/SSE/NewFormat171.h" -#include "Patches/SSE/CrashGenMaxHeightData.h" #include "Patches/SSE/TESDataHandlerHookSSE.h" #include "Patches/SSE/FixFormIDsInLoadFile.h" #include "Patches/SSE/IgnoreGroundHeightTest.h" @@ -191,7 +190,6 @@ namespace CreationKitPlatformExtended new Patches::UpdateUIWhenFogToggledPatch(), new Patches::FixParamsATXTPatch(), new Patches::NewFormat171Patch(), - new Patches::CrashGenMaxHeightDataPatch(), new Patches::TESDataHandlerPatch(), new Patches::FixFormIDsInLoadFilePatch(), new Patches::IgnoreGroundHeightTestPatch(), diff --git a/Creation Kit Platform Extended Core/Creation Kit Platform Extended Core.vcxproj b/Creation Kit Platform Extended Core/Creation Kit Platform Extended Core.vcxproj index a69741b0..021f8bd4 100644 --- a/Creation Kit Platform Extended Core/Creation Kit Platform Extended Core.vcxproj +++ b/Creation Kit Platform Extended Core/Creation Kit Platform Extended Core.vcxproj @@ -288,7 +288,6 @@ - @@ -688,7 +687,6 @@ - diff --git a/Creation Kit Platform Extended Core/Creation Kit Platform Extended Core.vcxproj.filters b/Creation Kit Platform Extended Core/Creation Kit Platform Extended Core.vcxproj.filters index 407ceff5..d00576cf 100644 --- a/Creation Kit Platform Extended Core/Creation Kit Platform Extended Core.vcxproj.filters +++ b/Creation Kit Platform Extended Core/Creation Kit Platform Extended Core.vcxproj.filters @@ -627,9 +627,6 @@ Core - - Patches\SSE - Patches\SSE @@ -1674,9 +1671,6 @@ Core - - Patches\SSE - Editor API\SSE diff --git a/Creation Kit Platform Extended Core/Patches/SSE/CrashGenMaxHeightData.cpp b/Creation Kit Platform Extended Core/Patches/SSE/CrashGenMaxHeightData.cpp deleted file mode 100644 index 1674de82..00000000 --- a/Creation Kit Platform Extended Core/Patches/SSE/CrashGenMaxHeightData.cpp +++ /dev/null @@ -1,96 +0,0 @@ -// Copyright © 2023-2024 aka perchik71. All rights reserved. -// Contacts: -// License: https://www.gnu.org/licenses/gpl-3.0.html - -#include "Core/Engine.h" -#include "CrashGenMaxHeightData.h" - -namespace CreationKitPlatformExtended -{ - namespace Patches - { - namespace SkyrimSpectialEdition - { - uintptr_t pointer_CrashGenMaxHeightData_sub1 = 0; - uintptr_t pointer_CrashGenMaxHeightData_sub2 = 0; - - CrashGenMaxHeightDataPatch::CrashGenMaxHeightDataPatch() : Module(GlobalEnginePtr) - {} - - bool CrashGenMaxHeightDataPatch::HasOption() const - { - return false; - } - - bool CrashGenMaxHeightDataPatch::HasCanRuntimeDisabled() const - { - return false; - } - - const char* CrashGenMaxHeightDataPatch::GetOptionName() const - { - return nullptr; - } - - const char* CrashGenMaxHeightDataPatch::GetName() const - { - return "Crash Generate Max Height Data"; - } - - bool CrashGenMaxHeightDataPatch::HasDependencies() const - { - return false; - } - - Array CrashGenMaxHeightDataPatch::GetDependencies() const - { - return {}; - } - - bool CrashGenMaxHeightDataPatch::QueryFromPlatform(EDITOR_EXECUTABLE_TYPE eEditorCurrentVersion, - const char* lpcstrPlatformRuntimeVersion) const - { - return false; //eEditorCurrentVersion == EDITOR_EXECUTABLE_TYPE::EDITOR_SKYRIM_SE_1_6_1130; - } - - bool CrashGenMaxHeightDataPatch::Activate(const Relocator* lpRelocator, - const RelocationDatabaseItem* lpRelocationDatabaseItem) - { - if (lpRelocationDatabaseItem->Version() == 1) - { - // FaceGenMorph .... - - // - // There is no check for an empty memory pointer, which leads to CTD - // - lpRelocator->DetourCall(lpRelocationDatabaseItem->At(0), (uintptr_t)&sub); - pointer_CrashGenMaxHeightData_sub1 = lpRelocator->Rav2Off(lpRelocationDatabaseItem->At(1)); - pointer_CrashGenMaxHeightData_sub2 = lpRelocator->Rav2Off(lpRelocationDatabaseItem->At(2)); - - return true; - } - - return false; - } - - bool CrashGenMaxHeightDataPatch::Shutdown(const Relocator* lpRelocator, - const RelocationDatabaseItem* lpRelocationDatabaseItem) - { - return false; - } - - uint32_t CrashGenMaxHeightDataPatch::sub(uint64_t a1, uint64_t a2, uint64_t a3) - { - auto Ret = fastCall(pointer_CrashGenMaxHeightData_sub1, a1, a2, a3); - if (!Ret) - { - // Skip the entire code - if (!fastCall(pointer_CrashGenMaxHeightData_sub2, a2)) - return 1; - } - - return Ret; - } - } - } -} \ No newline at end of file diff --git a/Creation Kit Platform Extended Core/Patches/SSE/CrashGenMaxHeightData.h b/Creation Kit Platform Extended Core/Patches/SSE/CrashGenMaxHeightData.h deleted file mode 100644 index deaa83cc..00000000 --- a/Creation Kit Platform Extended Core/Patches/SSE/CrashGenMaxHeightData.h +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright © 2023-2024 aka perchik71. All rights reserved. -// Contacts: -// License: https://www.gnu.org/licenses/gpl-3.0.html - -#pragma once - -#include "Core/Module.h" -#include "Core/Relocator.h" -#include "Core/RelocationDatabase.h" - -namespace CreationKitPlatformExtended -{ - namespace Patches - { - namespace SkyrimSpectialEdition - { - using namespace CreationKitPlatformExtended::Core; - - class CrashGenMaxHeightDataPatch : public Module - { - public: - CrashGenMaxHeightDataPatch(); - - virtual bool HasOption() const; - virtual bool HasCanRuntimeDisabled() const; - virtual const char* GetOptionName() const; - virtual const char* GetName() const; - virtual bool HasDependencies() const; - virtual Array GetDependencies() const; - - static uint32_t sub(uint64_t a1, uint64_t a2, uint64_t a3); - protected: - virtual bool QueryFromPlatform(EDITOR_EXECUTABLE_TYPE eEditorCurrentVersion, - const char* lpcstrPlatformRuntimeVersion) const; - virtual bool Activate(const Relocator* lpRelocator, const RelocationDatabaseItem* lpRelocationDatabaseItem); - virtual bool Shutdown(const Relocator* lpRelocator, const RelocationDatabaseItem* lpRelocationDatabaseItem); - private: - CrashGenMaxHeightDataPatch(const CrashGenMaxHeightDataPatch&) = default; - CrashGenMaxHeightDataPatch& operator=(const CrashGenMaxHeightDataPatch&) = default; - }; - } - } -} \ No newline at end of file diff --git a/Creation Kit Platform Extended Core/Patches/SSE/CrashInventoryIterators.cpp b/Creation Kit Platform Extended Core/Patches/SSE/CrashInventoryIterators.cpp index 56ef4513..6afa53e3 100644 --- a/Creation Kit Platform Extended Core/Patches/SSE/CrashInventoryIterators.cpp +++ b/Creation Kit Platform Extended Core/Patches/SSE/CrashInventoryIterators.cpp @@ -55,7 +55,7 @@ namespace CreationKitPlatformExtended bool CrashInventoryIteratorsPatch::QueryFromPlatform(EDITOR_EXECUTABLE_TYPE eEditorCurrentVersion, const char* lpcstrPlatformRuntimeVersion) const { - return eEditorCurrentVersion <= EDITOR_EXECUTABLE_TYPE::EDITOR_SKYRIM_SE_LAST; + return eEditorCurrentVersion <= EDITOR_EXECUTABLE_TYPE::EDITOR_SKYRIM_SE_1_6_1130; } bool CrashInventoryIteratorsPatch::Activate(const Relocator* lpRelocator, diff --git a/Creation Kit Platform Extended Core/Patches/SSE/CrashMHDTMoreThan70.cpp b/Creation Kit Platform Extended Core/Patches/SSE/CrashMHDTMoreThan70.cpp index 519c0fa3..c8a5bdde 100644 --- a/Creation Kit Platform Extended Core/Patches/SSE/CrashMHDTMoreThan70.cpp +++ b/Creation Kit Platform Extended Core/Patches/SSE/CrashMHDTMoreThan70.cpp @@ -55,7 +55,7 @@ namespace CreationKitPlatformExtended bool CrashMHDTMoreThan70Patch::QueryFromPlatform(EDITOR_EXECUTABLE_TYPE eEditorCurrentVersion, const char* lpcstrPlatformRuntimeVersion) const { - return eEditorCurrentVersion == EDITOR_EXECUTABLE_TYPE::EDITOR_SKYRIM_SE_1_6_1130; + return eEditorCurrentVersion >= EDITOR_EXECUTABLE_TYPE::EDITOR_SKYRIM_SE_1_6_1130; } bool CrashMHDTMoreThan70Patch::Activate(const Relocator* lpRelocator, diff --git a/Creation Kit Platform Extended Core/Patches/SSE/CrashMergeForms.cpp b/Creation Kit Platform Extended Core/Patches/SSE/CrashMergeForms.cpp index 5ad8f426..d253fa95 100644 --- a/Creation Kit Platform Extended Core/Patches/SSE/CrashMergeForms.cpp +++ b/Creation Kit Platform Extended Core/Patches/SSE/CrashMergeForms.cpp @@ -64,7 +64,7 @@ namespace CreationKitPlatformExtended bool CrashMergeFormsPatch::QueryFromPlatform(EDITOR_EXECUTABLE_TYPE eEditorCurrentVersion, const char* lpcstrPlatformRuntimeVersion) const { - return eEditorCurrentVersion == EDITOR_EXECUTABLE_TYPE::EDITOR_SKYRIM_SE_1_6_1130; + return eEditorCurrentVersion >= EDITOR_EXECUTABLE_TYPE::EDITOR_SKYRIM_SE_1_6_1130; } bool CrashMergeFormsPatch::Activate(const Relocator* lpRelocator, diff --git a/Creation Kit Platform Extended Core/Patches/SSE/MiscMessages.cpp b/Creation Kit Platform Extended Core/Patches/SSE/MiscMessages.cpp index 9f7674c2..44dc690b 100644 --- a/Creation Kit Platform Extended Core/Patches/SSE/MiscMessages.cpp +++ b/Creation Kit Platform Extended Core/Patches/SSE/MiscMessages.cpp @@ -51,7 +51,7 @@ namespace CreationKitPlatformExtended bool MiscMessagesPatch::QueryFromPlatform(EDITOR_EXECUTABLE_TYPE eEditorCurrentVersion, const char* lpcstrPlatformRuntimeVersion) const { - return eEditorCurrentVersion == EDITOR_EXECUTABLE_TYPE::EDITOR_SKYRIM_SE_1_6_1130; + return eEditorCurrentVersion >= EDITOR_EXECUTABLE_TYPE::EDITOR_SKYRIM_SE_1_6_1130; } bool MiscMessagesPatch::Activate(const Relocator* lpRelocator, diff --git a/Creation Kit Platform Extended Core/Patches/SSE/RemoveUselessMessages.cpp b/Creation Kit Platform Extended Core/Patches/SSE/RemoveUselessMessages.cpp index 53ee7d1f..91a5edb5 100644 --- a/Creation Kit Platform Extended Core/Patches/SSE/RemoveUselessMessages.cpp +++ b/Creation Kit Platform Extended Core/Patches/SSE/RemoveUselessMessages.cpp @@ -90,6 +90,9 @@ namespace CreationKitPlatformExtended // Disable "Unable to initialize perforce, check your logs for more information." lpRelocator->PatchNop(lpRelocationDatabaseItem->At(12), 6); + for (uint32_t i = 13; i < lpRelocationDatabaseItem->Count(); i++) + lpRelocator->PatchNop(_RELDATA_RAV(i), 5); + return true; } diff --git a/Creation Kit Platform Extended Core/Patches/UIThemePatch.cpp b/Creation Kit Platform Extended Core/Patches/UIThemePatch.cpp index ec4ba1bc..fa88f846 100644 --- a/Creation Kit Platform Extended Core/Patches/UIThemePatch.cpp +++ b/Creation Kit Platform Extended Core/Patches/UIThemePatch.cpp @@ -145,14 +145,15 @@ namespace CreationKitPlatformExtended { // Main class Creation Kit "Creation Kit", - "Creation Kit Skyrim Special Edition [v1.5.3]", + //"Creation Kit Skyrim Special Edition [v1.5.3]", "Creation Kit Skyrim Special Edition [v1.5.73]", - "Creation Kit Skyrim Special Edition [v1.6.438]", + //"Creation Kit Skyrim Special Edition [v1.6.438]", "Creation Kit Skyrim Special Edition [v1.6.1130]", + "Creation Kit Skyrim Special Edition [v1.6.1378.1]", "Creation Kit Fallout 4 [v1.10.162.0]", - "Creation Kit Fallout 4 [v1.10.943.1]", + //"Creation Kit Fallout 4 [v1.10.943.1]", "Creation Kit Fallout 4 [v1.10.982.3]", - "Creation Kit Starfield [v1.12.32.0]", // Qt5 makes it not valid + //"Creation Kit Starfield [v1.12.32.0]", // Qt5 makes it not valid // Classes CK 2.0 "MAINMENU", "CicMarshalWndClass", diff --git a/Creation Kit Platform Extended Core/Patches/Windows/SSE/BNetUploadWindow.cpp b/Creation Kit Platform Extended Core/Patches/Windows/SSE/BNetUploadWindow.cpp index 0eb50a58..152916b5 100644 --- a/Creation Kit Platform Extended Core/Patches/Windows/SSE/BNetUploadWindow.cpp +++ b/Creation Kit Platform Extended Core/Patches/Windows/SSE/BNetUploadWindow.cpp @@ -68,8 +68,8 @@ namespace CreationKitPlatformExtended bool BNetUploadWindow::QueryFromPlatform(EDITOR_EXECUTABLE_TYPE eEditorCurrentVersion, const char* lpcstrPlatformRuntimeVersion) const { - // Upload for the editor only version CK 1.6.1130 - return eEditorCurrentVersion == EDITOR_SKYRIM_SE_1_6_1130; + // Upload for the editor only version CK 1.6.1130 or newer + return eEditorCurrentVersion >= EDITOR_SKYRIM_SE_1_6_1130; } bool BNetUploadWindow::Activate(const Relocator* lpRelocator, diff --git a/Creation Kit Platform Extended Core/Version/build_version.txt b/Creation Kit Platform Extended Core/Version/build_version.txt index 6cd5b003..d25175b8 100644 Binary files a/Creation Kit Platform Extended Core/Version/build_version.txt and b/Creation Kit Platform Extended Core/Version/build_version.txt differ diff --git a/Creation Kit Platform Extended Core/Version/resource_version2.h b/Creation Kit Platform Extended Core/Version/resource_version2.h index 77ea8baa..716e616e 100644 Binary files a/Creation Kit Platform Extended Core/Version/resource_version2.h and b/Creation Kit Platform Extended Core/Version/resource_version2.h differ diff --git a/Database/SSE/1_6_1378_1/AddChangeRef.relb b/Database/SSE/1_6_1378_1/AddChangeRef.relb new file mode 100644 index 00000000..623ede3f --- /dev/null +++ b/Database/SSE/1_6_1378_1/AddChangeRef.relb @@ -0,0 +1,6 @@ +Add Change Ref +1 +extended +128FE65 130 FF15????????488B4C2458E8????????83F82475??488D05????????488944242041B9E39E000041B800040000BAFFFFFFFF488B442440488B4818FF15???????? +1C12610 128 488954241048894C24084883EC3848837C2448000F84????????488B4C2440E8????????483B4424480F84????????41B00133D2488B4C2440E8????????488B +129025D 128 FF15????????488B4C2458E8????????83F82475??4533C0BAE39E0000488B442440488B4818FF15????????488B4C2458E8????????8BC8E8????????0FB6C0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/AllowMultipleWindowAndMaster.relb b/Database/SSE/1_6_1378_1/AllowMultipleWindowAndMaster.relb new file mode 100644 index 00000000..4972ff6d --- /dev/null +++ b/Database/SSE/1_6_1378_1/AllowMultipleWindowAndMaster.relb @@ -0,0 +1,5 @@ +Allow Multiple Window And Master +1 +extended +1620CCA 0 0FB644243085C075??488B4C2468E8????????-2D +13D529B 128 74??488B8C24A8010000FF15????????E8????????E8????????48898424B0010000488B8424B0010000488B00488B8C24B0010000FF5010FF15????????C784 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/AllowPlayerKnowsCondition.relb b/Database/SSE/1_6_1378_1/AllowPlayerKnowsCondition.relb new file mode 100644 index 00000000..19a95f73 --- /dev/null +++ b/Database/SSE/1_6_1378_1/AllowPlayerKnowsCondition.relb @@ -0,0 +1,5 @@ +Allow PlayerKnows Condition +1 +extended +1465190 128 48894C24084883EC4848C74424380000000048C74424300000000048C74424280000000048C7442420000000004533C941B001B212488B4C2450E8????????48 +1464E30 130 44884C242044884424188854241048894C24084881ECC800000048C7842490000000FEFFFFFF4883BC24D0000000000F84????????0FB68424E000000085C074?? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/AllowSaveESMandMasterESP.relb b/Database/SSE/1_6_1378_1/AllowSaveESMandMasterESP.relb new file mode 100644 index 00000000..54cdb871 --- /dev/null +++ b/Database/SSE/1_6_1378_1/AllowSaveESMandMasterESP.relb @@ -0,0 +1,15 @@ +Allow Save ESM and Master ESP +1 +extended +1650C50 0 E8????????488B4424604883B8D00400000074??488B442460488B-25 +1650CE0 0 v0_0D????????41B001BA64000000488D8C2488000000E8????????-22 +164A8C0 122 48894C24084883EC28488B4C2430E8????????4885C074??488B4C2430E8????????488BC8E8????????EB??488B4424300FB680780400004883C428C3 +1648B80 0 4C8D0D????????41B001BA64000000488D4D48E8????????-27 +16493E0 0 4C8D0D????????41B001BA64000000488D8C24A8000000E8????????-20 +13B2124 0 33C0E9????????488B4C2428E8????????0FB6C085C074-C +162097E 116 75??488B4C2428E8????????0FB6C085C074??8B442420FFC089442420488B4C2430E8????????4889442430E9????????8B4424204883C448C3 +162438A 134 E8????????0FB6C085C075??488B4C2448E8????????0FB6C085C074??488B4C2448E8????????4C8BC84C8D05????????BA00020000488B8C24B0000000E8???????? +2FBF000 0 +1466BA0 128 4C894C24204488442418488954241048894C24084881EC98000000488D05????????48898424800000004883BC24A80000000074??488B8424A8000000488984 +163B749 132 E8????????0FB6C085C074??488B442440488B00488B08E8????????4889442420488B4C2440488B4908488B09E8????????488B4C2420488BD1488BC8E8???????? +14662B0 132 4C894C24204C89442418488954241048894C24084881EC680500004883BC24B00500000074??83BC24B80500000074??4883BC24780500000075??32C0E9???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/AlteredFormListAndReferenceMap.relb b/Database/SSE/1_6_1378_1/AlteredFormListAndReferenceMap.relb new file mode 100644 index 00000000..6c6a25ea --- /dev/null +++ b/Database/SSE/1_6_1378_1/AlteredFormListAndReferenceMap.relb @@ -0,0 +1,22 @@ +Altered Form List And Reference Map +1 +extended +169C980 86 894C24084883EC5848C7442440FEFFFFFF48C744242800000000488D15????????488D4C2420E8???????? +16AAC90 0 +1368CB0 0 +144E540 0 +1642CD0 0 +1483250 0 +11D45F0 0 +13656F0 0 +16A48F0 0 +16A4D30 128 8854241048894C24084883EC5848C7442440FEFFFFFF48C7442420000000004C8D442420488B542460488B0D????????E8????????0FB6C085C074??48837C24 +16A4DF0 128 48894C24084883EC4833D2488B4C2450E8????????488944242048837C24200074??488B542450488B0D????????E8????????488B4424204889442430488B44 +144FF10 0 +16A4ABE 0 E8????????488B05????????4889842480000000488B-2A +16A4C7F 0 +1621708 0 +169D862 128 E8????????488B8424800000008B401083C802488B8C2480000000894110488B8C2480000000E8????????0FB6C085C075??E8????????488BC8E8????????0F +169D166 128 E8????????488B8C24B0000000E8????????488B8C24B0000000E8????????85C074??488B8424B00000004883C018488BD0488D4C2478E8????????48894424 +169D913 90 E8????????488B8424800000008B401083E0FD488B8C2480000000894110488D4C2458E8????????4883C478C3 +169D83D 128 E8????????0FB6C085C075??488B8424800000004889442440488D542440488B0D????????E8????????488B8424800000008B401083C802488B8C2480000000 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/BNetConvertUnicodeString.relb b/Database/SSE/1_6_1378_1/BNetConvertUnicodeString.relb new file mode 100644 index 00000000..782e378e --- /dev/null +++ b/Database/SSE/1_6_1378_1/BNetConvertUnicodeString.relb @@ -0,0 +1,4 @@ +BNet Convert Unicode String +1 +extended +293C210 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/BSArchiveManagerModded.relb b/Database/SSE/1_6_1378_1/BSArchiveManagerModded.relb new file mode 100644 index 00000000..a8251cf6 --- /dev/null +++ b/Database/SSE/1_6_1378_1/BSArchiveManagerModded.relb @@ -0,0 +1,8 @@ +BSArchiveManager Modded +1 +extended +262F970 128 4885C90F84????????55565741564157488D6C24C94881EC9000000048C745D7FEFFFFFF48899C24C80000004D8BF0488BDA488BF18039000F84????????C744 +2637410 128 44884C242048894C24085556574154415541564157488BEC4883EC7048C745F8FEFFFFFF48899C24C0000000498BF84C8BE2488BF133DB895DCC4889194883C1 +164A765 130 E8????????E8????????488BC8E8????????41B001488BD0488B4C2450E8????????488B4C2450E8????????0FB6C085C00F85????????488B4C2450E8???????? +141B896 0 +1648B80 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/BSShadowDirectionalLightFix.relb b/Database/SSE/1_6_1378_1/BSShadowDirectionalLightFix.relb new file mode 100644 index 00000000..72fd41d1 --- /dev/null +++ b/Database/SSE/1_6_1378_1/BSShadowDirectionalLightFix.relb @@ -0,0 +1,4 @@ +BSShadowDirectionalLight Fix +1 +extended +2CC7A60 128 4C8B8D800200004C8D45D0488D95A0010000488BCBE8????????3BB35801000072??4C8D05????????BAF4010000488D0D????????E8????????488B8B480100 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/BrokenTerrainEditDlg.relb b/Database/SSE/1_6_1378_1/BrokenTerrainEditDlg.relb new file mode 100644 index 00000000..8495f7de --- /dev/null +++ b/Database/SSE/1_6_1378_1/BrokenTerrainEditDlg.relb @@ -0,0 +1,5 @@ +Broken Terrain Edit Dlg +2 +extended +141FF28 128 48894108488D8C2460030000E8????????41B82000000033D2488D8C2488010000E8????????488B842450040000488B4008F30F104030E8????????89442464 +141FEB3 128 48894108488B842450040000488B4008488378500074??488B842450040000488B4008488B4850E8????????E9????????488B842450040000488B4008488378 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CellViewWindow.relb b/Database/SSE/1_6_1378_1/CellViewWindow.relb new file mode 100644 index 00000000..4c78da0a --- /dev/null +++ b/Database/SSE/1_6_1378_1/CellViewWindow.relb @@ -0,0 +1,13 @@ +Cell View Window +1 +extended +13A82E0 128 4C894C24204C894424188954241048894C240855B850100000E8????????482BE0488D6C244048C785B8060000FEFFFFFF488D8D88060000E8????????C74500 +39D7240 0 +1463957 0 +1C7EA2C 0 +13B02FE 0 +1387D20 128 44894C24204488442418488954241048894C24084881EC980000008B8424B800000089442420837C2420FF75??C7442420FFFFFF7F41B85800000033D2488D4C +13B09C0 128 488954241048894C24084883EC48C644242000488B4C2458E8????????4885C00F84????????B801000000486BC000488D0D????????0FBE040185C075??C644 +132824E 44 E8????????884424400FB64424404881C4D8000000C3 +12E0410 128 4C89442418488954241048894C24084883EC48C644242000488B4424500FB6809800000083F80175??488B442450C6809800000000C644242001E9????????48 +132822F 106 E8????????EB??4C8B8424F0000000488B9424E8000000488B8C24E0000000E8????????884424400FB64424404881C4D8000000C3 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CheckD3D11.relb b/Database/SSE/1_6_1378_1/CheckD3D11.relb new file mode 100644 index 00000000..f8b04033 --- /dev/null +++ b/Database/SSE/1_6_1378_1/CheckD3D11.relb @@ -0,0 +1,4 @@ +Check D3D11 +1 +extended +2C13E54 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/ChooseSoundFile.relb b/Database/SSE/1_6_1378_1/ChooseSoundFile.relb new file mode 100644 index 00000000..324c16d5 --- /dev/null +++ b/Database/SSE/1_6_1378_1/ChooseSoundFile.relb @@ -0,0 +1,6 @@ +Choose Sound File +1 +extended +19EBDC7 128 E8????????0FB6C085C00F84????????B801000000486BC0000FBE8404A001000085C00F84????????488D0D????????E8????????488D8C24A001000048894C +1A09E4C 128 E8????????0FB6C085C074??B801000000486BC0000FBE44047085C074??488D0D????????E8????????488D4C247048894C24204C8BC84C8D05????????BA04 +14662B0 132 4C894C24204C89442418488954241048894C24084881EC680500004883BC24B00500000074??83BC24B80500000074??4883BC24780500000075??32C0E9???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/Console.relb b/Database/SSE/1_6_1378_1/Console.relb new file mode 100644 index 00000000..86361b3d --- /dev/null +++ b/Database/SSE/1_6_1378_1/Console.relb @@ -0,0 +1,16 @@ +Console +1 +extended +12110D0 128 4889542410894C24084C894424184C894C24204883EC48C744242000000000E8????????894424248B4C2450E8????????488D4424604889442430E8???????? +2417E90 128 48895424104C894424184C894C2420534883EC30488D4424508BD94889442420E8????????4C8B4424484C8D4C24208BD3488BC84C8B1041FF52184883C4305B +1CB8C40 128 4889542410894C24084C894424184C894C24204883EC38C744242000000000488D44245048894424284C8B442428488B5424488B4C2440E8????????89442420 +11E76A0 128 48894C240848895424104C894424184C894C24204883EC38488D44244848894424204C8B442420488B542440B904000000E8????????48C74424200000000048 +134D360 128 48894C240848895424104C894424184C894C24204883EC48C744242000000000488D4424584889442430E8????????4889442428E8????????488B4C2428488B +19B9EA0 132 48894C240848895424104C894424184C894C24204883EC38488D4424484889442428B901000000FF15????????4C8B4C24284533C0488B542440488BC8E8???????? +242FDF0 128 48894C240848895424104C894424184C894C24205356574883EC30488BF9488D742458B901000000FF15????????488BD8E8????????4533C948897424204C8B +2417E20 128 48894C240848895424104C894424184C894C24204883EC38488D4424484889442420E8????????8B15????????4C8D4C242065488B0C25580000004C8B442440 +278CD70 128 48894C240848895424104C894424184C894C242053574883EC288B15????????65488B04255800000041B8E80A0000488B3CD0488BD14903F8B9010000004C8D +278AF90 0 FF15????????448BC048895C2430B8D34D621041F7E8B889888888448BD241C1FA-1F +278B0B0 0 +162135F 0 +2417AE0 126 4C894424184C894C242053574883EC38488D4424688BDA4889442420488BF9E8????????4C8B4424604C8D4C24208BD3488BCFE8????????4883C4385F5BC3 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashDump.relb b/Database/SSE/1_6_1378_1/CrashDump.relb new file mode 100644 index 00000000..7d0ae6a2 --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashDump.relb @@ -0,0 +1,7 @@ +Crash Dump +1 +extended +245BC90 0 +245EBCF 0 +2D5BD8B 0 +245EBEB 62 FF15????????488D0D????????E8????????488BCB4883C4205BE9???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashEditActorBehavior.relb b/Database/SSE/1_6_1378_1/CrashEditActorBehavior.relb new file mode 100644 index 00000000..2bf85c24 --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashEditActorBehavior.relb @@ -0,0 +1,4 @@ +Crash Edit Actor Behavior +1 +extended +11ED09E 128 8B942488120000899401D40300008B542470488B8C2470120000E8????????488D9424A8030000488B8C2470120000FF15????????4533C0488D9424A8030000 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashFlowChartX.relb b/Database/SSE/1_6_1378_1/CrashFlowChartX.relb new file mode 100644 index 00000000..cacbcfec --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashFlowChartX.relb @@ -0,0 +1,4 @@ +Crash FlowChartX +2 +extended +17C83B0 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashHairKS.relb b/Database/SSE/1_6_1378_1/CrashHairKS.relb new file mode 100644 index 00000000..227d246f --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashHairKS.relb @@ -0,0 +1,5 @@ +Crash HairKS +1 +extended +260BF77 0 +260C7B7 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashInventoryIterators.relb b/Database/SSE/1_6_1378_1/CrashInventoryIterators.relb new file mode 100644 index 00000000..46bb6d62 --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashInventoryIterators.relb @@ -0,0 +1,13 @@ +Crash Inventory Iterators +1 +extended +1BA3EB0 82 488954241048894C24084883EC7848C7442430FEFFFFFF488D542438488B8C2480000000E8???????? +1BA3FB0 82 488954241048894C24084883EC7848C7442430FEFFFFFF488D542438488B8C2480000000E8???????? +129FD40 128 488954241048894C24084883EC48C74424200000000048C74424300000000048C744242800000000488B442450488378280074??488B4424508B4004486BC010 +12A05D0 128 488954241048894C24084883EC48C744242000000000488B442450488378280074??488B4424508B4004486BC010488B4C2450480341284889442428EB??48C7 +129E8C0 114 488954241048894C24084883EC18488B442420488B4C2428488B0948390874??C7042401000000EB??C70424000000000FB604244883C418C3 +1312700 128 488954241048894C24084883EC28488B442430488B4C2438488B09488908488B442438488B10488B4C2430E8????????488B4C2430488901488B4424304883C4 +129F0D0 128 48894C24084883EC18C60424000FB6042485C075??488B442420488B004883C0104889442408488B442420488B4C2408488908488B442420488B400848394424 +1BAD600 128 488954241048894C24084883EC6848C7442450FEFFFFFF488B4C2478E8????????4885C074??C644242001EB??C6442420000FB644242085C00F84????????48 +1BAE6E0 128 488954241048894C24084881EC4806000048C7442438FEFFFFFF488B8C2458060000E8????????4885C00F84????????488B8C2458060000E8????????488BC8 +175A599 128 8B8C24980000008B40102BC1488B4C2450894110488B4C2460E8????????038424980000008BD0488B4C2460E8????????488B84249000000048894424788B84 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashMHDTMoreThan70.relb b/Database/SSE/1_6_1378_1/CrashMHDTMoreThan70.relb new file mode 100644 index 00000000..aaf39469 --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashMHDTMoreThan70.relb @@ -0,0 +1,7 @@ +Crash MHDT More Than 70 +1 +extended +1C6BCD6 128 E8????????48898424800000004883BC2480000000000F84????????0FB605????????85C074??488B8C2480000000E8????????0FB6C085C074??4C8D442460 +131CA30 108 44894424188954241048894C24084883EC388B5424508B4C2448E8????????894424208B542420488B4C2440E8????????4883C438C3 +1B9050E 136 E8????????488D54246C488D8C2490020000E8????????488BC8E8????????0FB6C085C00F84????????488D8C2490020000E8????????488D8C2430010000E8???????? +24B5170 128 488BC441564883EC5048C740D8FEFFFFFF48895808488968104889701848897820498BF1498BE84C8BF2488B79104885FF74??488B5F10488958E0C740E80100 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashMergeForms.relb b/Database/SSE/1_6_1378_1/CrashMergeForms.relb new file mode 100644 index 00000000..54be6248 --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashMergeForms.relb @@ -0,0 +1,15 @@ +Crash Merge Forms +1 +extended +1650CE0 120 48894C24084881ECD800000048C78424B0000000FEFFFFFFC7442420????00004C8D0D????????41B001BA64000000488D8C2488000000E8???????? +3A9A6C8 0 +1650C50 128 48894C24084883EC58C7442420????00004C8D0D????????41B001BA64000000488D4C2438E8????????488B4424604883B8D00400000074??488B442460488B +13D2280 128 488954241048894C24084883EC38C744242000000000488B4424404883C008488B542448488BC8E8????????8B44242083C80189442420488B4424484883C438 +13D2510 128 488954241048894C24084883EC38C744242000000000488B4424404883C008488B542448488BC8E8????????8B44242083C80189442420488B4424484883C438 +127CED0 114 488954241048894C24084883EC18488B442420488B4C2428488B0948390874??C7042401000000EB??C70424000000000FB604244883C418C3 +13D2630 122 4C894C24204C89442418488954241048894C24084883EC28488B4424304883C0084C8B4C24484C8B442440488B542438488BC8E8????????4883C428C3 +13D1D90 128 48894C24084883EC18C60424000FB6042485C075??488B442420488B004883C018488B4C2420488901488B442420488B4C2420488B490848390873??488B4424 +1241EA0 82 488954241048894C24084883EC28488B4424304883C008488B542438488BC8E8????????4883C428C3 +169CC20 78 8954241048894C24084883EC28488B4424304883C0088B542438488BC8E8????????4883C428C3 +1BE8C90 48 48894C24084883EC28488B4C2430E8????????4883C428C3 +11D4B80 64 48894C24084883EC28E8????????488B542430488BC8E8????????4883C428C3 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashNullptrFaceGen.relb b/Database/SSE/1_6_1378_1/CrashNullptrFaceGen.relb new file mode 100644 index 00000000..e1cd9197 --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashNullptrFaceGen.relb @@ -0,0 +1,5 @@ +Crash Nullptr FaceGen +1 +extended +1D1378C 128 E8????????85C00F85????????488D4C2438E8????????488BC8E8????????4889442448488B4C24704883C110E8????????4883C020488B4C2448488BD1488B +1CF6D60 76 4C89442418488954241048894C24084883EC4848C7442430FEFFFFFF488D4C2428E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashSortFunction.relb b/Database/SSE/1_6_1378_1/CrashSortFunction.relb new file mode 100644 index 00000000..baf16428 --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashSortFunction.relb @@ -0,0 +1,4 @@ +Crash Sort Function +1 +extended +1635A10 0 488954241048894C24084883EC28488B4424304883C010488BC8E8????????83F80176??488B4424304883C010488BC8E8????????FFC8448BC84533C0488B54 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashTestRadius.relb b/Database/SSE/1_6_1378_1/CrashTestRadius.relb new file mode 100644 index 00000000..123eaa2d --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashTestRadius.relb @@ -0,0 +1,9 @@ +Crash Test Radius +1 +extended +1C25D51 128 E8????????B9A0000000E8????????48898424880000004883BC24880000000074??488B8C2488000000E8????????4889842490000000EB??48C78424900000 +1C25DD2 124 E8????????4533C00F57C9488D8C24B0000000E8????????488D9424B0000000488B4C2430E8????????B201488B4C2430E8????????4881C4D8000000C3 +1C25D44 128 E8????????488B542448488BC8E8????????B9A0000000E8????????48898424880000004883BC24880000000074??488B8C2488000000E8????????48898424 +1C25DC5 134 E8????????488B542448488BC8E8????????4533C00F57C9488D8C24B0000000E8????????488D9424B0000000488B4C2430E8????????B201488B4C2430E8???????? +2C570B0 128 40564883EC20488B717848895C243048896C2438488BEA48897C2440488BF94885D274??4C897424484584C075??488379180075??33DBEB??B30148B8000000 +1252690 128 488954241048894C24084883EC38488B442440488B4C244848390874??488B442440488B004889442420488B542448488B4C2440E8????????488B4C24404889 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashUploadBNetModWithArchive.relb b/Database/SSE/1_6_1378_1/CrashUploadBNetModWithArchive.relb new file mode 100644 index 00000000..919938ad --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashUploadBNetModWithArchive.relb @@ -0,0 +1,4 @@ +Crash Upload BNet Mod With Archive +1 +extended +126CB20 132 48894C24084881EC8802000048C7442438FEFFFFFFC644243000488B8C2490020000E8????????C6442420004533C941B800280000488BD0488D4C2440E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashUsingMore16NPCForFaceGen.relb b/Database/SSE/1_6_1378_1/CrashUsingMore16NPCForFaceGen.relb new file mode 100644 index 00000000..03ca470f --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashUsingMore16NPCForFaceGen.relb @@ -0,0 +1,5 @@ +Crash Using More 16 NPC For FaceGen +1 +extended +1496A80 62 48894C24084883EC28488B4424304883C008488BC8E8????????4883C428C3 +1D210E0 128 4C8D05????????BA40030000488D0D????????E8????????488B442468488B08E8????????C644243000C644242800C7442420030000004533C941B001488D54 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CrashafterMultipleMastersWarning.relb b/Database/SSE/1_6_1378_1/CrashafterMultipleMastersWarning.relb new file mode 100644 index 00000000..713b7fce --- /dev/null +++ b/Database/SSE/1_6_1378_1/CrashafterMultipleMastersWarning.relb @@ -0,0 +1,5 @@ +Crash after Multiple Masters Warning +1 +extended +1CCE3F9 128 E8????????488B8424900000004883B8800000000074??488B842490000000488B8080000000488B8C2490000000488B8980000000488B00F30F109424980000 +1CD16A0 128 48894C24084881ECD800000048C78424C0000000FEFFFFFF488B8424E0000000488B4858E8????????88442420488B8424E0000000488378600074??488B8424 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/CreationKitPlatformExtended_SSE_1_6_1378_1.database b/Database/SSE/1_6_1378_1/CreationKitPlatformExtended_SSE_1_6_1378_1.database new file mode 100644 index 00000000..68953f83 Binary files /dev/null and b/Database/SSE/1_6_1378_1/CreationKitPlatformExtended_SSE_1_6_1378_1.database differ diff --git a/Database/SSE/1_6_1378_1/D3D11Patch.relb b/Database/SSE/1_6_1378_1/D3D11Patch.relb new file mode 100644 index 00000000..580d6286 --- /dev/null +++ b/Database/SSE/1_6_1378_1/D3D11Patch.relb @@ -0,0 +1,4 @@ +D3D11 Patch +1 +extended +0 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/DataWindow.relb b/Database/SSE/1_6_1378_1/DataWindow.relb new file mode 100644 index 00000000..b95e291d --- /dev/null +++ b/Database/SSE/1_6_1378_1/DataWindow.relb @@ -0,0 +1,4 @@ +Data Window +1 +extended +13C9A40 128 4C894C24204C894424188954241048894C24084881EC180200008B84242802000089442438837C24380274??837C24384E74??817C24381001000074??817C24 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/Deferreddialogloading.relb b/Database/SSE/1_6_1378_1/Deferreddialogloading.relb new file mode 100644 index 00000000..5c581a46 --- /dev/null +++ b/Database/SSE/1_6_1378_1/Deferreddialogloading.relb @@ -0,0 +1,21 @@ +Deferred dialog loading +1 +extended +12A3CE0 128 488954241048894C24084883EC3849C7C10000FFFF4533C0BA01110000488B4C2448FF15????????C744242000000000EB??8B442420FFC089442420837C2420 +1463870 130 4488442418488954241048894C24084883EC3848837C24400074??440FB6442450488B542448488B4C2440E8????????E9????????48837C2448000F84???????? +13B00A0 112 488954241048894C24084883EC38488B542448488D4C2420E8????????488B4424404883C008488D542420488BC8E8????????4883C438C3 +2087B90 128 48894C24084883EC58BA19150000488B4C2460E8????????48894424404533C94533C0BA04100000488B4C2440FF15????????89442428C644242000C7442424 +2088010 128 48894C24084883EC68488B4C2470E8????????488D542450488BC8FF15????????488B4424708B40308B4C24582BC88BC1488B4C24702B41388944244C488B44 +2087CE0 132 48894C24084881EC6801000048C78424A0000000FEFFFFFFBA19150000488B8C2470010000E8????????4889442438488D9424A8000000488B4C2438FF15???????? +20883A0 128 48894C24084881EC98000000BA19150000488B8C24A0000000E8????????48894424284533C94533C0BA04100000488B4C2428FF15????????89442424C74424 +2088450 128 48894C24084881EC98000000BA19150000488B8C24A0000000E8????????48894424284533C94533C0BA04100000488B4C2428FF15????????89442424C74424 +2088500 62 48894C24084881ECE800000048C7442448FEFFFFFF488D4C2430E8???????? +2088250 56 48894C24084883EC6848C7442440FEFFFFFF488D4C2448E8???????? +208A080 130 4C894C24204C894424188954241048894C24084883EC38C744242000000000817C24481001000075??488B4C2440E8????????BA05000000488BC8FF15???????? +19692A0 110 4C894424188854241048894C24084883EC280FB6442438486BC018488B4C2430488D440168488B542440488BC8E8????????4883C428C3 +1387320 128 44884C24204C89442418488954241048894C24084883EC5848837C2460000F84????????0FB644247885C00F84????????48837C2468000F84????????488B4C +1387D20 128 44894C24204488442418488954241048894C24084881EC980000008B8424B800000089442420837C2420FF75??C7442420FFFFFF7F41B85800000033D2488D4C +12941F3 40 E8????????488B4C2450E8????????4883C448C3 +13A9EA4 128 E8????????486305????????4C8D0D????????4C8BC0BA30100000488B0D????????FF15????????4533C94533C0BA04100000488B0D????????FF15???????? +13B053C 56 E8????????89442420488D4C2428E8????????8B4424204883C448C3 +2087A30 128 4C894C24204C894424188954241048894C24084883EC48C7442420000000008B44245889442424837C2424050F84????????837C24244E0F84????????817C24 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/DisableAssertion.relb b/Database/SSE/1_6_1378_1/DisableAssertion.relb new file mode 100644 index 00000000..c3c1269c --- /dev/null +++ b/Database/SSE/1_6_1378_1/DisableAssertion.relb @@ -0,0 +1,5 @@ +Disable Assertion +2 +extended +2418019 128 E8????????4885DB74??4C8BCF488D4C24504C8BC3BA00040000E8????????488D4C2450FF15????????488D0D????????FF15????????0FB605????????84C0 +241828E 128 E8????????4885DB74??4C8B0F488D4C24404C8BC3BA00040000E8????????488D4C2440FF15????????488D0D????????FF15????????0FB605????????84C0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/EnableGameButtonToVC.relb b/Database/SSE/1_6_1378_1/EnableGameButtonToVC.relb new file mode 100644 index 00000000..513700bc --- /dev/null +++ b/Database/SSE/1_6_1378_1/EnableGameButtonToVC.relb @@ -0,0 +1,5 @@ +Enable Game Button To VC +1 +extended +146B979 128 74??488D0D????????E8????????0FB6C085C075??BA88180000488B8C24C0070000FF15????????33D2488BC8FF15????????BA88180000488B8C24C0070000 +146B98C 128 75??BA88180000488B8C24C0070000FF15????????33D2488BC8FF15????????BA88180000488B8C24C0070000FF15????????33D2488BC8FF15????????488B \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/EnableStateParentWorkaround.relb b/Database/SSE/1_6_1378_1/EnableStateParentWorkaround.relb new file mode 100644 index 00000000..d900ce60 --- /dev/null +++ b/Database/SSE/1_6_1378_1/EnableStateParentWorkaround.relb @@ -0,0 +1,8 @@ +Enable State Parent Workaround +1 +extended +1326BD3 78 E8????????488B4C2428E8????????4889442428EB??488D4C2430E8????????32C04883C468C3 +1BF2470 128 48894C24084883EC58488B442460488944242048C74424280000000048837C2420000F84????????48837C2428000F85????????488B442420488B00488B4C24 +12AC3C0 0 +12D1020 86 4488442418488954241048894C24084883EC6848C7442458FEFFFFFF488B542478488D4C2428E8???????? +1239870 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FaceGen.relb b/Database/SSE/1_6_1378_1/FaceGen.relb new file mode 100644 index 00000000..c37d7dc9 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FaceGen.relb @@ -0,0 +1,18 @@ +FaceGen +1 +extended +18C1D70 136 488954241048894C24084883EC4848C7442438FEFFFFFF488B4C2458E8????????0FB6C085C00F85????????488D0D????????E8????????33D2488D4C2420E8???????? +18E79F8 128 E8????????488B8C24C0030000E8????????25FFFFFF00894424204C8B4C24384C8D05????????BA04010000488D8C24A0020000E8????????41B9020000004C +18E7A4B 0 +18E7A70 128 4C89442418488954241048894C24084881EC8809000048C7842428010000FEFFFFFF488B8424A0090000488944247848837C24780075??33D2488B8C24900900 +2CA6F8B 128 000200008D570FC7859401000000020000488D0D????????48C785980100001C000000C785A0010000FFFFFFFF89BDA40100006689B5A8010000E8????????4C +2CA6F98 134 00020000488D0D????????48C785980100001C000000C785A0010000FFFFFFFF89BDA40100006689B5A8010000E8????????4C8D85B00100008D5728488D0D???????? +129D0B0 0 488954241048894C24084883EC48488B4C2458E8????????0FB6C085C00F84????????41B90200000049C7C0FFFFFFFFBA0C100000488B442450488B4810FF15???????? +18D846A 64 E8????????488B442460488B4C243848898880000000488D4C2428E8???????? +39D7480 0 +18D8930 128 48894C24084883EC38C64424200041B9040000004C8D05????????488D15????????488B0D????????FF15????????83F80675??C6442420010FB64424204883 +18D8A40 122 48894C24084883EC28488D15????????B902000000E8????????4533C94C8D05????????488D15????????488B0D????????FF15????????4883C428C3 +1388300 132 488954241048894C24084881EC9800000048C7442420000000004883BC24A00000000074??4883BC24A8000000FF74??41B85800000033D2488D4C2430E8???????? +18D8980 128 488954241048894C24084883EC5848837C2468000F84????????488B4C2468E8????????83F82B0F85????????488B442468488B00488B4C2468FF90E8010000 +15FB6E0 132 48894C24084883EC38488B4C2440E8????????4889442428488B4C2440E8????????4889442420488B4C2440E8????????4533C033D2488B0D????????E8???????? +2C0E730 128 48895C2408574883EC3048C744242000000000418BD9498BF84C8BD185D275??488B05????????4C8D4C24204C8D05????????488B4818488B01FF5048488B4C \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/Fileinuse.relb b/Database/SSE/1_6_1378_1/Fileinuse.relb new file mode 100644 index 00000000..d9723804 --- /dev/null +++ b/Database/SSE/1_6_1378_1/Fileinuse.relb @@ -0,0 +1,4 @@ +File in use +1 +extended +1648071 0 BAF4000000488B0D????????FF15????????-7 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixATXTparamssections.relb b/Database/SSE/1_6_1378_1/FixATXTparamssections.relb new file mode 100644 index 00000000..5f271019 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixATXTparamssections.relb @@ -0,0 +1,4 @@ +Fix ATXT params sections +1 +extended +1B6C54B 130 66898CC4000500008B442444FFC089442444EB??C644243C0033C085C075??0FB644243C85C075??4533C0BA1C0E0000488D0D????????E8????????E9???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixActorDlg.relb b/Database/SSE/1_6_1378_1/FixActorDlg.relb new file mode 100644 index 00000000..a84d7e4d --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixActorDlg.relb @@ -0,0 +1,4 @@ +Fix Actor Dlg +1 +extended +11ED0A1 128 88120000899401D40300008B542470488B8C2470120000E8????????488D9424A8030000488B8C2470120000FF15????????4533C0488D9424A8030000488B8C \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixBGSEntryPointFunctionDataTwoValue.relb b/Database/SSE/1_6_1378_1/FixBGSEntryPointFunctionDataTwoValue.relb new file mode 100644 index 00000000..d1240bf9 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixBGSEntryPointFunctionDataTwoValue.relb @@ -0,0 +1,5 @@ +Fix BGSEntryPointFunctionDataTwoValue +1 +extended +17D8B14 128 E8????????B904000000486BC903488D15????????488944242049C7C1FFFFFFFF41B8580100008B140A488B4C2458FF15????????89442438837C2438FF75?? +149BE90 128 894C24084883EC3848C744242000000000837C2440007C??817C2440A40000007D??E8????????48634C2440488B44C8084889442420488B4424204883C438C3 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixBrightLightColor.relb b/Database/SSE/1_6_1378_1/FixBrightLightColor.relb new file mode 100644 index 00000000..8d42ac40 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixBrightLightColor.relb @@ -0,0 +1,5 @@ +Fix Bright Light Color +1 +extended +1415445 128 E8????????E9????????488D0D????????E8????????0FB6C085C074??C784248800000005000000EB??C784248800000000000000BA0C040000488B8C24A001 +145CC60 128 8954241048894C24084883EC588B4424684825FF0000000FB6C0894424300FB7442468C1F80848984825FF0000000FB6C0894424348B442468C1E8108BC04825 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixCellViewObjectList.relb b/Database/SSE/1_6_1378_1/FixCellViewObjectList.relb new file mode 100644 index 00000000..17c2365d --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixCellViewObjectList.relb @@ -0,0 +1,7 @@ +Fix CellView Object List +1 +extended +1388E90 128 44884424188954241048894C24084881ECE80000000FB684240001000085C075??C744243002000000C744242C000000004C8D4C242049C7C0FFFFFFFFBA2B10 +1388DD0 128 4488442418488954241048894C24084881ECB80000000FB68424D000000085C075??C744246002000000C744245C000000004C8D4C245049C7C0FFFFFFFFBA2B +1388F60 128 488954241048894C24084881ECB8000000C744242801000000488B8424C800000048894424384C8D4C242849C7C0FFFFFFFFBA0D100000488B8C24C0000000FF +1327D20 128 4C89442418488954241048894C24084881ECD800000048C78424C8000000FEFFFFFFC644244000488B8424E0000000C6809B00000000488B8424E00000004805 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixClassDlg.relb b/Database/SSE/1_6_1378_1/FixClassDlg.relb new file mode 100644 index 00000000..f99c614a --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixClassDlg.relb @@ -0,0 +1,5 @@ +Fix Class Dlg +1 +extended +2FF5E18 0 +1892080 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixCrashDuplicateForm.relb b/Database/SSE/1_6_1378_1/FixCrashDuplicateForm.relb new file mode 100644 index 00000000..79734e9b --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixCrashDuplicateForm.relb @@ -0,0 +1,4 @@ +Fix Crash Duplicate Form +1 +extended +169C69E 128 FF90E80100004889442440488D15????????488B4C2440E8????????4885C074??C684248801000000C7442438FFFFFFFFC644243000488B4C2440E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixCrashInArmorAddon.relb b/Database/SSE/1_6_1378_1/FixCrashInArmorAddon.relb new file mode 100644 index 00000000..5e08ee27 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixCrashInArmorAddon.relb @@ -0,0 +1,7 @@ +Fix Crash In Armor Addon +1 +extended +1ACA2B8 128 48C7442420000000004533C941B890010000BAE1070000488B8C2458010000FF15????????89442434488D442440488944242041B94000000041B891010000BA +FB1F33 0 +1ACA030 128 488954241048894C24084881EC48010000488B942458010000488B8C2450010000E8????????4533C94533C0BA93150000488B8C2458010000FF15????????44 +1ACBBA0 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixCrashLightingShader.relb b/Database/SSE/1_6_1378_1/FixCrashLightingShader.relb new file mode 100644 index 00000000..df1e0f9c --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixCrashLightingShader.relb @@ -0,0 +1,4 @@ +Fix Crash Lighting Shader +1 +extended +2CD6685 134 F30F1093AC000000F30F108BA8000000F30F1083A40000008B83A0000000F30F114C9108F30F1154910CE9????????488B93A00000004C8BC3B908000000E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixCrashMakeXYZCircles.relb b/Database/SSE/1_6_1378_1/FixCrashMakeXYZCircles.relb new file mode 100644 index 00000000..e7627458 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixCrashMakeXYZCircles.relb @@ -0,0 +1,4 @@ +Fix Crash MakeXYZCircles +1 +extended +27B65C7 128 41FF929800000080BC240001000000488BF00F287C24600F287424704C8BBC24880000004C8BAC24900000004C8BA42498000000488BAC24B000000074??488B \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixCrashPluginTXT.relb b/Database/SSE/1_6_1378_1/FixCrashPluginTXT.relb new file mode 100644 index 00000000..bafd5e04 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixCrashPluginTXT.relb @@ -0,0 +1,4 @@ +Fix Crash PluginTXT +1 +extended +2616D36 128 FF15????????488B8DB00200004885C90F84????????FF15????????85C00F85????????48BB01040000080000004C8B85B0020000BA04010000488D4C2430FF \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixCrashTabControl.relb b/Database/SSE/1_6_1378_1/FixCrashTabControl.relb new file mode 100644 index 00000000..870e4bc4 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixCrashTabControl.relb @@ -0,0 +1,4 @@ +Fix Crash TabControl +1 +extended +1389E20 128 8954241048894C24084883EC5848634424684C8D4C24204C8BC0BA05130000488B4C2460FF15????????4885C075??EB??48634424684533C94C8BC0BA081300 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixDataDlgwithPluginTXT.relb b/Database/SSE/1_6_1378_1/FixDataDlgwithPluginTXT.relb new file mode 100644 index 00000000..b5c0b82f --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixDataDlgwithPluginTXT.relb @@ -0,0 +1,5 @@ +Fix Data Dlg with PluginTXT +1 +extended +2796440 44 4C8BC1BA04010000488D0D????????48FF25???????? +53A8D90 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixDialogueBranch.relb b/Database/SSE/1_6_1378_1/FixDialogueBranch.relb new file mode 100644 index 00000000..18ec6160 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixDialogueBranch.relb @@ -0,0 +1,4 @@ +Fix Dialogue Branch +1 +extended +17BE0BC 128 4C8D8C24800000004C8BC0488D15????????488D4C2460E8????????488D4C2460E8????????4889442450BA030A0000488B8C24D8000000FF15????????41B1 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixFormIDsInLoadFile.relb b/Database/SSE/1_6_1378_1/FixFormIDsInLoadFile.relb new file mode 100644 index 00000000..201ba9a9 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixFormIDsInLoadFile.relb @@ -0,0 +1,11 @@ +Fix FormIDs In Load File +1 +extended +1589056 128 488D8C24F0000000E8????????8B8C24F0000000E8????????48898424E00200004883BC24E00200000074??488B8C24E0020000E8????????83F86874??448B +2FB17E0 0 +169C980 86 894C24084883EC5848C7442440FEFFFFFF48C744242800000000488D15????????488D4C2420E8???????? +1AF8DB0 88 4C89442418488954241048894C24084883EC284C8B442430488B542440488B4C2438E8????????4883C428C3 +1C67BDF 128 E8????????0FB6C085C075??488B8C24F0000000E8????????8944246C488B8C24F0000000488B0948898C24A8000000488B8C24F0000000488B9424A8000000 +1589045 128 E8????????898424F0000000488B542450488D8C24F0000000E8????????8B8C24F0000000E8????????48898424E00200004883BC24E00200000074??488B8C +1C67AAE 128 BAFFFFFFFF488B8C24F0000000E8????????488BD0488D4C2430E8????????8B4C2430E8????????48898424800000004883BC24800000000074??488B8C2480 +1B0A6F3 128 488D4C2454E8????????8B4C2454E8????????48898424900000004883BC2490000000000F84????????488B8C2490000000E8????????83F86875??488B8424 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixIconsScriptProp.relb b/Database/SSE/1_6_1378_1/FixIconsScriptProp.relb new file mode 100644 index 00000000..9a6799e0 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixIconsScriptProp.relb @@ -0,0 +1,4 @@ +Fix Icons Script Prop +1 +extended +20AB9C4 38 0185C00F8404020000488D4C2430E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixIntersectionTriangle.relb b/Database/SSE/1_6_1378_1/FixIntersectionTriangle.relb new file mode 100644 index 00000000..a67d64ea --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixIntersectionTriangle.relb @@ -0,0 +1,5 @@ +Fix Intersection Triangle +2 +extended +26B9070 134 405556574883EC3048C7442420FEFFFFFF48895C2458488BFA488BF18B49380FB746323BC873??488B4628488B1CC848895C2460488BC3488B0B483BCA0F84???????? +3358CF0 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixLoadMore32KAnimation.relb b/Database/SSE/1_6_1378_1/FixLoadMore32KAnimation.relb new file mode 100644 index 00000000..2cd54a26 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixLoadMore32KAnimation.relb @@ -0,0 +1,4 @@ +Fix Load More 32K Animation +1 +extended +234AAB3 32 BF8628010000660F6EC00F5BC0F30F59 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixMemoryLeakActorDlg.relb b/Database/SSE/1_6_1378_1/FixMemoryLeakActorDlg.relb new file mode 100644 index 00000000..4940a733 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixMemoryLeakActorDlg.relb @@ -0,0 +1,4 @@ +Fix Memory Leak ActorDlg +1 +extended +2CCCA7C 134 0F84????????3B7B1072??4C8D05????????BAF4010000488D0D????????E8????????488B0B4885C975??4C8D05????????BAF5010000488D0D????????E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixMovetotopic.relb b/Database/SSE/1_6_1378_1/FixMovetotopic.relb new file mode 100644 index 00000000..47cfc1f4 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixMovetotopic.relb @@ -0,0 +1,4 @@ +Fix Move to topic +1 +extended +196FA69 130 E8????????448BC84C8D05????????BAFF000000488B442450488B4830E8????????EB??488B442448488B00488B4C2448FF90E80100004C8BC84C8D05???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixMusicTrackForm.relb b/Database/SSE/1_6_1378_1/FixMusicTrackForm.relb new file mode 100644 index 00000000..58f9b6d2 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixMusicTrackForm.relb @@ -0,0 +1,4 @@ +Fix MusicTrack Form +1 +extended +19EB31C 136 E8????????483D0401000077??C644242001EB??C6442420000FB64424208844242333C085C075??0FB644242385C075??4C8D05????????BA60010000488D0D???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixObjectPalette.relb b/Database/SSE/1_6_1378_1/FixObjectPalette.relb new file mode 100644 index 00000000..d2c6dae4 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixObjectPalette.relb @@ -0,0 +1,6 @@ +Fix Object Palette +1 +extended +12A8C9E 134 E8????????BA2A0C0000488B8C2440130000E8????????E8????????488BC8E8????????0FB6C085C074??488D0D????????E8????????4885C074??488D0D???????? +146AA60 128 488954241048894C24084881EC8800000048C7442470FEFFFFFF488B8424980000008B10488B8C2490000000E8????????4885C074??33C0E9????????48C744 +14915A0 70 48894C2408488B44240883B8900000000374??488B442408C7809000000002000000C3 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixRaceDlg.relb b/Database/SSE/1_6_1378_1/FixRaceDlg.relb new file mode 100644 index 00000000..f938e11c --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixRaceDlg.relb @@ -0,0 +1,4 @@ +Fix Race Dlg +1 +extended +16D9CC3 0 75??C744244001000000EB??C7442440000000000FB6442440884424300FB64424304883C458C3 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixRemoteDesktop.relb b/Database/SSE/1_6_1378_1/FixRemoteDesktop.relb new file mode 100644 index 00000000..fc95be2a --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixRemoteDesktop.relb @@ -0,0 +1,4 @@ +Fix Remote Desktop +1 +extended +13D5460 130 74??41B9302000004C8D05????????488D15????????33C9FF15????????B201488D0D????????E8????????B201488D0D????????E8????????488D0D???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixRenderPass.relb b/Database/SSE/1_6_1378_1/FixRenderPass.relb new file mode 100644 index 00000000..58270e7e --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixRenderPass.relb @@ -0,0 +1,7 @@ +Fix RenderPass +1 +extended +2CB4EA0 116 40574883EC5048C7442430FEFFFFFF48895C24604889742468C7442420160100004C8D0D????????41B001BA1A000000488D4C2438E8???????? +2CB5070 0 +2CB4C60 128 48895C240848896C2410488974241848897C24204154415641574883EC20448B15????????4C8D25????????65488B0425580000004C8BF9B9D4370000418BF9 +2CB4DB0 136 4885C974??534883EC20448B0D????????488BD9448B05????????4181E1FF3F00004181E0FF3F0000418BD1412BD0453BC88D82004000000F42D085D275??E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixSelectedPackageData.relb b/Database/SSE/1_6_1378_1/FixSelectedPackageData.relb new file mode 100644 index 00000000..8fcf5f4a --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixSelectedPackageData.relb @@ -0,0 +1,4 @@ +Fix Selected Package Data +1 +extended +1884484 128 E8????????8BC04889442428EB??488B8C2460020000E8????????83F86775??C744242400000000EB??488B8C2460020000E8????????894424248B44242448 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixSpellDlg.relb b/Database/SSE/1_6_1378_1/FixSpellDlg.relb new file mode 100644 index 00000000..9e94c7f7 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixSpellDlg.relb @@ -0,0 +1,4 @@ +Fix Spell Dlg +1 +extended +146B500 128 4C894C24204C894424188954241048894C24084881ECB807000048C7842448020000FEFFFFFF8B8424C80700008944245C817C245C1001000077??817C245C10 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixUnableToFindVariable.relb b/Database/SSE/1_6_1378_1/FixUnableToFindVariable.relb new file mode 100644 index 00000000..640f4a3d --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixUnableToFindVariable.relb @@ -0,0 +1,4 @@ +Fix Unable To Find Variable +1 +extended +3008048 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixVTXTparamssections.relb b/Database/SSE/1_6_1378_1/FixVTXTparamssections.relb new file mode 100644 index 00000000..25f03f75 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixVTXTparamssections.relb @@ -0,0 +1,4 @@ +Fix VTXT params sections +1 +extended +268FF50 128 48896C24184889742420574883EC20448B54243833F60F293C248BFAF30F103D????????4C8BC9418BE883FA040F82????????8D42FC48895C2430C1E802FFC0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixVertexNormals.relb b/Database/SSE/1_6_1378_1/FixVertexNormals.relb new file mode 100644 index 00000000..e715878d --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixVertexNormals.relb @@ -0,0 +1,5 @@ +Fix Vertex Normals +1 +extended +1B5B067 136 75??488B8C2480000000E8????????88442430E9????????488B8C2480000000E8????????488944244048837C24400074??488B942480000000488B4C2440E8???????? +1B77856 128 41B88C0D0000488BD0488B8C2490000000E8????????EB??4883BC2498000000000F84????????488B8424800000008B403083E00285C074??488B8424B80000 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixWaterInOrthomode.relb b/Database/SSE/1_6_1378_1/FixWaterInOrthomode.relb new file mode 100644 index 00000000..6a98dfa8 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixWaterInOrthomode.relb @@ -0,0 +1,4 @@ +Fix Water In Ortho mode +1 +extended +12D9978 128 E8????????488B8424C00000004883C03C33D2488BC8E8????????488B8424C0000000488B8C24C800000048894858488B8424C0000000F30F1005????????F3 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FixWaterType.relb b/Database/SSE/1_6_1378_1/FixWaterType.relb new file mode 100644 index 00000000..28725e84 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FixWaterType.relb @@ -0,0 +1,8 @@ +Fix Water Type +1 +extended +12D8300 0 +1C48510 136 488954241048894C240856574881ECB8000000488B8424D00000004889442430488B8C24D0000000E8????????488944246048837C24600074??488B4C2460E8???????? +1C4EA16 0 +1C4EA03 58 74??488B442440488B90B0020000488B4C2440E8????????4883C438C3 +1C48548 128 74??488B4C2460E8????????4889442430488B4C2430E8????????89442438488B4C2430E8????????8B442438C1E8108BC04825FF0000000FB6C0F30F2AC8F3 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/Fixaspelleffectduration.relb b/Database/SSE/1_6_1378_1/Fixaspelleffectduration.relb new file mode 100644 index 00000000..b730f6f1 --- /dev/null +++ b/Database/SSE/1_6_1378_1/Fixaspelleffectduration.relb @@ -0,0 +1,5 @@ +Fix a spell effect duration +1 +extended +1C88E7D 130 BA0A000000488D4C2458E8????????33D2488D4C2458E8????????4C8BC0BA1A080000488B8C24A8000000FF15????????EB??33D2488D0D????????E8???????? +1C89024 130 BA0A000000488D4C2458E8????????33D2488D4C2458E8????????4C8BC0BAF4050000488B8C24A8000000FF15????????EB??33D2488D0D????????E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/FlowChartXLibrary.relb b/Database/SSE/1_6_1378_1/FlowChartXLibrary.relb new file mode 100644 index 00000000..0d1f9793 --- /dev/null +++ b/Database/SSE/1_6_1378_1/FlowChartXLibrary.relb @@ -0,0 +1,4 @@ +FlowChartX Library +2 +extended +1247681 130 FF15????????89442434837C2434007C??48837C24480074??C744243801000000EB??C7442438000000000FB6442438884424300FB644243085C00F84???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/INICacheData.relb b/Database/SSE/1_6_1378_1/INICacheData.relb new file mode 100644 index 00000000..64fdda58 --- /dev/null +++ b/Database/SSE/1_6_1378_1/INICacheData.relb @@ -0,0 +1,4 @@ +INI Cache Data +1 +extended +0 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/IgnoreGroundHeightTest.relb b/Database/SSE/1_6_1378_1/IgnoreGroundHeightTest.relb new file mode 100644 index 00000000..8cd4dc5b --- /dev/null +++ b/Database/SSE/1_6_1378_1/IgnoreGroundHeightTest.relb @@ -0,0 +1,4 @@ +Ignore Ground Height Test +1 +extended +1FF8A59 134 0F85????????488B8424B0110000488B00488B8C24B0110000488B09488B0041B800020000488D942450070000FF90F8000000488B8424B0110000488B08E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/Increasethemaximumnavmesh.relb b/Database/SSE/1_6_1378_1/Increasethemaximumnavmesh.relb new file mode 100644 index 00000000..b8602a1d --- /dev/null +++ b/Database/SSE/1_6_1378_1/Increasethemaximumnavmesh.relb @@ -0,0 +1,5 @@ +Increase the maximum navmesh +1 +extended +200F056 0 E8????????D2488D0D????????E8????????E8????????488B542470488B4C2460FF15???????? +200E088 136 E8????????0F2F05????????76??F30F10442420F30F1105????????F30F5A05????????0F28D866490F7ED94C8D05????????BA08000000488D0D????????E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/Load.DDSFile.relb b/Database/SSE/1_6_1378_1/Load.DDSFile.relb new file mode 100644 index 00000000..2a78d5df --- /dev/null +++ b/Database/SSE/1_6_1378_1/Load.DDSFile.relb @@ -0,0 +1,5 @@ +Load .DDS File +1 +extended +2C0DD79 74 E8????????488B5C24304885DB74??C7432001000000488B5C2430488D4C2438E8???????? +2C282C0 128 40534154415641574883EC684D8BF94D8BF0488BDA4C8BE14885C90F84????????4885D275??4D85C00F84????????4889AC2498000000488BCB4889B424A000 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/LoadOptimization.relb b/Database/SSE/1_6_1378_1/LoadOptimization.relb new file mode 100644 index 00000000..db5d599e --- /dev/null +++ b/Database/SSE/1_6_1378_1/LoadOptimization.relb @@ -0,0 +1,14 @@ +Load Optimization +2 +extended +3A99874 0 +3A99C30 0 +1371FB0 98 4883EC28488D0D????????E8????????488BC8E8????????4533C94533C0BA02800000488BC8FF15????????4883C428C3 +162153A 0 +1625173 128 E8????????8B05????????F3480F2AC08B05????????F3480F2AC8F30F5EC1F30F5905????????F30F2CC0894424588B4424483944245874??8B442458894424 +164FB1E 112 E8????????89442438837C24380074??488D4C2470E8????????488D15????????B90D000000E8????????488B8C24E01C0000E8???????? +164FBB9 128 E8????????89442438837C2438FE74??837C24380274??837C2438FD74??837C2438FC75??488D4C2470E8????????488D15????????B90D000000E8???????? +2629400 128 48895C2408574883EC20488BD9488BFA488B094885C975??488D5308488D8B48010000FF15????????33C94889034883F8FFBA060000000F45D189934C020000 +2656E60 128 40534883EC50488BDA4C8D44242033D2FF15????????85C074??F64424201075??8B44243C894424748B44244089442470488B442470488903B0014883C4505B +15B9790 128 488954241048894C24084883EC38488B442440488944242848837C24280074??488B442428488B542448488BC8E8????????0FB6C085C074??488B442428488B +147B190 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/MainWindow.relb b/Database/SSE/1_6_1378_1/MainWindow.relb new file mode 100644 index 00000000..5106e170 --- /dev/null +++ b/Database/SSE/1_6_1378_1/MainWindow.relb @@ -0,0 +1,8 @@ +Main Window +1 +extended +13D6F50 128 4C894C24204C894424188954241048894C24085657B8381F0000E8????????482BE048C7842480080000FEFFFFFFC744246C00000000C78424B0000000010000 +12E36E0 128 48894C24084883EC38488B0D????????E8????????488BC8E8????????0FB6C085C075??C644242001EB??C644242000488B0D????????E8????????0FB65424 +13B27C0 0 +13C9A40 128 4C894C24204C894424188954241048894C24084881EC180200008B84242802000089442438837C24380274??837C24384E74??817C24381001000074??817C24 +13B1A90 128 4C894424188954241048894C24084881EC88000000C74424200F000000C744242C00000000C74424300000000048C7442438FFFFFFFFC7442444FFFFFFFFC744 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/MemoryLeakInPeviewWindow.relb b/Database/SSE/1_6_1378_1/MemoryLeakInPeviewWindow.relb new file mode 100644 index 00000000..572a63c3 --- /dev/null +++ b/Database/SSE/1_6_1378_1/MemoryLeakInPeviewWindow.relb @@ -0,0 +1,8 @@ +Memory Leak In Peview Window +2 +extended +54583B0 0 +54563D0 0 +2C07110 128 48895C24084889742410574883EC204863DA498BF8488BF183FB747C??4C8D05????????BA3C000000488D0D????????E8????????85DB75??4C8D05???????? +2C071B0 128 48895C24084889742410574883EC204863DA498BF8488BF183FB0C7D??83FBFF75??4C8D05????????BA50000000488D0D????????E8????????0F1007488D83 +2C07230 128 48895C24084889742410574883EC204863DA498BF8488BF183FB017C??4C8D05????????BA63000000488D0D????????E8????????F20F10074C8D0C5BF2420F \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/MemoryLeakclassBSString.relb b/Database/SSE/1_6_1378_1/MemoryLeakclassBSString.relb new file mode 100644 index 00000000..18aa3d4a --- /dev/null +++ b/Database/SSE/1_6_1378_1/MemoryLeakclassBSString.relb @@ -0,0 +1,4 @@ +Memory Leak class BSString +1 +extended +11FB960 0 0344242C89442424488B4C2470E8????????-32 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/MemoryManager.relb b/Database/SSE/1_6_1378_1/MemoryManager.relb new file mode 100644 index 00000000..5785bfcf --- /dev/null +++ b/Database/SSE/1_6_1378_1/MemoryManager.relb @@ -0,0 +1,13 @@ +Memory Manager +1 +extended +241AE50 128 44884C242055565741544155415641574883EC5048C7442440FEFFFFFF48899C2498000000450FB6F1458BF8488BFA488BF1448B15????????65488B04255800 +241B380 128 48895424105556574883EC3048C7442420FEFFFFFF48895C2450410FB6D8488BF9448B0D????????65488B042558000000B9F80A00004A8B2CC84803E9FF4500 +241A5A0 128 48895C24084889742410574883EC20488BD9410FB6F0488B8938090000488BFA4885C974??E8????????84C074??488B8B38090000488BD7488B01488B5C2430 +24249B0 128 4C89442418488954241048894C2408535741554883EC60498BF8488BDA4C8BE9E8????????8BC0483BD872??33C04883C460415D5F5BC348896C245848897424 +2425070 128 4885D20F84????????53564883EC38488BDA488BF1483B51480F82????????483B51500F87????????488B42F048896C245048897C2458488D7AF04C89742460 +255C250 128 48894C2408565741564883EC3048C7442420FEFFFFFF48895C245848896C24688BDA488BF1488D05????????4889014C8D71084C89742460498BCEE8???????? +11DDBB0 128 48894C24084883EC6848C7442458FEFFFFFFB801000000488B4C247066898108050000488B4424700FB780080500004889442440B808000000488B4C244048F7 +241AAF0 68 40534883EC20488BD9488D0D????????E8????????488983380900004883C4205BC3 +2424780 110 48894C240857415641574883EC3048C7442420FEFFFFFF48895C245848896C24604889742468498BF1498BD8488BEA4C8BF1E8???????? +2425360 128 40534883EC2083797800488BD90F85????????4889742438488B714048833E000F8C????????48897C2440488DBEFFFF00004881E70000FFFF483B795873??48 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/Misc.relb b/Database/SSE/1_6_1378_1/Misc.relb new file mode 100644 index 00000000..695ea7aa --- /dev/null +++ b/Database/SSE/1_6_1378_1/Misc.relb @@ -0,0 +1,4 @@ +Misc +1 +extended +13A6190 128 8954241048894C24084883EC28C6042400488B4424304883B820010000000F84????????488B44243083B828010000000F84????????33D28B442438B9080000 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/MiscMessages.relb b/Database/SSE/1_6_1378_1/MiscMessages.relb new file mode 100644 index 00000000..46621ecd --- /dev/null +++ b/Database/SSE/1_6_1378_1/MiscMessages.relb @@ -0,0 +1,4 @@ +Misc Messages +1 +extended +1BE50B4 128 E8????????488B8C24C00D0000E8????????488BC8E8????????488944247048837C2470000F84????????B924000000E8????????48394424700F84???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/NavMeshInfoMap.relb b/Database/SSE/1_6_1378_1/NavMeshInfoMap.relb new file mode 100644 index 00000000..a1a8ce8e --- /dev/null +++ b/Database/SSE/1_6_1378_1/NavMeshInfoMap.relb @@ -0,0 +1,4 @@ +NavMesh Info Map +1 +extended +1DB7218 0 FF906801000090488D8C24A8000000E8????????90488D8C24C0000000E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/NavMeshPseudoDelete.relb b/Database/SSE/1_6_1378_1/NavMeshPseudoDelete.relb new file mode 100644 index 00000000..b9cfab89 --- /dev/null +++ b/Database/SSE/1_6_1378_1/NavMeshPseudoDelete.relb @@ -0,0 +1,12 @@ +NavMesh Pseudo Delete +1 +extended +131E940 0 +1D820E0 116 8954241048894C24084883EC388B44244889442420E8????????4C8D442420488D542448488BC8E8????????8B4C2420E8????????4883C438C3 +1D47580 134 668954241048894C24084881EC9800000048C7842488000000FEFFFFFFE8????????4885C074??E8????????33D2488BC8E8????????488B8C24A0000000E8???????? +1D4F50F 128 E8????????0FB7C08B8C24600100003BC80F85????????0FB605????????85C075??C644247C01EB??C644247C000FB644247C888424A300000033C085C075?? +1D4F6A6 128 E8????????0FB7C08B8C246C0100003BC80F85????????0FB605????????85C075??C644247D01EB??C644247D000FB644247D888424A400000033C085C075?? +1D4F840 128 E8????????0FB7C08B8C24780100003BC80F85????????0FB605????????85C075??C644247E01EB??C644247E000FB644247E888424AC00000033C085C075?? +1D500EB 128 E8????????66898424F00000008B9424F8000000488B8C2438020000E8????????668984240401000033C0668944245CEB??0FB744245C66FFC0668944245C0F +1D50240 128 E8????????0FB7C00FB78C24F00000003BC174??EB??0FB78424A8000000398424B40000000F84????????0FB605????????85C075??C684248200000001EB?? +1FD9D0C 0 E8????????488B10488D0D????????E8????????488944243048837C2430000F84-F \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/NavMeshWindow.relb b/Database/SSE/1_6_1378_1/NavMeshWindow.relb new file mode 100644 index 00000000..a3bca5e9 --- /dev/null +++ b/Database/SSE/1_6_1378_1/NavMeshWindow.relb @@ -0,0 +1,4 @@ +NavMesh Window +1 +extended +128DB70 128 4C894C24204C894424188954241048894C24084881ECD800000048C78424C8000000FEFFFFFF8B8424E800000089442450837C2450020F84????????837C2450 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/NiCollisionObjectClonedWarning.relb b/Database/SSE/1_6_1378_1/NiCollisionObjectClonedWarning.relb new file mode 100644 index 00000000..b813c520 --- /dev/null +++ b/Database/SSE/1_6_1378_1/NiCollisionObjectClonedWarning.relb @@ -0,0 +1,5 @@ +NiCollisionObject Cloned Warning +1 +extended +265BCB9 128 E8????????0FB79522010000488D8E10010000E8????????663B9D2201000073??660F1F4400008BCB488B8518010000488B0CC84885C974??488B01498BD6FF +26658E0 128 48895C24104889742418574883EC20498BF0488BFA488BD9E8????????8B83F40000008987F40000000F1043480F1147480F104B580F114F588B43688947688B \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/NiSkinInstanceFix.relb b/Database/SSE/1_6_1378_1/NiSkinInstanceFix.relb new file mode 100644 index 00000000..298cd48a --- /dev/null +++ b/Database/SSE/1_6_1378_1/NiSkinInstanceFix.relb @@ -0,0 +1,6 @@ +NiSkinInstance Fix +1 +extended +3253DC0 0 +3253F50 0 +2699360 128 48895C241048896C24184889742420574883EC20488BEA488BF9E8????????488BCDE8????????488B4F10BBFFFFFFFF483BC874??4885C074??F0FF40084889 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/ObjectWindow.relb b/Database/SSE/1_6_1378_1/ObjectWindow.relb new file mode 100644 index 00000000..41b5ec9d --- /dev/null +++ b/Database/SSE/1_6_1378_1/ObjectWindow.relb @@ -0,0 +1,5 @@ +Object Window +2 +extended +128F4C0 128 4C894C24204C894424188954241048894C24084881EC0806000048C78424A0020000FEFFFFFF48C744243000000000488B8C2410060000E8????????48898424 +138B621 128 FF15????????8B4424448B4C247803C88BC1894424388B44247C8944243C488D542438488B442430488B4810FF15????????8B4424788B8C24800000002BC88B \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/PapyrusEditorLimit.relb b/Database/SSE/1_6_1378_1/PapyrusEditorLimit.relb new file mode 100644 index 00000000..259e1f0b --- /dev/null +++ b/Database/SSE/1_6_1378_1/PapyrusEditorLimit.relb @@ -0,0 +1,4 @@ +Papyrus Editor Limit +1 +extended +208B8B9 136 FF15????????41B900000B004533C0BA45040000488B842440020000488B4818FF15????????4C8D05????????BAFCFFFFFF488B842440020000488B4818FF15???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/ProgressWindow.relb b/Database/SSE/1_6_1378_1/ProgressWindow.relb new file mode 100644 index 00000000..6546386e --- /dev/null +++ b/Database/SSE/1_6_1378_1/ProgressWindow.relb @@ -0,0 +1,6 @@ +Progress Window +1 +extended +11D29E0 128 4C894C24204C894424188954241048894C24084881EC9800000048C7842480000000FEFFFFFFC74424380000000048C74424300000000081BC24A80000001001 +141D760 98 4889542410894C24084883EC2848634424304C8B4C24384C8BC0BA01040000488B0D????????FF15????????4883C428C3 +16299FC 128 E8????????488B8C2480030000E8????????C78424A80000008A000000C644243100EB??0FB6442431FEC0884424310FB64424313B8424A800000073??0FB644 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/QuitHandler.relb b/Database/SSE/1_6_1378_1/QuitHandler.relb new file mode 100644 index 00000000..bf069da2 --- /dev/null +++ b/Database/SSE/1_6_1378_1/QuitHandler.relb @@ -0,0 +1,6 @@ +Quit Handler +1 +extended +13D6B4A 130 E8????????B201488BC8E8????????488B0D????????E8????????E8????????488BC8E8????????E8????????E8????????E8????????E8????????E8???????? +2D5AFA3 0 +2D5AF56 128 E8????????33D2B101E8????????8BC3EB??8BD8E8????????84C074??807C24200075??E8????????8BC3488B5C24404883C4305FC3B907000000E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/Re-enablefogrendering.relb b/Database/SSE/1_6_1378_1/Re-enablefogrendering.relb new file mode 100644 index 00000000..cc664c87 --- /dev/null +++ b/Database/SSE/1_6_1378_1/Re-enablefogrendering.relb @@ -0,0 +1,21 @@ +Re-enable fog rendering +2 +extended +2D31D3D 74 C6455C01C7442420330600004C8D0D????????41B001BA41000000488D4C2440E8???????? +2D31D91 128 0F1082500100000F11442450F20F108A60010000F20F114C24608B826801000089442468F30F1005????????C744246400504348F30F5E8260010000F30F1182 +2D31E36 128 E8????????C644242001BFFFFFFFFF448D4F04448BC733D2488D0D????????E8????????C644242001448D4F04448BC78D5702488D0D????????E8????????C6 +2D31FF6 0 +2D31FFB 0 +2D32060 0 +2D2E2C0 0 +2D2E160 0 +2CA1B55 128 74??488D0D????????E8????????4863F083FE0774??83FE0C7D??83FEFF75??4C8D05????????BA9B000000488D0D????????E8????????488B0D????????4C +139CFF2 0 +139D2D2 0 +139D557 96 E8????????0FB605????????85C00F84????????488B0D????????E8????????488D942480010000488BC8E8???????? +139D775 0 +2CAC6A0 128 48895C24084889742410574883EC20418BF8488BDA488BF14885C974??488BD1488D0D????????E8????????0FBAE70A73??41B101488D0D????????4533C033 +4DE13D8 0 +5769698 0 +57696A8 0 +2D31C20 128 488BC4565741564881EC8001000048C7442470FEFFFFFF48895810488968180F2970D80F2978C8440F2940B8440F2948A8440F295098440F295888440F29A078 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/Re-enablelandshadows.relb b/Database/SSE/1_6_1378_1/Re-enablelandshadows.relb new file mode 100644 index 00000000..d08bc656 --- /dev/null +++ b/Database/SSE/1_6_1378_1/Re-enablelandshadows.relb @@ -0,0 +1,5 @@ +Re-enable land shadows +1 +extended +139E0D4 128 0F84????????488B442468488B00488B4C2468FF5018488944247048837C2470000F84????????488B4C2470E8????????0FB6C085C00F85????????C7442450 +2CB83F4 128 74??89867401000033ED896C24204C8D8E780100004D8BC6488BD6488D0D????????E8????????488BF88B9E70010000488BCEE8????????4C8BC0448BCB8BD3 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/RefLinkGeometryHangWorkaround.relb b/Database/SSE/1_6_1378_1/RefLinkGeometryHangWorkaround.relb new file mode 100644 index 00000000..8e4ac21c --- /dev/null +++ b/Database/SSE/1_6_1378_1/RefLinkGeometryHangWorkaround.relb @@ -0,0 +1,5 @@ +Ref Link Geometry Hang Workaround +1 +extended +1C0E1B1 0 +1C0E1FC 128 E8????????0FB6542458488B4C2450E8????????0FB605????????85C074??0FB644245885C074??C644242101488B44245048894424304C8D442421488D5424 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/RemoveUselessMessages.relb b/Database/SSE/1_6_1378_1/RemoveUselessMessages.relb new file mode 100644 index 00000000..1bdc3c69 --- /dev/null +++ b/Database/SSE/1_6_1378_1/RemoveUselessMessages.relb @@ -0,0 +1,17 @@ +Remove Useless Messages +1 +extended +1981289 128 E8????????488B4424404883B8100100000074??488B442440488B9010010000488B4C2428E8????????0FB6C085C074??C744242401000000EB??C744242400 +1981EFE 0 E8????????394424780F833F0300008B542478488B4C2470E8????????48898424A8-1E +1980EC2 128 E8????????488B4424504883B8280100000074??488B442450488B9028010000488B4C2430E8????????0FB6C085C074??C744242801000000EB??C744242800 +15FBA20 128 48894C24084883EC38E8????????488BC8E8????????488944242048837C24200074??33D2488B4C2420E8????????488BD0488D0D????????E8????????BA01 +2CCF9B4 0 +2C28CCC 130 E8????????41BD58000000498BCE488BD7498BF74D85E474??4D8BC40F1F840000000000488BC2480FAFC14803E848D1E9480F44CE48D1EA480F44D64C2BC675?? +1B871B0 128 E8????????33C9E8????????E8????????898424340100008B8C2430010000E8????????83BC2434010000000F84????????488B8C24D0040000E8????????48 +266448E 128 74??4C8D05????????BA0B010000488D0D????????E8????????33DB85ED74??48897C24508BFB6666660F1F840000000000488B86A0000000803C070074??49 +2C1034E 128 0F84????????4C898DE0040000C785E804000000000000C685F00400000041B814050000488D95F0040000498BCEE8????????897424204C8D8DF00400004D8B +2D0A720 0 +2C10D01 128 0F84????????4C898DE0040000C785E804000000000000C685F00400000041B814050000488D95F0040000488BCEE8????????44896424204C8D8DF00400004C +2D0A950 0 +20BFDCE 0 +172F6ED 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/RenameCreationKitApp.relb b/Database/SSE/1_6_1378_1/RenameCreationKitApp.relb new file mode 100644 index 00000000..07cea6d5 --- /dev/null +++ b/Database/SSE/1_6_1378_1/RenameCreationKitApp.relb @@ -0,0 +1,4 @@ +Rename Creation Kit App +1 +extended +37BB6A0 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/RenderWindow.relb b/Database/SSE/1_6_1378_1/RenderWindow.relb new file mode 100644 index 00000000..507a978e --- /dev/null +++ b/Database/SSE/1_6_1378_1/RenderWindow.relb @@ -0,0 +1,6 @@ +Render Window +1 +extended +12CFFB0 130 4C894C24204C894424188954241048894C24084881EC28010000488B8C2430010000E8????????488944244048837C24400075??81BC24380100001001000074?? +12CFC08 0 +39D7F38 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/RenderWindow60FPS.relb b/Database/SSE/1_6_1378_1/RenderWindow60FPS.relb new file mode 100644 index 00000000..6792d142 --- /dev/null +++ b/Database/SSE/1_6_1378_1/RenderWindow60FPS.relb @@ -0,0 +1,5 @@ +Render Window 60 FPS +2 +extended +12D1FD8 130 32000000BA01000000488B842460010000488B4808FF15????????F30F1005????????F30F11442420F30F101D????????F30F1015????????F30F100D???????? +2C099AF 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/ReplaceBSPointerHandleAndManager.relb b/Database/SSE/1_6_1378_1/ReplaceBSPointerHandleAndManager.relb new file mode 100644 index 00000000..4079cfaf --- /dev/null +++ b/Database/SSE/1_6_1378_1/ReplaceBSPointerHandleAndManager.relb @@ -0,0 +1,30 @@ +Replace BSPointerHandle And Manager +1 +extended +12AEE20 34 48894C2408488B442408C70000000000C3 +12ADCA0 90 48894C2408488B4424088B000500001000250000F003488B4C24088B0981E1FFFF0FFC0BC1488B4C24088901C3 +12AEEF0 48 48894C2408488B4424088B000FBAE81A488B4C24088901C3 +1242130 36 48894C2408488B4424088B00250000F003C3 +12AED90 128 44894424188954241048894C24084883EC38817C2448FFFF0F0077??C644242001EB??C6442420000FB64424208844242133C085C075??0FB644242185C075?? +12AE570 36 48894C2408488B4424088B0025FFFF0F00C3 +1242420 36 48894C2408488B4424088B0025FFFF0F00C3 +1242110 36 48894C2408488B4424088B00250000F003C3 +1244E20 48 48894C2408488B4424088B000FBAF01A488B4C24088901C3 +1244DE0 82 8954241048894C2408488B4424088B00250000F0FF8B4C241081E1FFFF0F000BC1488B4C24088901C3 +1241DA0 88 48894C24084883EC18488B44242083380075??C7042401000000EB??C70424000000000FB604244883C418C3 +1241F80 128 8954241048894C24084883EC38488B4C2440E8????????85C074??488B4C2440E8????????3B44244875??C744242001000000EB??C7442420000000000FB644 +123ACB0 0 +123A450 0 488954241048894C24084883EC38488B442440488B4C244848390874??488B442440488B004889442420488B542448488B4C2440E8????????488B4C24404889 +1241F60 36 48894C2408488B4424088B002500000004C3 +12AEE80 128 8954241048894C24084883EC28488B4C2430E8????????488B4424308B40080FBAE80A488B4C24308941088B44243825FFFF1F00C1E00B488B4C24308B49080B +12423C0 34 48894C2408488B4424088B4008C1E80BC3 +13FBB50 0 41B80000000133D2488D0D????????E8????????-E +17542C0 0 4883EC4848C7442438FEFFFFFF488D15????????488D4C2430E8???????? +1753F10 0 4881EC9800000048C7842480000000FEFFFFFF488D15????????488D4C2478E8???????? +12AD7E0 128 488954241048894C24084883EC48488D4C2424E8????????48837C2458000F84????????488B4424584883C030488BC8E8????????0FB6C085C00F84???????? +12AD160 128 488954241048894C24084883EC6848C7442450FEFFFFFF488D4C2428E8????????48837C2478000F84????????488B542478488D4C2440E8????????488BD048 +123EA40 0 488B4C2450E8????????0FB6C085C00F85????????488D15????????488D4C2430E8????????-12 +12AD502 0 488B4C2450E8????????0FB6C085C00F85????????488D15????????488D4C2430E8????????-12 +1241260 128 488954241048894C24084883EC58488B4C2460E8????????0FB6C085C00F85????????488B4C2460E8????????89442424488B4C2460E8????????894424288B +12ADB30 128 488954241048894C24084883EC58488B4C2460E8????????0FB6C085C00F85????????488B4C2460E8????????89442424488B4C2460E8????????894424288B +14A9130 128 48894C24084883EC48C644242001488B4C2450E8????????0FB6C085C074??C644242000488B4C2450E8????????89442424488B4C2450E8????????8944242C \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/RuntimeOptimization.relb b/Database/SSE/1_6_1378_1/RuntimeOptimization.relb new file mode 100644 index 00000000..8ddd4b1e --- /dev/null +++ b/Database/SSE/1_6_1378_1/RuntimeOptimization.relb @@ -0,0 +1,8 @@ +Runtime Optimization +1 +extended +F49005 0 +FEC98A 0 +F6E26F 0 +146FFFF 134 E8????????488D542458488B8C24A0000000E8????????4889442448488B4424484889442450488B542450488D4C2428E8????????88442420488D4C2458E8???????? +16821DD 128 E8????????EB??488D4C2428E8????????488B8424800000004883C038488D542458488BC8E8????????4889442448488B4424484889442450488D542428488B \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/ShowReloadShadersAlways.relb b/Database/SSE/1_6_1378_1/ShowReloadShadersAlways.relb new file mode 100644 index 00000000..6ef76c1b --- /dev/null +++ b/Database/SSE/1_6_1378_1/ShowReloadShadersAlways.relb @@ -0,0 +1,4 @@ +Show Reload Shaders Always +1 +extended +1415460 132 74??C784248800000005000000EB??C784248800000000000000BA0C040000488B8C24A0010000FF15????????8B942488000000488BC8FF15????????E8???????? \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/SkipTopicInfoValidation.relb b/Database/SSE/1_6_1378_1/SkipTopicInfoValidation.relb new file mode 100644 index 00000000..f0ff1d10 --- /dev/null +++ b/Database/SSE/1_6_1378_1/SkipTopicInfoValidation.relb @@ -0,0 +1,4 @@ +Skip Topic Info Validation +1 +extended +198B800 128 4883EC38E8????????488BC8E8????????488D4C2420E8????????E8????????4C8D442420B24D488BC8E8????????E8????????488BC8E8????????4883C438 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/SpellEnableCastingAndDeliveryAlways.relb b/Database/SSE/1_6_1378_1/SpellEnableCastingAndDeliveryAlways.relb new file mode 100644 index 00000000..1fbb48b7 --- /dev/null +++ b/Database/SSE/1_6_1378_1/SpellEnableCastingAndDeliveryAlways.relb @@ -0,0 +1,5 @@ +Spell Enable Casting And Delivery Always +1 +extended +1CA6A30 102 FF15????????0FB64424208944242CBA18080000488B4C2430FF15????????8B4C242C8BD1488BC8FF15????????4883C448C3 +1CA6A58 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/StableSortForPerks.relb b/Database/SSE/1_6_1378_1/StableSortForPerks.relb new file mode 100644 index 00000000..aa4e85ef --- /dev/null +++ b/Database/SSE/1_6_1378_1/StableSortForPerks.relb @@ -0,0 +1,4 @@ +Stable Sort For Perks +1 +extended +180B649 98 E8????????488B542448488D4C2420E8????????488B4424404805A8000000488D542420488BC8E8????????4883C438C3 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/TESDataHandler.relb b/Database/SSE/1_6_1378_1/TESDataHandler.relb new file mode 100644 index 00000000..4650b84e --- /dev/null +++ b/Database/SSE/1_6_1378_1/TESDataHandler.relb @@ -0,0 +1,5 @@ +TESDataHandler +1 +extended +39C2AF8 0 +39D8438 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/TESModelTextureSwapCorrectlyLoad.relb b/Database/SSE/1_6_1378_1/TESModelTextureSwapCorrectlyLoad.relb new file mode 100644 index 00000000..cb5b6c5b --- /dev/null +++ b/Database/SSE/1_6_1378_1/TESModelTextureSwapCorrectlyLoad.relb @@ -0,0 +1,4 @@ +TESModelTextureSwap Correctly Load +1 +extended +16C9719 128 4D4F445374??EB??488B4D48E8????????8945048B45048BC84883C10F483BC877??48B9F0FFFFFFFFFFFF0F4883E1F0488BC1E8????????482BE0488D442430 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/TESParametersCTDA.relb b/Database/SSE/1_6_1378_1/TESParametersCTDA.relb new file mode 100644 index 00000000..4f8b4bcb --- /dev/null +++ b/Database/SSE/1_6_1378_1/TESParametersCTDA.relb @@ -0,0 +1,5 @@ +TESParameters CTDA +1 +extended +15696D4 128 E8????????EB??488D9424C0000000488D4C2430E8????????488D9424C4000000488D4C2430E8????????488D9424C8000000488D4C2430E8????????488D4C +15711B0 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/Threads.relb b/Database/SSE/1_6_1378_1/Threads.relb new file mode 100644 index 00000000..bb6c39ac --- /dev/null +++ b/Database/SSE/1_6_1378_1/Threads.relb @@ -0,0 +1,3 @@ +Threads +1 +0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/UI.relb b/Database/SSE/1_6_1378_1/UI.relb new file mode 100644 index 00000000..1a28482d --- /dev/null +++ b/Database/SSE/1_6_1378_1/UI.relb @@ -0,0 +1,3 @@ +UI +1 +0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/UIClassicTheme.relb b/Database/SSE/1_6_1378_1/UIClassicTheme.relb new file mode 100644 index 00000000..264dd225 --- /dev/null +++ b/Database/SSE/1_6_1378_1/UIClassicTheme.relb @@ -0,0 +1,3 @@ +UI Classic Theme +1 +0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/UIDarkTheme.relb b/Database/SSE/1_6_1378_1/UIDarkTheme.relb new file mode 100644 index 00000000..e853d0a1 --- /dev/null +++ b/Database/SSE/1_6_1378_1/UIDarkTheme.relb @@ -0,0 +1,3 @@ +UI Dark Theme +1 +0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/UIDarkThemeAdditional.relb b/Database/SSE/1_6_1378_1/UIDarkThemeAdditional.relb new file mode 100644 index 00000000..0002b76b --- /dev/null +++ b/Database/SSE/1_6_1378_1/UIDarkThemeAdditional.relb @@ -0,0 +1,15 @@ +UI Dark Theme Additional +1 +extended +138B910 108 44894C2420F30F115424188954241048894C24084883EC28448B4C2448F30F105424408B542438488B4C2430E8????????4883C428C3 +141D8F6 128 FF15????????488905????????48C744245800000000488B05????????488944245048C7442448D2160000488B05????????4889442440C74424381E000000C7 +141E186 0 +141DC04 0 +13D5EC4 128 FF15????????488905????????33D2488B0D????????E8????????488D9424A0000000488BC8E8????????0FB6C085C00F85????????BA02000000488D8C24A0 +141500D 136 E8????????488B0D????????E8????????488BC8E8????????F30F5905????????F3480F2CC08BC0448BC841B801000000BA05040000488B8C24D0000000FF15???????? +1413245 136 E8????????B101E8????????33C0E9????????E9????????488B4424488B4010898424BC00000083BC24BC000000F074??83BC24BC000000F40F84????????E9???????? +1566C38 128 C7405000FFFF00488B442470488B403848898424C0010000BAA00F0000488B8C24B8030000FF15????????488B9424C0010000488BC8E8????????48898424C8 +1566CA5 128 74??8B05????????89442464EB??C744246400000000488B4424708B4C2464894850488B8424D803000048C70002000000B001E9????????E9????????488B84 +1EBBF61 128 FF15????????488B8C24D000000048894168488B8C24D8000000E8????????4C8BC033D2488B8C24D8000000E8????????488B8C24D8000000E8????????4885 +2096D45 128 FF15????????48894424484C8B4C244841B801000000BA03100000488B4C2440FF15????????BAAE010000488B0D????????FF15????????488944245033D248 +20A9DD1 128 FF15????????48898424E80000004C8B8C24E800000041B801000000BA03100000488B4C2458FF15????????E8????????48898424C8000000488B8424800300 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/UIHotkeys.relb b/Database/SSE/1_6_1378_1/UIHotkeys.relb new file mode 100644 index 00000000..57e33279 --- /dev/null +++ b/Database/SSE/1_6_1378_1/UIHotkeys.relb @@ -0,0 +1,5 @@ +UI Hotkeys +1 +extended +FA265A 0 +12C8180 128 4C894C24204C89442418488954241048894C24084881EC8800000048C7442470FEFFFFFF48C7442428000000000FB68424C800000085C074??C7442438010000 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/UnEquipSound.relb b/Database/SSE/1_6_1378_1/UnEquipSound.relb new file mode 100644 index 00000000..aeb4b0da --- /dev/null +++ b/Database/SSE/1_6_1378_1/UnEquipSound.relb @@ -0,0 +1,4 @@ +UnEquip Sound +1 +extended +146BFA1 128 0F84????????E9????????488B8424D007000048C1E8104825FFFF00000FB7C085C00F85????????488B8C24C0070000E8????????488944243048837C243000 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/Unicode.relb b/Database/SSE/1_6_1378_1/Unicode.relb new file mode 100644 index 00000000..5d8b5082 --- /dev/null +++ b/Database/SSE/1_6_1378_1/Unicode.relb @@ -0,0 +1,14 @@ +Unicode +1 +extended +11D7EF0 0 +13E3491 128 E8????????0FB6C085C075??488D0D????????E8????????0FB6C085C075??41B9300000004C8D05????????488D15????????488B4C2450FF15????????C644 +13E3532 0 +1622CA5 78 E8????????E8????????488D0D????????E8????????0FB6C085C074??488D4C2430E8???????? +13CA79B 128 FF15????????EB??488B8C2478010000E8????????488BC8E8????????4C8BC0BA01040000488B8C2470010000FF15????????488B8C2478010000E8???????? +13CA7C8 0 +13CA7F3 0 +13CA559 128 FF15????????48894500488B450048FFC0488BC84883C10F483BC877??48B9F0FFFFFFFFFFFF0F4883E1F0488BC1E8????????482BE0488D4424304889450848 +13CA5BA 128 FF15????????488B4D38E8????????4533C0488B5508488BC8E8????????48C7442420000000004533C941B80E000000BA00040000488B4D30FF15????????48 +13CA5F3 128 FF15????????48894510488B451048FFC0488BC84883C10F483BC877??48B9F0FFFFFFFFFFFF0F4883E1F0488BC1E8????????482BE0488D4424304889451848 +13CA654 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/UpdateUIWhenFogToggled.relb b/Database/SSE/1_6_1378_1/UpdateUIWhenFogToggled.relb new file mode 100644 index 00000000..3535a4b5 --- /dev/null +++ b/Database/SSE/1_6_1378_1/UpdateUIWhenFogToggled.relb @@ -0,0 +1,5 @@ +Update UI When Fog Toggled +1 +extended +1CD6669 136 E8????????488D0D????????E8????????0FB6C085C074??C744242800000000C744242400000000EB??C74424287F969800C7442424FFE0F505488B4C2450E8???????? +135E6C0 76 8854241048894C24084883EC280FB6542438488B4C2430E8????????488B4424304883C428C3 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/UploadPS4moddedwithoutassets.relb b/Database/SSE/1_6_1378_1/UploadPS4moddedwithoutassets.relb new file mode 100644 index 00000000..35eff3a3 --- /dev/null +++ b/Database/SSE/1_6_1378_1/UploadPS4moddedwithoutassets.relb @@ -0,0 +1,6 @@ +Upload PS4 modded without assets +1 +extended +13B8CC0 128 4C894C24204C894424188954241048894C24084881EC6807000048C7842418010000FEFFFFFF8B84247807000089442428837C24280274??817C242810010000 +126D20A 0 +126C420 128 488954241048894C24084883EC5848C744243000000000488B4C2460E8????????0FB6C085C075??E8????????488BC8E8????????488944242848837C242800 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/VCBitArray.relb b/Database/SSE/1_6_1378_1/VCBitArray.relb new file mode 100644 index 00000000..cf62becd --- /dev/null +++ b/Database/SSE/1_6_1378_1/VCBitArray.relb @@ -0,0 +1,7 @@ +VCBitArray +1 +extended +13CE3A2 130 74??0FB644243185C074??0FB605????????85C074??488B0D????????E8????????0FB6C085C074??488B4C2470E8????????E9????????0FB644243085C074?? +13CE3AB 0 +13CE3B6 0 +13CE3C9 0 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/VersionControlMergeWorkaround.relb b/Database/SSE/1_6_1378_1/VersionControlMergeWorkaround.relb new file mode 100644 index 00000000..09f896a2 --- /dev/null +++ b/Database/SSE/1_6_1378_1/VersionControlMergeWorkaround.relb @@ -0,0 +1,5 @@ +Version Control Merge Workaround +1 +extended +143C259 128 76??448B442424488D15????????B90D000000E8????????C7442424020000008B44244025FFFFFF00894424408B442424C1E0188B4C24400BC88BC189442440 +143C2C5 100 75??4C8D05????????BAB6200000488D0D????????E8????????EB??8B44244025FFFFFF00894424408B4424404883C438C3 \ No newline at end of file diff --git a/Database/SSE/1_6_1378_1/WeaponCriticalEffect.relb b/Database/SSE/1_6_1378_1/WeaponCriticalEffect.relb new file mode 100644 index 00000000..220c0612 --- /dev/null +++ b/Database/SSE/1_6_1378_1/WeaponCriticalEffect.relb @@ -0,0 +1,9 @@ +Weapon Critical Effect +1 +extended +1AE8961 128 488B802802000048898424F0000000488B8424300100004883B8280200000074??488B842430010000488B8828020000E8????????8BC08BC8E8????????4889 +1AE8A21 128 48898828020000488B8424300100004883B8880200000074??488B842430010000488B8888020000E8????????4533C08BD0B9434E414DE8????????488B8C24 +1AECC90 128 488954241048894C2408488B442408488B4C24100FB74910668908488B442408488B4C2410F30F1001F30F114004488B442408488B4C24100FB6491288480848 +1AE7F1D 130 E8????????488B842420030000480520020000488D9424D8020000488BC8E8????????E9????????488D542438488B8C2428030000E8????????0FB6C085C074?? +1AEC1F0 0 488954241048894C24084883EC38488B4C2440E8????????0FB6C085C074??488B4C2440E8????????8BC04883F81873??488B4C2448E8????????41B8180000 +11DCC50 36 48894C2408488B4424080FB78098020000C3 \ No newline at end of file diff --git a/Resources/ckpe.ico b/Resources/ckpe.ico index 40b866cb..e1d727d5 100644 Binary files a/Resources/ckpe.ico and b/Resources/ckpe.ico differ diff --git a/Resources/ckpe_ico.png b/Resources/ckpe_ico.png index 5eeea46a..e737fec5 100644 Binary files a/Resources/ckpe_ico.png and b/Resources/ckpe_ico.png differ diff --git a/Resources/ckpe_ico.psd b/Resources/ckpe_ico.psd index 411d6294..b628bae9 100644 Binary files a/Resources/ckpe_ico.psd and b/Resources/ckpe_ico.psd differ diff --git a/Resources/logo.png b/Resources/logo.png index e3f5da79..f8076ab2 100644 Binary files a/Resources/logo.png and b/Resources/logo.png differ diff --git a/Resources/logo.psd b/Resources/logo.psd index 26f42477..55fd21f0 100644 Binary files a/Resources/logo.psd and b/Resources/logo.psd differ diff --git a/Stuffs/rtti_se_1_5_3.txt b/Stuffs/rtti_se_1_5_3.txt deleted file mode 100644 index 968c64c0..00000000 --- a/Stuffs/rtti_se_1_5_3.txt +++ /dev/null @@ -1,5623 +0,0 @@ -`struct BSTArrayBase::IAllocatorFunctor`: VTable [0x000000000304B778, 0x0000000000000000 offset, 4 functions] `.?AUIAllocatorFunctor@BSTArrayBase@@` -`class Dialog::BaseDialog`: VTable [0x000000000304B7C0, 0x0000000000000000 offset, 3 functions] `.?AVBaseDialog@Dialog@@` -`struct BSTArrayAllocatorFunctor`: VTable [0x000000000304B9C0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@VBSTArrayHeapAllocator@@@@` -`class Json::FastWriter`: VTable [0x000000000304BD58, 0x0000000000000000 offset, 2 functions] `.?AVFastWriter@Json@@` -`class IFormFactory`: VTable [0x000000000304C238, 0x0000000000000000 offset, 7 functions] `.?AVIFormFactory@@` -`class BGSLensFlare`: VTable [0x000000000304C2A0, 0x0000000000000000 offset, 101 functions] `.?AVBGSLensFlare@@` -`class ConcreteFormFactory`: VTable [0x000000000304C678, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSLensFlare@@$0IH@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000304C6C8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSLensFlare@@$0IH@$0GH@$05@@` -`class NiRefObject`: VTable [0x000000000304C950, 0x0000000000000000 offset, 2 functions] `.?AVNiRefObject@@` -`class BSLensFlareSpriteRenderData`: VTable [0x000000000304C970, 0x0000000000000000 offset, 3 functions] `.?AVBSLensFlareSpriteRenderData@@` -`class BGSLensFlareSprite`: VTable [0x000000000304C998, 0x0000000000000000 offset, 3 functions] `.?AVBGSLensFlareSprite@@` -`class BGSVolumetricLighting`: VTable [0x000000000304CB70, 0x0000000000000000 offset, 101 functions] `.?AVBGSVolumetricLighting@@` -`class ConcreteFormFactory`: VTable [0x000000000304CF48, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSVolumetricLighting@@$0IJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000304CF98, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSVolumetricLighting@@$0IJ@$0GJ@$05@@` -`class NiTMapBase >,char const * __ptr64,class ArchiveFileData * __ptr64>`: VTable [0x000000000304EB18, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEBDPEAVArchiveFileData@@@@@@PEBDPEAVArchiveFileData@@@@` -`class NiTMap`: VTable [0x000000000304EB68, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEBDPEAVArchiveFileData@@@@` -`class NiTStringTemplateMap,class ArchiveFileData * __ptr64>`: VTable [0x000000000304EBB8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTMap@PEBDPEAVArchiveFileData@@@@PEAVArchiveFileData@@@@` -`class NiTStringMap`: VTable [0x000000000304EC08, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringMap@PEAVArchiveFileData@@@@` -`class BSTCaseInsensitiveStringMap`: VTable [0x000000000304EC58, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCaseInsensitiveStringMap@PEAVArchiveFileData@@@@` -`class NiTMapBase >,char const * __ptr64,class ArchiveFileOwner * __ptr64>`: VTable [0x000000000304ECA8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEBDPEAVArchiveFileOwner@@@@@@PEBDPEAVArchiveFileOwner@@@@` -`class NiTMap`: VTable [0x000000000304ECF8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEBDPEAVArchiveFileOwner@@@@` -`class NiTStringTemplateMap,class ArchiveFileOwner * __ptr64>`: VTable [0x000000000304ED48, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTMap@PEBDPEAVArchiveFileOwner@@@@PEAVArchiveFileOwner@@@@` -`class NiTStringMap`: VTable [0x000000000304ED98, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringMap@PEAVArchiveFileOwner@@@@` -`class BSTCaseInsensitiveStringMap`: VTable [0x000000000304EDE8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCaseInsensitiveStringMap@PEAVArchiveFileOwner@@@@` -`class Setting`: VTable [0x0000000003050BA0, 0x0000000000000000 offset, 2 functions] `.?AVSetting@@` -`class SettingCollection`: VTable [0x0000000003050BC0, 0x0000000000000000 offset, 11 functions] `.?AV?$SettingCollection@VSetting@@@@` -`class SettingCollectionList`: VTable [0x0000000003050C38, 0x0000000000000000 offset, 11 functions] `.?AV?$SettingCollectionList@VSetting@@@@` -`class INISettingCollection`: VTable [0x0000000003050CB0, 0x0000000000000000 offset, 11 functions] `.?AVINISettingCollection@@` -`class SettingT`: VTable [0x0000000003050D28, 0x0000000000000000 offset, 2 functions] `.?AV?$SettingT@VINISettingCollection@@@@` -`class BGSArchiveBrowser`: VTable [0x0000000003050E18, 0x0000000000000000 offset, 2 functions] `.?AVBGSArchiveBrowser@@` -`class std::basic_filebuf >`: VTable [0x00000000030515D0, 0x0000000000000000 offset, 15 functions] `.?AV?$basic_filebuf@DU?$char_traits@D@std@@@std@@` -`class std::basic_ofstream >`: VTable [0x0000000003051670, 0x00000000000000A8 offset, 1 functions] `.?AV?$basic_ofstream@DU?$char_traits@D@std@@@std@@` -`class std::basic_ifstream >`: VTable [0x0000000003051738, 0x00000000000000B0 offset, 1 functions] `.?AV?$basic_ifstream@DU?$char_traits@D@std@@@std@@` -`class std::_Func_base`: VTable [0x0000000003051958, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@_NPEAUHWND__@@W4BNetPlatform@BSPlatform@@PEBDPEBD@std@@` -`class std::_Func_base`: VTable [0x00000000030519A0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@X$$V@std@@` -`class std::_Func_base`: VTable [0x00000000030519E8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XPEBD@std@@` -`struct BSTArrayAllocatorFunctor`: VTable [0x0000000003051DE0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@VBSScrapArrayAllocator@@@@` -`class std::_Func_impl,class std::allocator,void,char const * __ptr64>`: VTable [0x0000000003051E68, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XPEBD@std@@` -`class std::_Func_impl,class std::allocator,void>`: VTable [0x0000000003051EB0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@X$$V@std@@` -`class std::_Func_impl,class std::allocator,void,char const * __ptr64>`: VTable [0x0000000003051EF8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XPEBD@std@@` -`class std::_Func_impl,class std::allocator,void,char const * __ptr64>`: VTable [0x0000000003051F40, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XPEBD@std@@` -`class std::_Func_impl,bool,struct HWND__ * __ptr64,enum BSPlatform::BNetPlatform,char const * __ptr64,char const * __ptr64>`: VTable [0x0000000003051FC8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@P6A_NPEAUHWND__@@W4BNetPlatform@BSPlatform@@PEBD2@ZV?$allocator@H@std@@_NPEAU1@W423@PEBDPEBD@std@@` -`class std::_Func_impl,class std::allocator,void>`: VTable [0x0000000003052010, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@X$$V@std@@` -`class `anonymous namespace'::IAutomatedProcessRunner`: VTable [0x00000000030523A8, 0x0000000000000000 offset, 2 functions] `.?AVIAutomatedProcessRunner@?A0x90559f3f@@` -`class `anonymous namespace'::MasterfileOptimizer`: VTable [0x00000000030523C8, 0x0000000000000000 offset, 2 functions] `.?AVMasterfileOptimizer@?A0x90559f3f@@` -`class `anonymous namespace'::DLCMasterfileOptimizer`: VTable [0x00000000030523E8, 0x0000000000000000 offset, 2 functions] `.?AVDLCMasterfileOptimizer@?A0x90559f3f@@` -`class `anonymous namespace'::SEQExporter`: VTable [0x0000000003052408, 0x0000000000000000 offset, 2 functions] `.?AVSEQExporter@?A0x90559f3f@@` -`class `anonymous namespace'::ShaderListBuilder`: VTable [0x0000000003052428, 0x0000000000000000 offset, 2 functions] `.?AVShaderListBuilder@?A0x90559f3f@@` -`class `anonymous namespace'::DialogueExporter`: VTable [0x0000000003052448, 0x0000000000000000 offset, 2 functions] `.?AVDialogueExporter@?A0x90559f3f@@` -`class `anonymous namespace'::LipGenerator`: VTable [0x0000000003052468, 0x0000000000000000 offset, 2 functions] `.?AVLipGenerator@?A0x90559f3f@@` -`class `anonymous namespace'::FaceGenDataExporter`: VTable [0x0000000003052488, 0x0000000000000000 offset, 2 functions] `.?AVFaceGenDataExporter@?A0x90559f3f@@` -`class `anonymous namespace'::MasterfileTagifier`: VTable [0x00000000030524A8, 0x0000000000000000 offset, 2 functions] `.?AVMasterfileTagifier@?A0x90559f3f@@` -`class `anonymous namespace'::MasterfileTextExporter`: VTable [0x00000000030524D0, 0x0000000000000000 offset, 2 functions] `.?AVMasterfileTextExporter@?A0x90559f3f@@` -`class `anonymous namespace'::MasterfileDelocalizer`: VTable [0x00000000030524F0, 0x0000000000000000 offset, 2 functions] `.?AVMasterfileDelocalizer@?A0x90559f3f@@` -`class `anonymous namespace'::NeededFileDumper`: VTable [0x0000000003052510, 0x0000000000000000 offset, 2 functions] `.?AVNeededFileDumper@?A0x90559f3f@@` -`class `anonymous namespace'::ESLConverter`: VTable [0x0000000003052590, 0x0000000000000000 offset, 2 functions] `.?AVESLConverter@?A0x90559f3f@@` -`class Dialog::ModalDialog`: VTable [0x0000000003053158, 0x0000000000000000 offset, 3 functions] `.?AVModalDialog@Dialog@@` -`class BGSBNetCreationSelectDialog`: VTable [0x0000000003053180, 0x0000000000000000 offset, 3 functions] `.?AVBGSBNetCreationSelectDialog@@` -`class std::_Func_base const & __ptr64>`: VTable [0x0000000003053548, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl const & __ptr64) __ptr64,class BGSBNetCreationSelectDialog * __ptr64 const,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64>,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x0000000003053590, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V?$_Binder@U_Unforced@std@@P8BGSBNetCreationSelectDialog@@EAAXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@ZQEAV3@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@@std@@V?$allocator@H@2@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class INIPrefSettingCollection`: VTable [0x0000000003053818, 0x0000000000000000 offset, 11 functions] `.?AVINIPrefSettingCollection@@` -`class SettingT`: VTable [0x0000000003053890, 0x0000000000000000 offset, 2 functions] `.?AV?$SettingT@VINIPrefSettingCollection@@@@` -`class BGSBNetModSelectDialog`: VTable [0x0000000003054358, 0x0000000000000000 offset, 3 functions] `.?AVBGSBNetModSelectDialog@@` -`class std::_Func_base const & __ptr64>`: VTable [0x00000000030544C8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl const & __ptr64) __ptr64,class BGSBNetModSelectDialog * __ptr64 const,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64>,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x0000000003054510, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V?$_Binder@U_Unforced@std@@P8BGSBNetModSelectDialog@@EAAXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@ZQEAV3@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@@std@@V?$allocator@H@2@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class BGSBNetUploadCreationDialog`: VTable [0x0000000003054990, 0x0000000000000000 offset, 3 functions] `.?AVBGSBNetUploadCreationDialog@@` -`class std::basic_stringbuf,class std::allocator >`: VTable [0x00000000030550A8, 0x0000000000000000 offset, 15 functions] `.?AV?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@` -`class std::basic_ostringstream,class std::allocator >`: VTable [0x0000000003055178, 0x0000000000000088 offset, 1 functions] `.?AV?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@` -`class std::_Func_base`: VTable [0x0000000003056710, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl const & __ptr64,struct std::_Ph<2> const & __ptr64>,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x0000000003056758, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V?$_Binder@U_Unforced@std@@P8BGSBNetUploadProgressDialog@@EAAXW4BNetResult@BSPlatform@@_K@ZQEAV3@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@@std@@V?$allocator@H@2@XW4BNetResult@BSPlatform@@_K@std@@` -`class BGSErrorDlg`: VTable [0x0000000003058078, 0x0000000000000000 offset, 3 functions] `.?AVBGSErrorDlg@@` -`class NiProperty`: VTable [0x00000000030592D8, 0x0000000000000000 offset, 41 functions] `.?AVNiProperty@@` -`class NiAlphaProperty`: VTable [0x0000000003059470, 0x0000000000000000 offset, 41 functions] `.?AVNiAlphaProperty@@` -`class BSResource::Location`: VTable [0x0000000003059650, 0x0000000000000000 offset, 12 functions] `.?AVLocation@BSResource@@` -`class BSQueuedResourceCollection,2>`: VTable [0x00000000030596D0, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@$01@@` -`class BSQueuedResourceCollection,2>`: VTable [0x00000000030597A0, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@$01@@` -`class BGSQueuedGrassModelHandles`: VTable [0x00000000030597C8, 0x0000000000000000 offset, 20 functions] `.?AVBGSQueuedGrassModelHandles@@` -`class BGSQueuedGrassModelHandles`: VTable [0x0000000003059898, 0x0000000000000038 offset, 3 functions] `.?AVBGSQueuedGrassModelHandles@@` -`class BSResource::LooseFileLocation`: VTable [0x00000000030598C0, 0x0000000000000000 offset, 12 functions] `.?AVLooseFileLocation@BSResource@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x000000000305A1B8, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0CA@@@@@` -`class BGSGenericCategoryLayout::Manager`: VTable [0x000000000305A7A8, 0x0000000000000000 offset, 7 functions] `.?AVManager@BGSGenericCategoryLayout@@` -`class BGSListViewDialog`: VTable [0x000000000305ADE8, 0x0000000000000000 offset, 2 functions] `.?AVBGSListViewDialog@@` -`class BGSFormListViewDialog`: VTable [0x000000000305AE08, 0x0000000000000000 offset, 2 functions] `.?AVBGSFormListViewDialog@@` -`class BGSFileListViewDialog`: VTable [0x000000000305AE28, 0x0000000000000000 offset, 2 functions] `.?AVBGSFileListViewDialog@@` -`class BGSOKCancelListViewDialog`: VTable [0x000000000305AE48, 0x0000000000000000 offset, 2 functions] `.?AVBGSOKCancelListViewDialog@@` -`class BGSModUtils::`anonymous namespace'::PickESMDialog`: VTable [0x000000000305B550, 0x0000000000000000 offset, 3 functions] `.?AVPickESMDialog@?A0x472bd498@BGSModUtils@@` -`class NiTMapBase,class TESForm * __ptr64,class TESForm * __ptr64>`: VTable [0x000000000305CA80, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEAVTESForm@@PEAV2@@@` -`class NiTPointerMap`: VTable [0x000000000305CAD0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEAVTESForm@@PEAV1@@@` -`class IFormFactory::IFactoryVisitor`: VTable [0x000000000305D400, 0x0000000000000000 offset, 2 functions] `.?AVIFactoryVisitor@IFormFactory@@` -`struct `anonymous namespace'::ObjectTypeEnumerator`: VTable [0x000000000305D448, 0x0000000000000000 offset, 2 functions] `.?AUObjectTypeEnumerator@?A0xa23da463@@` -`struct `anonymous namespace'::ObjectTreeItemAdder`: VTable [0x000000000305D468, 0x0000000000000000 offset, 2 functions] `.?AUObjectTreeItemAdder@?A0xa23da463@@` -`class BGSRenderOrthoGrid`: VTable [0x000000000305F088, 0x0000000000000000 offset, 1 functions] `.?AVBGSRenderOrthoGrid@@` -`class BSTEventSink`: VTable [0x000000000305FCA0, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UTESDataHandlerEditorEvent@@@@` -`class BGSRenderWindow`: VTable [0x000000000305FCC0, 0x0000000000000000 offset, 2 functions] `.?AVBGSRenderWindow@@` -`class std::_Func_impl,class std::allocator,void>`: VTable [0x0000000003060690, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@X$$V@std@@` -`class std::_Func_impl,class std::allocator,void>`: VTable [0x00000000030606D8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@X$$V@std@@` -`class BGSRenderWindowBorder`: VTable [0x0000000003060740, 0x0000000000000000 offset, 1 functions] `.?AVBGSRenderWindowBorder@@` -`class BGSRenderWindowCamera`: VTable [0x0000000003060988, 0x0000000000000000 offset, 1 functions] `.?AVBGSRenderWindowCamera@@` -`class hkpRayHitCollector`: VTable [0x00000000030609A0, 0x0000000000000000 offset, 2 functions] `.?AVhkpRayHitCollector@@` -`class hkpAllRayHitCollector`: VTable [0x00000000030609C0, 0x0000000000000000 offset, 2 functions] `.?AVhkpAllRayHitCollector@@` -`class BGSRenderWindowEditModule`: VTable [0x0000000003060D30, 0x0000000000000000 offset, 70 functions] `.?AVBGSRenderWindowEditModule@@` -`class BGSRenderWindowEditModuleManager`: VTable [0x0000000003061D88, 0x0000000000000000 offset, 2 functions] `.?AVBGSRenderWindowEditModuleManager@@` -`class BGSRenderWindowGizmo`: VTable [0x0000000003062098, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowGizmo@@` -`class BSFixedScreenSizeNode`: VTable [0x00000000030620F8, 0x0000000000000000 offset, 66 functions] `.?AVBSFixedScreenSizeNode@@` -`class BGSRenderWindowEditModuleFactory`: VTable [0x00000000030625B0, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowEditModuleFactory@@` -`class BGSRenderWindowLandscapeEditModule`: VTable [0x00000000030625E0, 0x0000000000000000 offset, 70 functions] `.?AVBGSRenderWindowLandscapeEditModule@@` -`class BGSRenderWindowLandscapeEditModuleFactory`: VTable [0x0000000003062890, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowLandscapeEditModuleFactory@@` -`class BSExtraData`: VTable [0x0000000003065950, 0x0000000000000000 offset, 3 functions] `.?AVBSExtraData@@` -`class ExtraNavMeshPortal`: VTable [0x00000000030659E8, 0x0000000000000000 offset, 3 functions] `.?AVExtraNavMeshPortal@@` -`class PathingDebugGeometryData`: VTable [0x0000000003065A48, 0x0000000000000000 offset, 2 functions] `.?AVPathingDebugGeometryData@@` -`class BGSRenderWindowNavMeshEditModule`: VTable [0x0000000003065A68, 0x0000000000000000 offset, 70 functions] `.?AVBGSRenderWindowNavMeshEditModule@@` -`class BGSRenderWindowNavMeshEditModuleFactory`: VTable [0x0000000003065D18, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowNavMeshEditModuleFactory@@` -`class BGSRecastModule::RecastJob`: VTable [0x0000000003065D48, 0x0000000000000000 offset, 2 functions] `.?AVRecastJob@BGSRecastModule@@` -`class `anonymous namespace'::ReRecast`: VTable [0x0000000003065D68, 0x0000000000000000 offset, 2 functions] `.?AVReRecast@?A0x401e38d2@@` -`class BGSRenderWindowPrimitiveEditModule`: VTable [0x0000000003067638, 0x0000000000000000 offset, 72 functions] `.?AVBGSRenderWindowPrimitiveEditModule@@` -`class BGSRenderWindowPrimitiveEditModuleFactory`: VTable [0x00000000030678F8, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowPrimitiveEditModuleFactory@@` -`class BGSRenderWindowPrimitiveGizmo`: VTable [0x0000000003067AA0, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowPrimitiveGizmo@@` -`class BGSRenderWindowReferenceEditModule`: VTable [0x0000000003068AD0, 0x0000000000000000 offset, 70 functions] `.?AVBGSRenderWindowReferenceEditModule@@` -`class BGSRenderWindowReferenceEditModuleFactory`: VTable [0x0000000003068D80, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowReferenceEditModuleFactory@@` -`class NiTMapBase,class BSPointerHandle >,class BSPointerHandle > >`: VTable [0x00000000030698F8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V2@@@` -`class NiTPointerMap >,class BSPointerHandle > >`: VTable [0x0000000003069948, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V1@@@` -`class NiTArray >`: VTable [0x0000000003069AC0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVNiNode@@V?$NiTMallocInterface@PEAVNiNode@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003069AD8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVNiNode@@@@` -`class NiTArray >`: VTable [0x0000000003069B48, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEBVNiPoint3@@V?$NiTMallocInterface@PEBVNiPoint3@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003069B60, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEBVNiPoint3@@@@` -`class BGSRenderWindowRotationGizmo`: VTable [0x000000000306A090, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowRotationGizmo@@` -`class BGSRenderWindowScaleGizmo`: VTable [0x000000000306A140, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowScaleGizmo@@` -`class BGSRenderWindowTranslationGizmo`: VTable [0x000000000306A1F0, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowTranslationGizmo@@` -`class NiTMapBase >,class NiTexture * __ptr64,struct TEX_USER_DATA * __ptr64>`: VTable [0x000000000306A928, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVNiTexture@@PEAUTEX_USER_DATA@@@@@@PEAVNiTexture@@PEAUTEX_USER_DATA@@@@` -`class NiTMap`: VTable [0x000000000306A978, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVNiTexture@@PEAUTEX_USER_DATA@@@@` -`class NiTMapBase >,bool> >,class BSPointerHandle >,bool>`: VTable [0x000000000306AA28, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@` -`class NiTMap >,bool>`: VTable [0x000000000306AA78, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@` -`class NiTMapBase >,class NiTexture * __ptr64,bool>`: VTable [0x000000000306AAC8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVNiTexture@@_N@@@@PEAVNiTexture@@_N@@` -`class NiTMap`: VTable [0x000000000306AB18, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVNiTexture@@_N@@` -`class NiTMapBase >,class BSGeometry * __ptr64,bool>`: VTable [0x000000000306AC18, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVBSGeometry@@_N@@@@PEAVBSGeometry@@_N@@` -`class NiTMap`: VTable [0x000000000306AC68, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVBSGeometry@@_N@@` -`class BGSSearchReplaceDialog`: VTable [0x000000000306B1F8, 0x0000000000000000 offset, 1 functions] `.?AVBGSSearchReplaceDialog@@` -`struct TESObjectCELL::IDecalRefFunctor`: VTable [0x000000000306B738, 0x0000000000000000 offset, 2 functions] `.?AUIDecalRefFunctor@TESObjectCELL@@` -`struct `anonymous namespace'::CullOrShowDecalRefFunctor`: VTable [0x000000000306B930, 0x0000000000000000 offset, 3 functions] `.?AUCullOrShowDecalRefFunctor@?A0x7d0b72b5@@` -`struct `anonymous namespace'::CullOrShowDecalsPerCellFunctor::Adapter`: VTable [0x000000000306B958, 0x0000000000000000 offset, 3 functions] `.?AUAdapter@CullOrShowDecalsPerCellFunctor@?A0x7d0b72b5@@` -`class BGSSkillPerkTreeNode`: VTable [0x000000000306C5F8, 0x0000000000000000 offset, 2 functions] `.?AVBGSSkillPerkTreeNode@@` -`class BGSSkillPerkTreeWindow`: VTable [0x000000000306C618, 0x0000000000000000 offset, 1 functions] `.?AVBGSSkillPerkTreeWindow@@` -`class BGSSkillPerkTreeEventSink`: VTable [0x000000000306C648, 0x0000000000000000 offset, 8 functions] `.?AVBGSSkillPerkTreeEventSink@@` -`class CCallbackBase`: VTable [0x000000000306CE48, 0x0000000000000000 offset, 3 functions] `.?AVCCallbackBase@@` -`class CCallResult`: VTable [0x000000000306CE70, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@UCreateItemResult_t@@@@` -`class CCallResult`: VTable [0x000000000306CE98, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageEnumerateUserPublishedFilesResult_t@@@@` -`class CCallResult`: VTable [0x000000000306CEC0, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageGetPublishedFileDetailsResult_t@@@@` -`class CCallResult`: VTable [0x000000000306CEE8, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStoragePublishFileResult_t@@@@` -`class CCallResult`: VTable [0x000000000306CF10, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageSubscribePublishedFileResult_t@@@@` -`class CCallResult`: VTable [0x000000000306CF38, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageDownloadUGCResult_t@@@@` -`class CCallResult`: VTable [0x000000000306CF60, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageUpdatePublishedFileResult_t@@@@` -`class CCallResult`: VTable [0x000000000306CF88, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@USubmitItemUpdateResult_t@@@@` -`class CCallResult`: VTable [0x000000000306CFB0, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@USteamUGCRequestUGCDetailsResult_t@@@@` -`class BGSThreadedProgressDlg`: VTable [0x000000000306D738, 0x0000000000000000 offset, 3 functions] `.?AVBGSThreadedProgressDlg@@` -`class ProgressInternal::TaskThread`: VTable [0x000000000306D7B0, 0x0000000000000000 offset, 4 functions] `.?AVTaskThread@ProgressInternal@@` -`class BGSWarningsDialog`: VTable [0x000000000306DCC8, 0x0000000000000000 offset, 1 functions] `.?AVBGSWarningsDialog@@` -`class `anonymous namespace'::LayoutManager`: VTable [0x000000000306DD30, 0x0000000000000000 offset, 7 functions] `.?AVLayoutManager@?A0xe8944c5a@@` -`class BSTEventSink`: VTable [0x000000000306DDE0, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UEvent@BSCoreMessage@@@@` -`class BGSWarningsHandler::WarningsSink`: VTable [0x000000000306DE00, 0x0000000000000000 offset, 2 functions] `.?AVWarningsSink@BGSWarningsHandler@@` -`class WindowLayout::ResizableObject`: VTable [0x000000000306EBE8, 0x0000000000000000 offset, 5 functions] `.?AVResizableObject@WindowLayout@@` -`class WindowLayout::Panel`: VTable [0x000000000306EC28, 0x0000000000000000 offset, 5 functions] `.?AVPanel@WindowLayout@@` -`class WindowLayout::SplitPanel`: VTable [0x000000000306EC68, 0x0000000000000000 offset, 5 functions] `.?AVSplitPanel@WindowLayout@@` -`class WindowLayout::`anonymous namespace'::ResizableControl`: VTable [0x000000000306ECA8, 0x0000000000000000 offset, 5 functions] `.?AVResizableControl@?A0xfda01136@WindowLayout@@` -`class ClientSite`: VTable [0x000000000306EE80, 0x0000000000000000 offset, 9 functions] `.?AVClientSite@@` -`class ClientSite`: VTable [0x000000000306EEE0, 0x0000000000000008 offset, 15 functions] `.?AVClientSite@@` -`class BSMapBase`: VTable [0x000000000306FAB0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVBGSVoiceType@@PEAVFxPhonemeMap@FaceFXWrapper32@@@@` -`class BSScrapMap`: VTable [0x000000000306FB00, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@PEAVBGSVoiceType@@PEAVFxPhonemeMap@FaceFXWrapper32@@@@` -`class NiWindow`: VTable [0x0000000003070710, 0x0000000000000000 offset, 5 functions] `.?AVNiWindow@@` -`class BSTreeManager::IQueryCullingCamera`: VTable [0x0000000003070750, 0x0000000000000000 offset, 2 functions] `.?AVIQueryCullingCamera@BSTreeManager@@` -`class `anonymous namespace'::AppCullingCamera`: VTable [0x0000000003070800, 0x0000000000000000 offset, 2 functions] `.?AVAppCullingCamera@?A0xae3665a1@@` -`class BSTEventSink`: VTable [0x00000000030713E0, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UCellAttachDetachEvent@@@@` -`class `anonymous namespace'::CellAttachDetachHandler`: VTable [0x0000000003071400, 0x0000000000000000 offset, 2 functions] `.?AVCellAttachDetachHandler@?A0x0b4db286@@` -`class NiTLargeArray >`: VTable [0x0000000003071B60, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@PEAUFORMLISTITEM@@V?$NiTMallocInterface@PEAUFORMLISTITEM@@@@@@` -`class NiTLargePrimitiveArray`: VTable [0x0000000003071B78, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargePrimitiveArray@PEAUFORMLISTITEM@@@@` -`class BSStream`: VTable [0x0000000003075890, 0x0000000000000000 offset, 24 functions] `.?AVBSStream@@` -`class NiTMapBase >,char const * __ptr64,class Setting * __ptr64>`: VTable [0x0000000003075A40, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEBDPEAVSetting@@@@@@PEBDPEAVSetting@@@@` -`class NiTMap`: VTable [0x0000000003075A90, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEBDPEAVSetting@@@@` -`class NiTStringTemplateMap,class Setting * __ptr64>`: VTable [0x0000000003075AE0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTMap@PEBDPEAVSetting@@@@PEAVSetting@@@@` -`class NiTStringMap`: VTable [0x0000000003075B30, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringMap@PEAVSetting@@@@` -`class BSTCaseInsensitiveStringMap`: VTable [0x0000000003075B80, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCaseInsensitiveStringMap@PEAVSetting@@@@` -`class SettingCollectionMap`: VTable [0x0000000003075BD0, 0x0000000000000000 offset, 11 functions] `.?AV?$SettingCollectionMap@VSetting@@@@` -`class GameSettingCollection`: VTable [0x0000000003075C48, 0x0000000000000000 offset, 12 functions] `.?AVGameSettingCollection@@` -`class GameSetting`: VTable [0x0000000003075CC8, 0x0000000000000000 offset, 2 functions] `.?AVGameSetting@@` -`class GameSetting`: VTable [0x0000000003075CE8, 0x0000000000000018 offset, 103 functions] `.?AVGameSetting@@` -`class ATL::CComModule`: VTable [0x00000000030768E0, 0x0000000000000000 offset, 10 functions] `.?AVCComModule@ATL@@` -`class ATL::CRegObject`: VTable [0x00000000030769F0, 0x0000000000000000 offset, 6 functions] `.?AVCRegObject@ATL@@` -`class ATL::CComObject`: VTable [0x0000000003077118, 0x0000000000000000 offset, 4 functions] `.?AV?$CComObject@VCAxFrameWindow@ATL@@@ATL@@` -`class ATL::CComObject`: VTable [0x0000000003077148, 0x0000000000000048 offset, 15 functions] `.?AV?$CComObject@VCAxFrameWindow@ATL@@@ATL@@` -`class ATL::CComObject`: VTable [0x00000000030771E8, 0x0000000000000000 offset, 4 functions] `.?AV?$CComObject@VCAxUIWindow@ATL@@@ATL@@` -`class ATL::CComObject`: VTable [0x0000000003077218, 0x0000000000000048 offset, 9 functions] `.?AV?$CComObject@VCAxUIWindow@ATL@@@ATL@@` -`class ATL::CComObject,class ATL::CComMultiThreadModel> >`: VTable [0x0000000003077278, 0x0000000000000000 offset, 8 functions] `.?AV?$CComObject@V?$CComEnum@UIEnumUnknown@@$1?_GUID_00000100_0000_0000_c000_000000000046@@3U__s_GUID@@BPEAUIUnknown@@V?$_CopyInterface@UIUnknown@@@ATL@@VCComMultiThreadModel@6@@ATL@@@ATL@@` -`class NiTMapBase >,unsigned int,unsigned int>`: VTable [0x00000000030790F8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@II@@@@II@@` -`class NiTMap`: VTable [0x0000000003079148, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@II@@` -`class ATL::CComContainedObject`: VTable [0x000000000307A038, 0x0000000000000000 offset, 5 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x000000000307A078, 0x0000000000000048 offset, 11 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x000000000307A0F0, 0x0000000000000050 offset, 9 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x000000000307A150, 0x0000000000000058 offset, 30 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x000000000307A280, 0x0000000000000060 offset, 10 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x000000000307A2F0, 0x0000000000000068 offset, 6 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x000000000307A338, 0x0000000000000070 offset, 6 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x000000000307A380, 0x0000000000000080 offset, 4 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x000000000307A3B0, 0x0000000000000088 offset, 8 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x000000000307A408, 0x0000000000000090 offset, 18 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x000000000307A4C0, 0x0000000000000098 offset, 36 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComPolyObject`: VTable [0x000000000307A628, 0x0000000000000000 offset, 4 functions] `.?AV?$CComPolyObject@VCAxHostWindow@ATL@@@ATL@@` -`class std::_Func_impl,class std::allocator,void>`: VTable [0x000000000307A790, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@X$$V@std@@` -`class std::_Func_impl,class std::allocator,void>`: VTable [0x000000000307A7D8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@X$$V@std@@` -`class DialogExtraWindowStartingRects`: VTable [0x000000000307B9E0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraWindowStartingRects@@` -`class CSScript::BaseDialog`: VTable [0x000000000307C940, 0x0000000000000000 offset, 2 functions] `.?AVBaseDialog@CSScript@@` -`class CSScript::BaseModelessDialog`: VTable [0x000000000307C960, 0x0000000000000000 offset, 2 functions] `.?AVBaseModelessDialog@CSScript@@` -`class CSScript::EmbeddedChildDialog`: VTable [0x000000000307C980, 0x0000000000000000 offset, 2 functions] `.?AVEmbeddedChildDialog@CSScript@@` -`class CSScript::VersionControlDlg`: VTable [0x000000000307C9A0, 0x0000000000000000 offset, 2 functions] `.?AVVersionControlDlg@CSScript@@` -`class NiTArray >`: VTable [0x000000000307D180, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVTESForm@@V?$NiTMallocInterface@PEAVTESForm@@@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000307D198, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVTESForm@@@@` -`class NiTLargeArray >`: VTable [0x000000000307DEA0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@PEAUTEMP_DATA_BLOCK@@V?$NiTMallocInterface@PEAUTEMP_DATA_BLOCK@@@@@@` -`class NiTLargePrimitiveArray`: VTable [0x000000000307DEB8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargePrimitiveArray@PEAUTEMP_DATA_BLOCK@@@@` -`class NiTMapBase >,class TESForm * __ptr64,class TESFile * __ptr64>`: VTable [0x000000000307EC60, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESForm@@PEAVTESFile@@@@@@PEAVTESForm@@PEAVTESFile@@@@` -`class NiTMap`: VTable [0x000000000307ECB0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESForm@@PEAVTESFile@@@@` -`class NiTMapBase >,class TESForm * __ptr64,unsigned int>`: VTable [0x000000000307EF30, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESForm@@I@@@@PEAVTESForm@@I@@` -`class NiTMap`: VTable [0x000000000307EF80, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESForm@@I@@` -`class NiTMapBase >,class TESObjectCELL * __ptr64,int>`: VTable [0x000000000307F448, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESObjectCELL@@H@@@@PEAVTESObjectCELL@@H@@` -`class NiTMap`: VTable [0x000000000307F498, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESObjectCELL@@H@@` -`class NiTMapBase >,class TESTopic * __ptr64,unsigned short>`: VTable [0x000000000307F900, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESTopic@@G@@@@PEAVTESTopic@@G@@` -`class NiTMap`: VTable [0x000000000307F950, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESTopic@@G@@` -`class DialogExtraParam`: VTable [0x0000000003080600, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraParam@@` -`class DialogExtraLocalCopy`: VTable [0x0000000003080628, 0x0000000000000000 offset, 6 functions] `.?AVDialogExtraLocalCopy@@` -`class DialogExtraLocalReferenceCopy`: VTable [0x0000000003080670, 0x0000000000000000 offset, 6 functions] `.?AVDialogExtraLocalReferenceCopy@@` -`class DialogExtraLocalBaseObjectCopy`: VTable [0x00000000030806B8, 0x0000000000000000 offset, 6 functions] `.?AVDialogExtraLocalBaseObjectCopy@@` -`class DialogExtraLocalBaseObjectExtraCopy`: VTable [0x0000000003080750, 0x0000000000000000 offset, 6 functions] `.?AVDialogExtraLocalBaseObjectExtraCopy@@` -`class DialogExtraColorControl`: VTable [0x0000000003080798, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraColorControl@@` -`class DialogExtraSubWindow`: VTable [0x00000000030807C0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraSubWindow@@` -`class DialogExtraConditionsDialog`: VTable [0x00000000030807E8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraConditionsDialog@@` -`class DialogExtraCurrCondItem`: VTable [0x0000000003080810, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraCurrCondItem@@` -`class DialogExtraWorkingData`: VTable [0x0000000003080838, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraWorkingData@@` -`class DialogExtraFactionData`: VTable [0x0000000003080860, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraFactionData@@` -`class DialogExtraReactionData`: VTable [0x0000000003080888, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraReactionData@@` -`class DialogExtraQuestStageData`: VTable [0x00000000030808B0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraQuestStageData@@` -`class DialogExtraPopupMenu`: VTable [0x00000000030808D8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraPopupMenu@@` -`class DialogExtraRefSelectControl`: VTable [0x0000000003080900, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraRefSelectControl@@` -`class DialogExtraPreviewControl`: VTable [0x0000000003080928, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraPreviewControl@@` -`class DialogExtraFreeformFaceControl`: VTable [0x0000000003080950, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraFreeformFaceControl@@` -`class DialogExtraDialogData`: VTable [0x0000000003080978, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraDialogData@@` -`class DialogExtraNotifyInfo`: VTable [0x00000000030809A0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraNotifyInfo@@` -`class DialogExtraTimer`: VTable [0x00000000030809C8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraTimer@@` -`class DialogExtraRects`: VTable [0x00000000030809F0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraRects@@` -`class DialogExtraLinkedDlg`: VTable [0x0000000003080A18, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraLinkedDlg@@` -`class DialogExtraQuestFilter`: VTable [0x0000000003080A40, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraQuestFilter@@` -`class DialogExtraHavokAnimationPreview`: VTable [0x0000000003080A68, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraHavokAnimationPreview@@` -`class DialogExtraNPCDlgData`: VTable [0x0000000003080A90, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraNPCDlgData@@` -`class DialogExtraNPCAnimationPreviewData`: VTable [0x0000000003080AB8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraNPCAnimationPreviewData@@` -`class DialogExtraScriptListDlg`: VTable [0x0000000003081F90, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraScriptListDlg@@` -`class EnchantmentComboBoxValidationFunctor`: VTable [0x0000000003081FB8, 0x0000000000000000 offset, 1 functions] `.?AVEnchantmentComboBoxValidationFunctor@@` -`struct MiscStatManager::IMiscStatVisitor`: VTable [0x0000000003081FD0, 0x0000000000000000 offset, 1 functions] `.?AUIMiscStatVisitor@MiscStatManager@@` -`struct `anonymous namespace'::AddMiscStatToComboBoxFunc`: VTable [0x0000000003082938, 0x0000000000000000 offset, 1 functions] `.?AUAddMiscStatToComboBoxFunc@?A0xbe9c401f@@` -`class IsValidEnchantmentForObjectFunctor`: VTable [0x00000000030829A0, 0x0000000000000000 offset, 1 functions] `.?AVIsValidEnchantmentForObjectFunctor@@` -`struct `anonymous namespace'::ComboBoxObjectAdder`: VTable [0x00000000030829B8, 0x0000000000000000 offset, 2 functions] `.?AUComboBoxObjectAdder@?A0xbe9c401f@@` -`class NiTMapBase >,class TESQuest * __ptr64,unsigned int>`: VTable [0x0000000003083038, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESQuest@@I@@@@PEAVTESQuest@@I@@` -`class NiTMap`: VTable [0x0000000003083088, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESQuest@@I@@` -`class BSMapBase * __ptr64>`: VTable [0x0000000003083170, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESActorBase@@PEAV?$BSMap@PEAVBGSEncounterZone@@PEAULvlActorUsage@?1??LeveledActorListDlgProc@@YA_JPEAUHWND__@@I_K_J@Z@@@@@` -`class BSMap * __ptr64>`: VTable [0x00000000030831C0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEAVTESActorBase@@PEAV?$BSMap@PEAVBGSEncounterZone@@PEAULvlActorUsage@?1??LeveledActorListDlgProc@@YA_JPEAUHWND__@@I_K_J@Z@@@@@` -`class BSMapBase`: VTable [0x0000000003083210, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVBGSEncounterZone@@PEAULvlActorUsage@?1??LeveledActorListDlgProc@@YA_JPEAUHWND__@@I_K_J@Z@@@` -`class BSMap`: VTable [0x0000000003083260, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEAVBGSEncounterZone@@PEAULvlActorUsage@?1??LeveledActorListDlgProc@@YA_JPEAUHWND__@@I_K_J@Z@@@` -`class TESFormIDListView`: VTable [0x0000000003083360, 0x0000000000000000 offset, 103 functions] `.?AVTESFormIDListView@@` -`class bhkSerializable`: VTable [0x0000000003083BC8, 0x0000000000000000 offset, 52 functions] `.?AVbhkSerializable@@` -`class bhkShape`: VTable [0x0000000003083DC8, 0x0000000000000000 offset, 59 functions] `.?AVbhkShape@@` -`class bhkEntity`: VTable [0x0000000003084008, 0x0000000000000000 offset, 55 functions] `.?AVbhkEntity@@` -`class TESPreviewControl`: VTable [0x0000000003084228, 0x0000000000000000 offset, 12 functions] `.?AVTESPreviewControl@@` -`class bhkRigidBody`: VTable [0x00000000030842A8, 0x0000000000000000 offset, 65 functions] `.?AVbhkRigidBody@@` -`class bhkCollisionObject`: VTable [0x0000000003084528, 0x0000000000000000 offset, 52 functions] `.?AVbhkCollisionObject@@` -`class bhkSphereRepShape`: VTable [0x0000000003084728, 0x0000000000000000 offset, 59 functions] `.?AVbhkSphereRepShape@@` -`class bhkConvexShape`: VTable [0x0000000003084968, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexShape@@` -`class bhkBoxShape`: VTable [0x0000000003084BA8, 0x0000000000000000 offset, 59 functions] `.?AVbhkBoxShape@@` -`class BSLightingShaderMaterial`: VTable [0x0000000003084DE8, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterial@@` -`class hkBaseObject`: VTable [0x00000000030855E8, 0x0000000000000000 offset, 1 functions] `.?AVhkBaseObject@@` -`class hkReferencedObject`: VTable [0x0000000003085600, 0x0000000000000000 offset, 3 functions] `.?AVhkReferencedObject@@` -`class hkpWorldCinfo`: VTable [0x0000000003085628, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldCinfo@@` -`class hkpEntityListener`: VTable [0x0000000003085650, 0x0000000000000000 offset, 6 functions] `.?AVhkpEntityListener@@` -`class TESRenderControl`: VTable [0x0000000003085698, 0x0000000000000000 offset, 10 functions] `.?AVTESRenderControl@@` -`class TESWindListener`: VTable [0x0000000003085708, 0x0000000000000000 offset, 11 functions] `.?AVTESWindListener@@` -`class HavokAnimationPreviewContainer`: VTable [0x0000000003085AC0, 0x0000000000000000 offset, 1 functions] `.?AVHavokAnimationPreviewContainer@@` -`class HavokAnimationPreviewControl`: VTable [0x0000000003085CA8, 0x0000000000000000 offset, 1 functions] `.?AVHavokAnimationPreviewControl@@` -`class BaseFormComponent`: VTable [0x0000000003086880, 0x0000000000000000 offset, 14 functions] `.?AVBaseFormComponent@@` -`class TESFullName`: VTable [0x0000000003086910, 0x0000000000000000 offset, 16 functions] `.?AVTESFullName@@` -`class ActorValueInfo`: VTable [0x00000000030869B8, 0x0000000000000000 offset, 103 functions] `.?AVActorValueInfo@@` -`class ActorValueInfo`: VTable [0x0000000003086DA0, 0x0000000000000028 offset, 16 functions] `.?AVActorValueInfo@@` -`class ActorValueInfo`: VTable [0x0000000003086E48, 0x0000000000000040 offset, 14 functions] `.?AVActorValueInfo@@` -`class ActorValueInfo`: VTable [0x0000000003086ED8, 0x0000000000000068 offset, 20 functions] `.?AVActorValueInfo@@` -`class `anonymous namespace'::ActorValueFormFactory`: VTable [0x0000000003087050, 0x0000000000000000 offset, 7 functions] `.?AVActorValueFormFactory@?A0xa9157f30@@` -`class CSScript::SavePatcher`: VTable [0x0000000003087F88, 0x0000000000000000 offset, 2 functions] `.?AVSavePatcher@CSScript@@` -`class IAIWorldLocation`: VTable [0x00000000030887A8, 0x0000000000000000 offset, 20 functions] `.?AVIAIWorldLocation@@` -`class BGSAIWorldLocation`: VTable [0x0000000003088878, 0x0000000000000000 offset, 20 functions] `.?AVBGSAIWorldLocation@@` -`class BGSTypedItem`: VTable [0x0000000003088948, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSAIWorldLocationRefRadius@@VBGSAIWorldLocation@@@@` -`class BGSAIWorldLocationRefRadius`: VTable [0x0000000003088A18, 0x0000000000000000 offset, 20 functions] `.?AVBGSAIWorldLocationRefRadius@@` -`class BGSTypedItem`: VTable [0x0000000003088AE8, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSAIWorldLocationPointRadius@@VBGSAIWorldLocation@@@@` -`class BGSAIWorldLocationPointRadius`: VTable [0x0000000003088BB8, 0x0000000000000000 offset, 20 functions] `.?AVBGSAIWorldLocationPointRadius@@` -`class BGSTypedItem`: VTable [0x0000000003088C88, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSAIWorldLocationInteriorCell@@VBGSAIWorldLocation@@@@` -`class BGSAIWorldLocationInteriorCell`: VTable [0x0000000003088D58, 0x0000000000000000 offset, 20 functions] `.?AVBGSAIWorldLocationInteriorCell@@` -`class BGSAttackData`: VTable [0x00000000030892D0, 0x0000000000000000 offset, 2 functions] `.?AVBGSAttackData@@` -`class BGSAttackDataMap`: VTable [0x00000000030892F0, 0x0000000000000000 offset, 2 functions] `.?AVBGSAttackDataMap@@` -`class BGSPackageDataList`: VTable [0x000000000308A778, 0x0000000000000000 offset, 5 functions] `.?AVBGSPackageDataList@@` -`class IPackageData`: VTable [0x000000000308B070, 0x0000000000000000 offset, 16 functions] `.?AVIPackageData@@` -`class IAIWorldLocationHandle`: VTable [0x000000000308B118, 0x0000000000000000 offset, 3 functions] `.?AVIAIWorldLocationHandle@@` -`class IPackageDataAIWorldLocationHandle`: VTable [0x000000000308B150, 0x0000000000000000 offset, 3 functions] `.?AVIPackageDataAIWorldLocationHandle@@` -`class IPackageDataAIWorldLocationHandle`: VTable [0x000000000308B178, 0x0000000000000008 offset, 16 functions] `.?AVIPackageDataAIWorldLocationHandle@@` -`class IAITarget`: VTable [0x000000000308B220, 0x0000000000000000 offset, 11 functions] `.?AVIAITarget@@` -`class IAITarget`: VTable [0x000000000308B298, 0x0000000000000008 offset, 16 functions] `.?AVIAITarget@@` -`class BGSNamedPackageData`: VTable [0x000000000308B340, 0x0000000000000000 offset, 16 functions] `.?AV?$BGSNamedPackageData@VIPackageData@@@@` -`class BGSPackageDataBool`: VTable [0x000000000308B3E8, 0x0000000000000000 offset, 16 functions] `.?AVBGSPackageDataBool@@` -`class BGSPackageDataBasicTemplate`: VTable [0x000000000308B490, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataBasicTemplate@VIPackageData@@M$1?kPackageDataFloatTypeName@@3VBSFixedString@@B$1?fPackageDataFloatDefault@@3MB@@` -`class BGSPackageDataSaveableTemplate`: VTable [0x000000000308B548, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataSaveableTemplate@VIPackageData@@M$1?kPackageDataFloatTypeName@@3VBSFixedString@@B$1?fPackageDataFloatDefault@@3MB@@` -`class BGSPackageDataFloat`: VTable [0x000000000308B600, 0x0000000000000000 offset, 18 functions] `.?AVBGSPackageDataFloat@@` -`class BGSPackageDataBasicTemplate`: VTable [0x000000000308B6B8, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataBasicTemplate@VIPackageData@@H$1?kPackageDataIntTypeName@@3VBSFixedString@@B$1?iPackageDataIntDefault@@3HB@@` -`class BGSPackageDataSaveableTemplate`: VTable [0x000000000308B770, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataSaveableTemplate@VIPackageData@@H$1?kPackageDataIntTypeName@@3VBSFixedString@@B$1?iPackageDataIntDefault@@3HB@@` -`class BGSPackageDataInt`: VTable [0x000000000308B828, 0x0000000000000000 offset, 18 functions] `.?AVBGSPackageDataInt@@` -`class BGSNamedPackageData`: VTable [0x000000000308B8E0, 0x0000000000000000 offset, 11 functions] `.?AV?$BGSNamedPackageData@VIAITarget@@@@` -`class BGSNamedPackageData`: VTable [0x000000000308B958, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSNamedPackageData@VIAITarget@@@@` -`class BGSPackageDataBasicTemplate >,&class BSFixedString const kPackageDataRefTypeName,0>`: VTable [0x000000000308BA00, 0x0000000000000000 offset, 13 functions] `.?AV?$BGSPackageDataBasicTemplate@VIAITarget@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@$1?kPackageDataRefTypeName@@3VBSFixedString@@B$0A@@@` -`class BGSPackageDataBasicTemplate >,&class BSFixedString const kPackageDataRefTypeName,0>`: VTable [0x000000000308BA88, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSPackageDataBasicTemplate@VIAITarget@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@$1?kPackageDataRefTypeName@@3VBSFixedString@@B$0A@@@` -`class BGSPackageDataRefOLD`: VTable [0x000000000308BB30, 0x0000000000000000 offset, 13 functions] `.?AVBGSPackageDataRefOLD@@` -`class BGSPackageDataRefOLD`: VTable [0x000000000308BBB8, 0x0000000000000008 offset, 16 functions] `.?AVBGSPackageDataRefOLD@@` -`class BGSNamedPackageData`: VTable [0x000000000308BC60, 0x0000000000000000 offset, 3 functions] `.?AV?$BGSNamedPackageData@VIPackageDataAIWorldLocationHandle@@@@` -`class BGSNamedPackageData`: VTable [0x000000000308BC88, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSNamedPackageData@VIPackageDataAIWorldLocationHandle@@@@` -`class BGSPackageDataPointerTemplate`: VTable [0x000000000308BD30, 0x0000000000000000 offset, 5 functions] `.?AV?$BGSPackageDataPointerTemplate@VIPackageDataAIWorldLocationHandle@@VPackageLocation@@$1?kPackageDataLocationTypeName@@3VBSFixedString@@B@@` -`class BGSPackageDataPointerTemplate`: VTable [0x000000000308BD70, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSPackageDataPointerTemplate@VIPackageDataAIWorldLocationHandle@@VPackageLocation@@$1?kPackageDataLocationTypeName@@3VBSFixedString@@B@@` -`class BGSPackageDataLocation`: VTable [0x000000000308BE18, 0x0000000000000000 offset, 5 functions] `.?AVBGSPackageDataLocation@@` -`class BGSPackageDataLocation`: VTable [0x000000000308BE58, 0x0000000000000008 offset, 16 functions] `.?AVBGSPackageDataLocation@@` -`class BGSPackageDataPointerTemplate`: VTable [0x000000000308BF00, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataPointerTemplate@VIPackageData@@VPackageTarget@@$1?kPackageDataTargetSelectorTypeName@@3VBSFixedString@@B@@` -`class BGSPackageDataTargetSelector`: VTable [0x000000000308BFB8, 0x0000000000000000 offset, 18 functions] `.?AVBGSPackageDataTargetSelector@@` -`struct IBSTCreator`: VTable [0x000000000308C2D0, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIPackageData@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000308C2F8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataLocation@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000308C320, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataLocation@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000308C348, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataLocation@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000308C370, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataTargetSelector@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000308C398, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataTargetSelector@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000308C3C0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataTargetSelector@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000308C3E8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataRefOLD@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000308C410, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataRefOLD@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000308C438, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataRefOLD@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000308C460, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataFloat@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000308C488, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataFloat@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000308C4B0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataFloat@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000308C4D8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataInt@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000308C500, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataInt@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000308C528, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataInt@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000308C550, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataBool@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000308C578, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataBool@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000308C5A0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataBool@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`class ObjectListItem`: VTable [0x000000000308CCD8, 0x0000000000000000 offset, 11 functions] `.?AVObjectListItem@@` -`class ObjectListItem`: VTable [0x000000000308CD50, 0x0000000000000008 offset, 16 functions] `.?AVObjectListItem@@` -`class BGSPackageDataObjectList`: VTable [0x000000000308CDF8, 0x0000000000000000 offset, 11 functions] `.?AVBGSPackageDataObjectList@@` -`class BGSPackageDataObjectList`: VTable [0x000000000308CE70, 0x0000000000000008 offset, 16 functions] `.?AVBGSPackageDataObjectList@@` -`struct BSTDerivedCreator`: VTable [0x000000000308CFB0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataObjectList@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000308CFD8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataObjectList@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000308D000, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataObjectList@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`class BGSPackageDataPointerTemplate`: VTable [0x000000000308D1D8, 0x0000000000000000 offset, 13 functions] `.?AV?$BGSPackageDataPointerTemplate@VIAITarget@@VPackageTarget@@$1?kPackageDataRef2TypeName@@3VBSFixedString@@B@@` -`class BGSPackageDataPointerTemplate`: VTable [0x000000000308D260, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSPackageDataPointerTemplate@VIAITarget@@VPackageTarget@@$1?kPackageDataRef2TypeName@@3VBSFixedString@@B@@` -`class BGSPackageDataRef`: VTable [0x000000000308D308, 0x0000000000000000 offset, 13 functions] `.?AVBGSPackageDataRef@@` -`class BGSPackageDataRef`: VTable [0x000000000308D390, 0x0000000000000008 offset, 16 functions] `.?AVBGSPackageDataRef@@` -`struct BSTDerivedCreator`: VTable [0x000000000308D4D0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataRef@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000308D4F8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataRef@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000308D520, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataRef@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`class BGSPackageDataTopic`: VTable [0x000000000308D638, 0x0000000000000000 offset, 16 functions] `.?AVBGSPackageDataTopic@@` -`struct BSTDerivedCreator`: VTable [0x000000000308D6E0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataTopic@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000308D708, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataTopic@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000308D730, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataTopic@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`class IProcedureTreeExecState`: VTable [0x000000000308ECD0, 0x0000000000000000 offset, 6 functions] `.?AVIProcedureTreeExecState@@` -`class IProcedureTreeItem`: VTable [0x000000000308ED18, 0x0000000000000000 offset, 19 functions] `.?AVIProcedureTreeItem@@` -`class BGSTypedItem`: VTable [0x000000000308EDD8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureDoneExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureDoneExecState`: VTable [0x000000000308EE20, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureDoneExecState@@` -`class BGSProcedureTreeConditionalItem`: VTable [0x000000000308EE68, 0x0000000000000000 offset, 19 functions] `.?AVBGSProcedureTreeConditionalItem@@` -`class BGSProcedureTreeBranch`: VTable [0x000000000308EF28, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeBranch@@` -`class BGSProcedureTreeOneChildExecState`: VTable [0x000000000308EFF8, 0x0000000000000000 offset, 7 functions] `.?AVBGSProcedureTreeOneChildExecState@@` -`class BGSTypedItem`: VTable [0x000000000308F048, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeSequence@@VBGSProcedureTreeBranch@@@@` -`class BGSProcedureTreeSequence`: VTable [0x000000000308F118, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeSequence@@` -`class BGSTypedItem`: VTable [0x000000000308F1E8, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeSequenceExecState@@VBGSProcedureTreeOneChildExecState@@@@` -`class BGSProcedureTreeSequenceExecState`: VTable [0x000000000308F238, 0x0000000000000000 offset, 7 functions] `.?AVBGSProcedureTreeSequenceExecState@@` -`class BGSTypedItem`: VTable [0x000000000308F288, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeStacked@@VBGSProcedureTreeBranch@@@@` -`class BGSProcedureTreeStacked`: VTable [0x000000000308F358, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeStacked@@` -`class BGSTypedItem`: VTable [0x000000000308F428, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeStackedExecState@@VBGSProcedureTreeOneChildExecState@@@@` -`class BGSProcedureTreeStackedExecState`: VTable [0x000000000308F478, 0x0000000000000000 offset, 7 functions] `.?AVBGSProcedureTreeStackedExecState@@` -`class BGSTypedItem`: VTable [0x000000000308F4C8, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeSimultaneous@@VBGSProcedureTreeBranch@@@@` -`class BGSProcedureTreeSimultaneous`: VTable [0x000000000308F598, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeSimultaneous@@` -`class BGSTypedItem`: VTable [0x000000000308F668, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeSimultaneousExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureTreeSimultaneousExecState`: VTable [0x000000000308F6B0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureTreeSimultaneousExecState@@` -`class BGSTypedItem`: VTable [0x000000000308F6F8, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeRandom@@VBGSProcedureTreeBranch@@@@` -`class BGSProcedureTreeRandom`: VTable [0x000000000308F7C8, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeRandom@@` -`class BGSTypedItem`: VTable [0x000000000308F898, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeRandomExecState@@VBGSProcedureTreeOneChildExecState@@@@` -`class BGSProcedureTreeRandomExecState`: VTable [0x000000000308F8E8, 0x0000000000000000 offset, 7 functions] `.?AVBGSProcedureTreeRandomExecState@@` -`class BGSTypedItem`: VTable [0x000000000308F9D0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureDialogueExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureDialogueExecState`: VTable [0x000000000308FA18, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureDialogueExecState@@` -`class BGSTypedItem`: VTable [0x000000000308FA60, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureEatExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureEatExecState`: VTable [0x000000000308FAA8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureEatExecState@@` -`class BGSTypedItem`: VTable [0x000000000308FAF0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureFindExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureFindExecState`: VTable [0x000000000308FB38, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureFindExecState@@` -`class BGSTypedItem`: VTable [0x000000000308FB80, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureGuardExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureGuardExecState`: VTable [0x000000000308FBC8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureGuardExecState@@` -`class BGSTypedItem`: VTable [0x000000000308FC10, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureHoldPositionExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureHoldPositionExecState`: VTable [0x000000000308FC58, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureHoldPositionExecState@@` -`class BGSTypedItem`: VTable [0x000000000308FCA0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureKeepAnEyeOnExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureKeepAnEyeOnExecState`: VTable [0x000000000308FCE8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureKeepAnEyeOnExecState@@` -`class BGSTypedItem`: VTable [0x000000000308FD30, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureSayExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureSayExecState`: VTable [0x000000000308FD78, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureSayExecState@@` -`class BGSTypedItem`: VTable [0x000000000308FDC0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureWaitExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureWaitExecState`: VTable [0x000000000308FE08, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureWaitExecState@@` -`struct IBSTCreator`: VTable [0x000000000308FE50, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIAIWorldLocation@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000308FE78, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSAIWorldLocationRefRadius@@VIAIWorldLocation@@@@` -`class AutoRegisterFactory,class BGSAIWorldLocationFactory>`: VTable [0x000000000308FEA0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSAIWorldLocationRefRadius@@VIAIWorldLocation@@@@VBGSAIWorldLocationFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x000000000308FEC8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSAIWorldLocationRefRadius@@VBGSAIWorldLocationFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000308FEF0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSAIWorldLocationPointRadius@@VIAIWorldLocation@@@@` -`class AutoRegisterFactory,class BGSAIWorldLocationFactory>`: VTable [0x000000000308FF18, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSAIWorldLocationPointRadius@@VIAIWorldLocation@@@@VBGSAIWorldLocationFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x000000000308FF40, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSAIWorldLocationPointRadius@@VBGSAIWorldLocationFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000308FF68, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSAIWorldLocationInteriorCell@@VIAIWorldLocation@@@@` -`class AutoRegisterFactory,class BGSAIWorldLocationFactory>`: VTable [0x000000000308FF90, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSAIWorldLocationInteriorCell@@VIAIWorldLocation@@@@VBGSAIWorldLocationFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x000000000308FFB8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSAIWorldLocationInteriorCell@@VBGSAIWorldLocationFactory@@@@` -`struct IBSTCreator`: VTable [0x000000000308FFE0, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIProcedureTreeItem@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090008, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeProcedure@@VIProcedureTreeItem@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003090030, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeProcedure@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003090058, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeProcedure@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090080, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeSequence@@VIProcedureTreeItem@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000030900A8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeSequence@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000030900D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeSequence@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030900F8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeStacked@@VIProcedureTreeItem@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003090120, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeStacked@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003090148, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeStacked@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090170, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeSimultaneous@@VIProcedureTreeItem@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003090198, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeSimultaneous@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000030901C0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeSimultaneous@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030901E8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeRandom@@VIProcedureTreeItem@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003090210, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeRandom@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003090238, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeRandom@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct IBSTCreator`: VTable [0x0000000003090260, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIProcedureTreeExecState@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090288, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeSequenceExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x00000000030902B0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeSequenceExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x00000000030902D8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeSequenceExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090300, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeStackedExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090328, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeStackedExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090350, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeStackedExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090378, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeSimultaneousExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x00000000030903A0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeSimultaneousExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x00000000030903C8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeSimultaneousExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030903F0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeRandomExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090418, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeRandomExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090440, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeRandomExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090468, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureAcquireExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090490, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureAcquireExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x00000000030904B8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureAcquireExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030904E0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureActivateExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090508, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureActivateExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090530, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureActivateExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090558, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDialogueActivateExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090580, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDialogueActivateExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x00000000030905A8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDialogueActivateExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030905D0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDialogueExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x00000000030905F8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDialogueExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090620, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDialogueExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090648, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDoneExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090670, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDoneExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090698, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDoneExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030906C0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureEatExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x00000000030906E8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureEatExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090710, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureEatExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090738, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureEscortExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090760, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureEscortExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090788, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureEscortExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030907B0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFindExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x00000000030907D8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFindExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090800, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFindExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090828, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFleeExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090850, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFleeExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090878, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFleeExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030908A0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFlightGrabExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x00000000030908C8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFlightGrabExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x00000000030908F0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFlightGrabExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090918, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFollowExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090940, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFollowExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090968, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFollowExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090990, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureGuardExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x00000000030909B8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureGuardExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x00000000030909E0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureGuardExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090A08, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureHoldPositionExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090A30, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureHoldPositionExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090A58, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureHoldPositionExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090A80, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureHoverExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090AA8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureHoverExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090AD0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureHoverExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090AF8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureKeepAnEyeOnExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090B20, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureKeepAnEyeOnExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090B48, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureKeepAnEyeOnExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090B70, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureLockUnlockExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090B98, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureLockUnlockExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090BC0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureLockUnlockExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090BE8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureOrbitExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090C10, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureOrbitExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090C38, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureOrbitExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090C60, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedurePatrolExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090C88, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedurePatrolExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090CB0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedurePatrolExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090CD8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSandboxExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090D00, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSandboxExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090D28, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSandboxExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090D50, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSayExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090D78, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSayExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090DA0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSayExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090DC8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureShoutExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090DF0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureShoutExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090E18, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureShoutExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090E40, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSitSleepExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090E68, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSitSleepExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090E90, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSitSleepExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090EB8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTravelExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090EE0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTravelExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090F08, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTravelExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090F30, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseIdleMarkerExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090F58, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseIdleMarkerExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090F80, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseIdleMarkerExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003090FA8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseMagicExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003090FD0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseMagicExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003090FF8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseMagicExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003091020, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseWeaponExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003091048, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseWeaponExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003091070, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseWeaponExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003091098, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureWaitExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x00000000030910C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureWaitExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x00000000030910E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureWaitExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003091110, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureWanderExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000003091138, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureWanderExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000003091160, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureWanderExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`class IProcedure`: VTable [0x00000000030916A8, 0x0000000000000000 offset, 32 functions] `.?AVIProcedure@@` -`class BGSProcedureBase`: VTable [0x00000000030917E8, 0x0000000000000000 offset, 34 functions] `.?AVBGSProcedureBase@@` -`class BGSProcedureTyped`: VTable [0x0000000003091938, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureDoneParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureDone`: VTable [0x0000000003091A98, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureDone@@` -`struct IBSTCreator`: VTable [0x0000000003091BF8, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIProcedure@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003091C20, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDone@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003091C48, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDone@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003091C70, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDone@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class IPackageDataTypeCheck`: VTable [0x0000000003092200, 0x0000000000000000 offset, 4 functions] `.?AVIPackageDataTypeCheck@@` -`class BGSProcedureTyped`: VTable [0x0000000003092230, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureAcquireParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureAcquire`: VTable [0x0000000003092390, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureAcquire@@` -`class BGSTypedItem`: VTable [0x00000000030924F0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureAcquireExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureAcquireExecState`: VTable [0x0000000003092538, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureAcquireExecState@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000003092580, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIAITarget@@VBGSPackageDataRef@@@@` -`class BGSPackageDataTypeCheck`: VTable [0x00000000030925B0, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataInt@@V1@@@` -`class BGSPackageDataTypeCheck`: VTable [0x00000000030925E0, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataBool@@V1@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003092658, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureAcquire@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003092680, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureAcquire@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000030926A8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureAcquire@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x00000000030927C0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureActivateParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureActivate`: VTable [0x0000000003092920, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureActivate@@` -`class BGSTypedItem`: VTable [0x0000000003092A80, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureActivateExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureActivateExecState`: VTable [0x0000000003092AC8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureActivateExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000003092B20, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureActivate@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003092B48, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureActivate@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003092B70, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureActivate@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000003092C98, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureDialogueParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureDialogue`: VTable [0x0000000003092DF8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureDialogue@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000003092F58, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataTopic@@V1@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003092FC0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDialogue@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003092FE8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDialogue@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003093010, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDialogue@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000003093198, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureDialogueActivateParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureDialogueActivate`: VTable [0x00000000030932F8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureDialogueActivate@@` -`class BGSTypedItem`: VTable [0x0000000003093458, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureDialogueActivateExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureDialogueActivateExecState`: VTable [0x00000000030934A0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureDialogueActivateExecState@@` -`class BGSPackageDataTypeCheck`: VTable [0x00000000030934E8, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIPackageDataAIWorldLocationHandle@@VBGSPackageDataLocation@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003093518, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDialogueActivate@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003093540, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDialogueActivate@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003093568, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDialogueActivate@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x00000000030936D0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureEatParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureEat`: VTable [0x0000000003093830, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureEat@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000003093990, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataTargetSelector@@V1@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030939D8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureEat@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003093A00, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureEat@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003093A28, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureEat@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000003093BE0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureEscortParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureEscort`: VTable [0x0000000003093D40, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureEscort@@` -`class BGSTypedItem`: VTable [0x0000000003093EA0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureEscortExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureEscortExecState`: VTable [0x0000000003093EE8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureEscortExecState@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000003093F30, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIAITarget@@VBGSPackageDataObjectList@@@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000003093F60, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataFloat@@V1@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003094038, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureEscort@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003094060, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureEscort@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003094088, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureEscort@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x00000000030941C8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFindParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureFind`: VTable [0x0000000003094328, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFind@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000003094488, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataObjectList@@V1@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030944E0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFind@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003094508, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFind@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003094530, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFind@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x00000000030946C8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFleeParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureFlee`: VTable [0x0000000003094828, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFlee@@` -`class BGSTypedItem`: VTable [0x0000000003094988, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureFleeExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureFleeExecState`: VTable [0x00000000030949D0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureFleeExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000003094AB0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFlee@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003094AD8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFlee@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003094B00, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFlee@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000003094C18, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFlightGrabParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureFlightGrab`: VTable [0x0000000003094D78, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFlightGrab@@` -`class BGSTypedItem`: VTable [0x0000000003094ED8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureFlightGrabExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureFlightGrabExecState`: VTable [0x0000000003094F20, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureFlightGrabExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000003094F88, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFlightGrab@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003094FB0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFlightGrab@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003094FD8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFlightGrab@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x00000000030951C0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFollowParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureFollow`: VTable [0x0000000003095320, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFollow@@` -`class BGSProcedureTyped`: VTable [0x0000000003095480, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFollowToParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureFollowTo`: VTable [0x00000000030955E0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFollowTo@@` -`class BGSTypedItem`: VTable [0x0000000003095740, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureFollowExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureFollowExecState`: VTable [0x0000000003095788, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureFollowExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000003095818, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFollow@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003095840, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFollow@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003095868, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFollow@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000003095890, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIPackageDataAIWorldLocationHandle@@VBGSPackageDataRef@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030958D0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFollowTo@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000030958F8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFollowTo@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003095920, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFollowTo@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x00000000030959F8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureForceGreetParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureForceGreet`: VTable [0x0000000003095B58, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureForceGreet@@` -`struct BSTDerivedCreator`: VTable [0x0000000003095CF0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureForceGreet@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003095D18, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureForceGreet@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003095D40, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureForceGreet@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000003095E60, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureGuardParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureGuard`: VTable [0x0000000003095FC0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureGuard@@` -`struct BSTDerivedCreator`: VTable [0x0000000003096168, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureGuard@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003096190, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureGuard@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000030961B8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureGuard@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x00000000030962A0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureHoldPositionParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureHoldPosition`: VTable [0x0000000003096400, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureHoldPosition@@` -`struct BSTDerivedCreator`: VTable [0x0000000003096560, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureHoldPosition@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003096588, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureHoldPosition@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000030965B0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureHoldPosition@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x00000000030966E0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureHoverParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureHover`: VTable [0x0000000003096840, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureHover@@` -`class BGSTypedItem`: VTable [0x00000000030969A0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureHoverExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureHoverExecState`: VTable [0x00000000030969E8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureHoverExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000003096A38, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureHover@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003096A60, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureHover@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003096A88, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureHover@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000003096B88, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureKeepAnEyeOnParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureKeepAnEyeOn`: VTable [0x0000000003096CE8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureKeepAnEyeOn@@` -`struct BSTDerivedCreator`: VTable [0x0000000003096E78, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureKeepAnEyeOn@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003096EA0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureKeepAnEyeOn@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003096EC8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureKeepAnEyeOn@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000003097040, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureLockParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureLock`: VTable [0x00000000030971A0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureLock@@` -`class BGSProcedureTyped`: VTable [0x0000000003097300, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureUnlockParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureUnlock`: VTable [0x0000000003097460, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureUnlock@@` -`class BGSTypedItem`: VTable [0x00000000030975C0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureLockUnlockExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureLockUnlockExecState`: VTable [0x0000000003097608, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureLockUnlockExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000003097668, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureLock@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003097690, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureLock@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000030976B8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureLock@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030976F0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUnlock@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003097718, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUnlock@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003097740, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUnlock@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000003097868, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureOrbitParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureOrbit`: VTable [0x00000000030979C8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureOrbit@@` -`class BGSTypedItem`: VTable [0x0000000003097B28, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureOrbitExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureOrbitExecState`: VTable [0x0000000003097B70, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureOrbitExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000003097C48, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureOrbit@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003097C70, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureOrbit@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003097C98, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureOrbit@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000003097DD8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedurePatrolParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedurePatrol`: VTable [0x0000000003097F38, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedurePatrol@@` -`class BGSTypedItem`: VTable [0x0000000003098098, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedurePatrolExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedurePatrolExecState`: VTable [0x00000000030980E0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedurePatrolExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000003098170, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedurePatrol@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003098198, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedurePatrol@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000030981C0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedurePatrol@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x00000000030982A8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedurePursueParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedurePursue`: VTable [0x0000000003098408, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedurePursue@@` -`struct BSTDerivedCreator`: VTable [0x00000000030985A8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedurePursue@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000030985D0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedurePursue@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000030985F8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedurePursue@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x00000000030988B8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureSandboxParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureSandbox`: VTable [0x0000000003098A18, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureSandbox@@` -`class BGSTypedItem`: VTable [0x0000000003098B78, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureSandboxExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureSandboxExecState`: VTable [0x0000000003098BC0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureSandboxExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000003098CD0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSandbox@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003098CF8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSandbox@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003098D20, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSandbox@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000003098E18, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureSayParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureSay`: VTable [0x0000000003098F78, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureSay@@` -`struct BSTDerivedCreator`: VTable [0x00000000030990D8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSay@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003099100, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSay@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003099128, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSay@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x000000000309B2C0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureShoutParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureShout`: VTable [0x000000000309B420, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureShout@@` -`class BGSTypedItem`: VTable [0x000000000309B580, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureShoutExecState@@VIProcedureTreeExecState@@@@` -`class BSTEventSink`: VTable [0x000000000309B5C8, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UTESSpellCastEvent@@@@` -`class BGSProcedureShoutExecState`: VTable [0x000000000309B5E8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureShoutExecState@@` -`class BGSProcedureShoutExecState`: VTable [0x000000000309B630, 0x0000000000000008 offset, 2 functions] `.?AVBGSProcedureShoutExecState@@` -`struct BSTDerivedCreator`: VTable [0x000000000309B678, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureShout@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000309B6A0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureShout@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000309B6C8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureShout@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x000000000309B880, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureSitParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureSit`: VTable [0x000000000309B9E0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureSit@@` -`class BGSProcedureTyped`: VTable [0x000000000309BB40, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureSleepParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureSleep`: VTable [0x000000000309BCA0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureSleep@@` -`class BGSTypedItem`: VTable [0x000000000309BE00, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureSitSleepExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureSitSleepExecState`: VTable [0x000000000309BE48, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureSitSleepExecState@@` -`struct BSTDerivedCreator`: VTable [0x000000000309BE90, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSit@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000309BEB8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSit@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000309BEE0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSit@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000309BF08, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSleep@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000309BF30, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSleep@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000309BF58, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSleep@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x000000000309C070, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureTravelParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureTravel`: VTable [0x000000000309C1D0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureTravel@@` -`class BGSTypedItem`: VTable [0x000000000309C330, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureTravelExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureTravelExecState`: VTable [0x000000000309C378, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureTravelExecState@@` -`struct BSTDerivedCreator`: VTable [0x000000000309C3C0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTravel@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000309C3E8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTravel@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000309C410, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTravel@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSTypedItem`: VTable [0x000000000309C5C8, 0x0000000000000000 offset, 19 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeProcedure@@VBGSProcedureTreeConditionalItem@@@@` -`class BGSProcedureTreeProcedure`: VTable [0x000000000309C688, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeProcedure@@` -`class BGSProcedureTyped`: VTable [0x000000000309CAC0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureUseIdleMarkerParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureUseIdleMarker`: VTable [0x000000000309CC20, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureUseIdleMarker@@` -`class BGSTypedItem`: VTable [0x000000000309CD80, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureUseIdleMarkerExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureUseIdleMarkerExecState`: VTable [0x000000000309CDC8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureUseIdleMarkerExecState@@` -`struct BSTDerivedCreator`: VTable [0x000000000309CE10, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseIdleMarker@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000309CE38, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseIdleMarker@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000309CE60, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseIdleMarker@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x000000000309D0A8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureUseMagicParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureUseMagic`: VTable [0x000000000309D208, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureUseMagic@@` -`class BGSTypedItem`: VTable [0x000000000309D368, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureUseMagicExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureUseMagicExecState`: VTable [0x000000000309D3B0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureUseMagicExecState@@` -`class BGSProcedureUseMagicExecState`: VTable [0x000000000309D3F8, 0x0000000000000008 offset, 2 functions] `.?AVBGSProcedureUseMagicExecState@@` -`struct BSTDerivedCreator`: VTable [0x000000000309D498, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseMagic@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000309D4C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseMagic@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000309D4E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseMagic@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x000000000309D808, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureUseWeaponParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureUseWeapon`: VTable [0x000000000309D968, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureUseWeapon@@` -`class BGSTypedItem`: VTable [0x000000000309DAC8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureUseWeaponExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureUseWeaponExecState`: VTable [0x000000000309DB10, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureUseWeaponExecState@@` -`struct BSTDerivedCreator`: VTable [0x000000000309DC88, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseWeapon@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000309DCB0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseWeapon@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000309DCD8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseWeapon@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x000000000309DDD0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureWaitParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureWait`: VTable [0x000000000309DF30, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureWait@@` -`struct BSTDerivedCreator`: VTable [0x000000000309E0A0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureWait@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000309E0C8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureWait@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000309E0F0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureWait@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x000000000309E238, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureWanderParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureWander`: VTable [0x000000000309E398, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureWander@@` -`class BGSTypedItem`: VTable [0x000000000309E4F8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureWanderExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureWanderExecState`: VTable [0x000000000309E540, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureWanderExecState@@` -`struct BSTDerivedCreator`: VTable [0x000000000309E5B8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureWander@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000309E5E0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureWander@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000309E608, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureWander@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class IVisitProcedures`: VTable [0x000000000309E660, 0x0000000000000000 offset, 2 functions] `.?AVIVisitProcedures@@` -`class BGSVisitProceduresInitActorLocation`: VTable [0x000000000309E680, 0x0000000000000000 offset, 2 functions] `.?AVBGSVisitProceduresInitActorLocation@@` -`class BGSVisitProceduresCheckGuardWarnTarget`: VTable [0x000000000309E6A0, 0x0000000000000000 offset, 2 functions] `.?AVBGSVisitProceduresCheckGuardWarnTarget@@` -`class TESPackage`: VTable [0x000000000309FBE8, 0x0000000000000000 offset, 101 functions] `.?AVTESPackage@@` -`class CSScript::ICanRemoveScriptFunctor`: VTable [0x000000000309FFC0, 0x0000000000000000 offset, 2 functions] `.?AVICanRemoveScriptFunctor@CSScript@@` -`class CSScript::IFragmentUIHandler`: VTable [0x000000000309FFE0, 0x0000000000000000 offset, 6 functions] `.?AVIFragmentUIHandler@CSScript@@` -`class PackageCreator`: VTable [0x00000000030A0040, 0x0000000000000000 offset, 7 functions] `.?AVPackageCreator@@` -`class `anonymous namespace'::PackageFragmentUIHandler`: VTable [0x00000000030A0090, 0x0000000000000000 offset, 6 functions] `.?AVPackageFragmentUIHandler@?A0x25315551@@` -`class PackageInternal::FragmentRemoveCheckFunctor`: VTable [0x00000000030A00D8, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@PackageInternal@@` -`class NiTMapBase >,class TESObjectREFR * __ptr64,bool>`: VTable [0x00000000030A07E8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESObjectREFR@@_N@@@@PEAVTESObjectREFR@@_N@@` -`class NiTMap`: VTable [0x00000000030A0838, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESObjectREFR@@_N@@` -`class TESPackageData`: VTable [0x00000000030A09B0, 0x0000000000000000 offset, 9 functions] `.?AVTESPackageData@@` -`class TESAmbushPackageData`: VTable [0x00000000030A0A10, 0x0000000000000000 offset, 9 functions] `.?AVTESAmbushPackageData@@` -`class TESCustomPackageData`: VTable [0x00000000030A0F68, 0x0000000000000000 offset, 36 functions] `.?AVTESCustomPackageData@@` -`class IProcedureTreeVisitor`: VTable [0x00000000030A10D0, 0x0000000000000000 offset, 3 functions] `.?AVIProcedureTreeVisitor@@` -`class CustomUtils::HasForceGreetVisitor`: VTable [0x00000000030A10F8, 0x0000000000000000 offset, 3 functions] `.?AVHasForceGreetVisitor@CustomUtils@@` -`class TESDialoguePackageData`: VTable [0x00000000030A15B0, 0x0000000000000000 offset, 9 functions] `.?AVTESDialoguePackageData@@` -`class TESEatPackageData`: VTable [0x00000000030A16C0, 0x0000000000000000 offset, 9 functions] `.?AVTESEatPackageData@@` -`class TESEscortPackageData`: VTable [0x00000000030A1760, 0x0000000000000000 offset, 9 functions] `.?AVTESEscortPackageData@@` -`class TESFindPackageData`: VTable [0x00000000030A17C8, 0x0000000000000000 offset, 10 functions] `.?AVTESFindPackageData@@` -`class TESFollowPackageData`: VTable [0x00000000030A1878, 0x0000000000000000 offset, 9 functions] `.?AVTESFollowPackageData@@` -`class TESPatrolPackageData`: VTable [0x00000000030A18D8, 0x0000000000000000 offset, 9 functions] `.?AVTESPatrolPackageData@@` -`class TESUseItemPackageData`: VTable [0x00000000030A1978, 0x0000000000000000 offset, 9 functions] `.?AVTESUseItemPackageData@@` -`class TESUseWeaponPackageData`: VTable [0x00000000030A1A98, 0x0000000000000000 offset, 9 functions] `.?AVTESUseWeaponPackageData@@` -`class PackageLocation`: VTable [0x00000000030A20C0, 0x0000000000000000 offset, 3 functions] `.?AVPackageLocation@@` -`class BGSPackageDataTypeCheck`: VTable [0x00000000030A25C8, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIAITarget@@V1@@@` -`struct MiscStatManager::FindStatByCRC`: VTable [0x00000000030A4090, 0x0000000000000000 offset, 1 functions] `.?AUFindStatByCRC@MiscStatManager@@` -`struct BSScript::IFindBoundObjectFunctor`: VTable [0x00000000030A40A8, 0x0000000000000000 offset, 2 functions] `.?AUIFindBoundObjectFunctor@BSScript@@` -`struct `anonymous namespace'::VMConditionalVariableExistsFunc`: VTable [0x00000000030A40E0, 0x0000000000000000 offset, 2 functions] `.?AUVMConditionalVariableExistsFunc@?A0xcf9165fd@@` -`class ExtraHavok`: VTable [0x00000000030A4B08, 0x0000000000000000 offset, 3 functions] `.?AVExtraHavok@@` -`class ExtraCell3D`: VTable [0x00000000030A9130, 0x0000000000000000 offset, 3 functions] `.?AVExtraCell3D@@` -`class ExtraRegionList`: VTable [0x00000000030A9158, 0x0000000000000000 offset, 3 functions] `.?AVExtraRegionList@@` -`class ExtraCellMusicType`: VTable [0x00000000030A9180, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellMusicType@@` -`class ExtraCellAcousticSpace`: VTable [0x00000000030A91A8, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellAcousticSpace@@` -`class ExtraCellSkyRegion`: VTable [0x00000000030A91D0, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellSkyRegion@@` -`class ExtraCellImageSpace`: VTable [0x00000000030A91F8, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellImageSpace@@` -`class ExtraCellWaterType`: VTable [0x00000000030A9220, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellWaterType@@` -`class ExtraDetachTime`: VTable [0x00000000030A9248, 0x0000000000000000 offset, 3 functions] `.?AVExtraDetachTime@@` -`class ExtraGIDBuffer`: VTable [0x00000000030A9270, 0x0000000000000000 offset, 3 functions] `.?AVExtraGIDBuffer@@` -`class ExtraMagicLight`: VTable [0x00000000030A9350, 0x0000000000000000 offset, 3 functions] `.?AVExtraMagicLight@@` -`class ExtraFromAlias`: VTable [0x00000000030A9378, 0x0000000000000000 offset, 3 functions] `.?AVExtraFromAlias@@` -`class ExtraOpenCloseActivateRef`: VTable [0x00000000030A93A0, 0x0000000000000000 offset, 3 functions] `.?AVExtraOpenCloseActivateRef@@` -`class ExtraTeleportName`: VTable [0x00000000030A93C8, 0x0000000000000000 offset, 3 functions] `.?AVExtraTeleportName@@` -`class ExtraOriginalReference`: VTable [0x00000000030A93F0, 0x0000000000000000 offset, 3 functions] `.?AVExtraOriginalReference@@` -`class ExtraWorn`: VTable [0x00000000030A9418, 0x0000000000000000 offset, 3 functions] `.?AVExtraWorn@@` -`class ExtraWornLeft`: VTable [0x00000000030A9440, 0x0000000000000000 offset, 3 functions] `.?AVExtraWornLeft@@` -`class ExtraCannotWear`: VTable [0x00000000030A9468, 0x0000000000000000 offset, 3 functions] `.?AVExtraCannotWear@@` -`class ExtraHealth`: VTable [0x00000000030A9490, 0x0000000000000000 offset, 3 functions] `.?AVExtraHealth@@` -`class ExtraHealthPerc`: VTable [0x00000000030A94B8, 0x0000000000000000 offset, 3 functions] `.?AVExtraHealthPerc@@` -`class ExtraTimeLeft`: VTable [0x00000000030A94E0, 0x0000000000000000 offset, 3 functions] `.?AVExtraTimeLeft@@` -`class ExtraCharge`: VTable [0x00000000030A9508, 0x0000000000000000 offset, 3 functions] `.?AVExtraCharge@@` -`class ExtraScale`: VTable [0x00000000030A9530, 0x0000000000000000 offset, 3 functions] `.?AVExtraScale@@` -`class ExtraCachedScale`: VTable [0x00000000030A9558, 0x0000000000000000 offset, 3 functions] `.?AVExtraCachedScale@@` -`class ExtraReferenceHandle`: VTable [0x00000000030A9580, 0x0000000000000000 offset, 3 functions] `.?AVExtraReferenceHandle@@` -`class ExtraLocation`: VTable [0x00000000030A95A8, 0x0000000000000000 offset, 3 functions] `.?AVExtraLocation@@` -`class ExtraMasterLocation`: VTable [0x00000000030A95D0, 0x0000000000000000 offset, 3 functions] `.?AVExtraMasterLocation@@` -`class ExtraEditorFlags`: VTable [0x00000000030A95F8, 0x0000000000000000 offset, 3 functions] `.?AVExtraEditorFlags@@` -`class ExtraEditorTestRadius`: VTable [0x00000000030A9620, 0x0000000000000000 offset, 3 functions] `.?AVExtraEditorTestRadius@@` -`class ExtraLeveledItem`: VTable [0x00000000030A9648, 0x0000000000000000 offset, 3 functions] `.?AVExtraLeveledItem@@` -`class ExtraOutfitItem`: VTable [0x00000000030A9670, 0x0000000000000000 offset, 3 functions] `.?AVExtraOutfitItem@@` -`class ExtraRagDollData`: VTable [0x00000000030A9698, 0x0000000000000000 offset, 3 functions] `.?AVExtraRagDollData@@` -`class ExtraEncounterZone`: VTable [0x00000000030A96C0, 0x0000000000000000 offset, 3 functions] `.?AVExtraEncounterZone@@` -`class ExtraEnableStateParent`: VTable [0x00000000030A96E8, 0x0000000000000000 offset, 3 functions] `.?AVExtraEnableStateParent@@` -`class ExtraEnableStateChildren`: VTable [0x00000000030A9710, 0x0000000000000000 offset, 3 functions] `.?AVExtraEnableStateChildren@@` -`class ExtraAttachRef`: VTable [0x00000000030A9738, 0x0000000000000000 offset, 3 functions] `.?AVExtraAttachRef@@` -`class ExtraAttachRefChildren`: VTable [0x00000000030A9760, 0x0000000000000000 offset, 3 functions] `.?AVExtraAttachRefChildren@@` -`class ExtraRandomTeleportMarker`: VTable [0x00000000030A9788, 0x0000000000000000 offset, 3 functions] `.?AVExtraRandomTeleportMarker@@` -`class ExtraAshPileRef`: VTable [0x00000000030A97B0, 0x0000000000000000 offset, 3 functions] `.?AVExtraAshPileRef@@` -`class ExtraLocationRefType`: VTable [0x00000000030A97D8, 0x0000000000000000 offset, 3 functions] `.?AVExtraLocationRefType@@` -`class ExtraLeveledItemBase`: VTable [0x00000000030A9800, 0x0000000000000000 offset, 3 functions] `.?AVExtraLeveledItemBase@@` -`class ExtraLinkedRef`: VTable [0x00000000030A9828, 0x0000000000000000 offset, 3 functions] `.?AVExtraLinkedRef@@` -`class ExtraLinkedRefChildren`: VTable [0x00000000030A9850, 0x0000000000000000 offset, 3 functions] `.?AVExtraLinkedRefChildren@@` -`class ExtraActivateRef`: VTable [0x00000000030A9878, 0x0000000000000000 offset, 3 functions] `.?AVExtraActivateRef@@` -`class ExtraActivateRefChildren`: VTable [0x00000000030A98A0, 0x0000000000000000 offset, 3 functions] `.?AVExtraActivateRefChildren@@` -`class ExtraReflectedRefs`: VTable [0x00000000030A98C8, 0x0000000000000000 offset, 3 functions] `.?AVExtraReflectedRefs@@` -`class ExtraReflectorRefs`: VTable [0x00000000030A98F0, 0x0000000000000000 offset, 3 functions] `.?AVExtraReflectorRefs@@` -`class ExtraWaterLightRefs`: VTable [0x00000000030A9918, 0x0000000000000000 offset, 3 functions] `.?AVExtraWaterLightRefs@@` -`class ExtraLitWaterRefs`: VTable [0x00000000030A9940, 0x0000000000000000 offset, 3 functions] `.?AVExtraLitWaterRefs@@` -`class ExtraLevCreaModifier`: VTable [0x00000000030A9968, 0x0000000000000000 offset, 3 functions] `.?AVExtraLevCreaModifier@@` -`class ExtraPoison`: VTable [0x00000000030A9990, 0x0000000000000000 offset, 3 functions] `.?AVExtraPoison@@` -`class ExtraEnchantment`: VTable [0x00000000030A99B8, 0x0000000000000000 offset, 3 functions] `.?AVExtraEnchantment@@` -`class ExtraLastFinishedSequence`: VTable [0x00000000030A99E0, 0x0000000000000000 offset, 3 functions] `.?AVExtraLastFinishedSequence@@` -`class ExtraSpawnContainer`: VTable [0x00000000030A9A08, 0x0000000000000000 offset, 3 functions] `.?AVExtraSpawnContainer@@` -`class ExtraEmittanceSource`: VTable [0x00000000030A9A30, 0x0000000000000000 offset, 3 functions] `.?AVExtraEmittanceSource@@` -`class ExtraMultiBoundRef`: VTable [0x00000000030A9A58, 0x0000000000000000 offset, 3 functions] `.?AVExtraMultiBoundRef@@` -`class ExtraMultiBound`: VTable [0x00000000030A9A80, 0x0000000000000000 offset, 3 functions] `.?AVExtraMultiBound@@` -`class ExtraRoom`: VTable [0x00000000030A9AA8, 0x0000000000000000 offset, 3 functions] `.?AVExtraRoom@@` -`class ExtraItemDropper`: VTable [0x00000000030A9AD0, 0x0000000000000000 offset, 3 functions] `.?AVExtraItemDropper@@` -`class ExtraDroppedItemList`: VTable [0x00000000030A9AF8, 0x0000000000000000 offset, 3 functions] `.?AVExtraDroppedItemList@@` -`class ExtraHeadingTarget`: VTable [0x00000000030A9B20, 0x0000000000000000 offset, 3 functions] `.?AVExtraHeadingTarget@@` -`class ExtraRefractionProperty`: VTable [0x00000000030A9B48, 0x0000000000000000 offset, 3 functions] `.?AVExtraRefractionProperty@@` -`class ExtraStartingWorldOrCell`: VTable [0x00000000030A9B70, 0x0000000000000000 offset, 3 functions] `.?AVExtraStartingWorldOrCell@@` -`class ExtraHasNoRumors`: VTable [0x00000000030A9B98, 0x0000000000000000 offset, 3 functions] `.?AVExtraHasNoRumors@@` -`class ExtraSound`: VTable [0x00000000030A9BC0, 0x0000000000000000 offset, 3 functions] `.?AVExtraSound@@` -`class ExtraCreatureAwakeSound`: VTable [0x00000000030A9BE8, 0x0000000000000000 offset, 3 functions] `.?AVExtraCreatureAwakeSound@@` -`class ExtraCreatureMovementSound`: VTable [0x00000000030A9C10, 0x0000000000000000 offset, 3 functions] `.?AVExtraCreatureMovementSound@@` -`class ExtraWeaponIdleSound`: VTable [0x00000000030A9C38, 0x0000000000000000 offset, 3 functions] `.?AVExtraWeaponIdleSound@@` -`class ExtraWeaponAttackSound`: VTable [0x00000000030A9C60, 0x0000000000000000 offset, 3 functions] `.?AVExtraWeaponAttackSound@@` -`class ExtraActivateLoopSound`: VTable [0x00000000030A9C88, 0x0000000000000000 offset, 3 functions] `.?AVExtraActivateLoopSound@@` -`class ExtraObjectHealth`: VTable [0x00000000030A9CB0, 0x0000000000000000 offset, 3 functions] `.?AVExtraObjectHealth@@` -`class ExtraTerminalState`: VTable [0x00000000030A9CD8, 0x0000000000000000 offset, 3 functions] `.?AVExtraTerminalState@@` -`class ExtraModelSwap`: VTable [0x00000000030A9D00, 0x0000000000000000 offset, 3 functions] `.?AVExtraModelSwap@@` -`class ExtraRadius`: VTable [0x00000000030A9D28, 0x0000000000000000 offset, 3 functions] `.?AVExtraRadius@@` -`class ExtraFactionChanges`: VTable [0x00000000030A9D50, 0x0000000000000000 offset, 3 functions] `.?AVExtraFactionChanges@@` -`class ExtraActorCause`: VTable [0x00000000030A9D78, 0x0000000000000000 offset, 3 functions] `.?AVExtraActorCause@@` -`class ExtraAmmo`: VTable [0x00000000030A9DA0, 0x0000000000000000 offset, 3 functions] `.?AVExtraAmmo@@` -`class ExtraCombatStyle`: VTable [0x00000000030A9DC8, 0x0000000000000000 offset, 3 functions] `.?AVExtraCombatStyle@@` -`class ExtraLinkColorPair`: VTable [0x00000000030A9DF0, 0x0000000000000000 offset, 3 functions] `.?AVExtraLinkColorPair@@` -`class ExtraPrimitive`: VTable [0x00000000030A9E18, 0x0000000000000000 offset, 3 functions] `.?AVExtraPrimitive@@` -`class ExtraPatrolRefData`: VTable [0x00000000030A9E40, 0x0000000000000000 offset, 3 functions] `.?AVExtraPatrolRefData@@` -`class ExtraOcclusionPlaneRefData`: VTable [0x00000000030A9E68, 0x0000000000000000 offset, 3 functions] `.?AVExtraOcclusionPlaneRefData@@` -`class ExtraPortalRefData`: VTable [0x00000000030A9E90, 0x0000000000000000 offset, 3 functions] `.?AVExtraPortalRefData@@` -`class ExtraRoomRefData`: VTable [0x00000000030A9EB8, 0x0000000000000000 offset, 3 functions] `.?AVExtraRoomRefData@@` -`class ExtraCollisionData`: VTable [0x00000000030A9EE0, 0x0000000000000000 offset, 3 functions] `.?AVExtraCollisionData@@` -`class ExtraGuardedRefData`: VTable [0x00000000030A9F08, 0x0000000000000000 offset, 3 functions] `.?AVExtraGuardedRefData@@` -`class ExtraIgnoredBySandbox`: VTable [0x00000000030A9F30, 0x0000000000000000 offset, 3 functions] `.?AVExtraIgnoredBySandbox@@` -`class ExtraAliasInstanceArray`: VTable [0x00000000030A9F58, 0x0000000000000000 offset, 3 functions] `.?AVExtraAliasInstanceArray@@` -`class ExtraPromotedRef`: VTable [0x00000000030A9F80, 0x0000000000000000 offset, 3 functions] `.?AVExtraPromotedRef@@` -`class ExtraLightData`: VTable [0x00000000030A9FA8, 0x0000000000000000 offset, 3 functions] `.?AVExtraLightData@@` -`class ExtraSceneData`: VTable [0x00000000030A9FD0, 0x0000000000000000 offset, 3 functions] `.?AVExtraSceneData@@` -`class ExtraBadPosition`: VTable [0x00000000030A9FF8, 0x0000000000000000 offset, 3 functions] `.?AVExtraBadPosition@@` -`class ExtraHeadTrackingWeight`: VTable [0x00000000030AA020, 0x0000000000000000 offset, 3 functions] `.?AVExtraHeadTrackingWeight@@` -`class ExtraFavorCost`: VTable [0x00000000030AA048, 0x0000000000000000 offset, 3 functions] `.?AVExtraFavorCost@@` -`class ExtraMissingLinkedRefIDs`: VTable [0x00000000030AA070, 0x0000000000000000 offset, 3 functions] `.?AVExtraMissingLinkedRefIDs@@` -`class ExtraMissingRefIDs`: VTable [0x00000000030AA098, 0x0000000000000000 offset, 3 functions] `.?AVExtraMissingRefIDs@@` -`class ExtraAttachedArrows3D`: VTable [0x00000000030AA0C0, 0x0000000000000000 offset, 3 functions] `.?AVExtraAttachedArrows3D@@` -`class ExtraAlphaCutoff`: VTable [0x00000000030AA0E8, 0x0000000000000000 offset, 3 functions] `.?AVExtraAlphaCutoff@@` -`class ExtraHorse`: VTable [0x00000000030AA110, 0x0000000000000000 offset, 3 functions] `.?AVExtraHorse@@` -`class ExtraForcedTarget`: VTable [0x00000000030AA138, 0x0000000000000000 offset, 3 functions] `.?AVExtraForcedTarget@@` -`class ExtraForcedLandingMarker`: VTable [0x00000000030AA160, 0x0000000000000000 offset, 3 functions] `.?AVExtraForcedLandingMarker@@` -`class ExtraUniqueID`: VTable [0x00000000030AA188, 0x0000000000000000 offset, 3 functions] `.?AVExtraUniqueID@@` -`class ExtraFlags`: VTable [0x00000000030AA1B0, 0x0000000000000000 offset, 3 functions] `.?AVExtraFlags@@` -`class ExtraDecalGroup`: VTable [0x00000000030AA1D8, 0x0000000000000000 offset, 3 functions] `.?AVExtraDecalGroup@@` -`class ExtraCellWaterEnvMap`: VTable [0x00000000030AA200, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellWaterEnvMap@@` -`class ExtraWaterData`: VTable [0x00000000030AA228, 0x0000000000000000 offset, 3 functions] `.?AVExtraWaterData@@` -`class ExtraWaterCurrentZoneData`: VTable [0x00000000030AA250, 0x0000000000000000 offset, 3 functions] `.?AVExtraWaterCurrentZoneData@@` -`class ExtraScriptedAnimDependence`: VTable [0x00000000030AA278, 0x0000000000000000 offset, 3 functions] `.?AVExtraScriptedAnimDependence@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000030ABAD0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0BA@@@@@` -`class ExtraAnimGraphManager`: VTable [0x00000000030AD440, 0x0000000000000000 offset, 3 functions] `.?AVExtraAnimGraphManager@@` -`class ExtraDismemberedLimbs`: VTable [0x00000000030AD468, 0x0000000000000000 offset, 3 functions] `.?AVExtraDismemberedLimbs@@` -`class ExtraBiped`: VTable [0x00000000030AD490, 0x0000000000000000 offset, 3 functions] `.?AVExtraBiped@@` -`class ExtraLight`: VTable [0x00000000030AD4B8, 0x0000000000000000 offset, 3 functions] `.?AVExtraLight@@` -`class ExtraLock`: VTable [0x00000000030AD4E0, 0x0000000000000000 offset, 3 functions] `.?AVExtraLock@@` -`class ExtraLeveledCreature`: VTable [0x00000000030AD508, 0x0000000000000000 offset, 3 functions] `.?AVExtraLeveledCreature@@` -`class ExtraTeleport`: VTable [0x00000000030AD530, 0x0000000000000000 offset, 3 functions] `.?AVExtraTeleport@@` -`class ExtraMapMarker`: VTable [0x00000000030AD558, 0x0000000000000000 offset, 3 functions] `.?AVExtraMapMarker@@` -`class ExtraAction`: VTable [0x00000000030AD580, 0x0000000000000000 offset, 3 functions] `.?AVExtraAction@@` -`class ExtraStartingPosition`: VTable [0x00000000030AD5A8, 0x0000000000000000 offset, 3 functions] `.?AVExtraStartingPosition@@` -`class ExtraContainerChanges`: VTable [0x00000000030AD5D0, 0x0000000000000000 offset, 3 functions] `.?AVExtraContainerChanges@@` -`class ExtraOwnership`: VTable [0x00000000030AD5F8, 0x0000000000000000 offset, 3 functions] `.?AVExtraOwnership@@` -`class ExtraLockList`: VTable [0x00000000030AD620, 0x0000000000000000 offset, 3 functions] `.?AVExtraLockList@@` -`class ExtraGlobal`: VTable [0x00000000030AD648, 0x0000000000000000 offset, 3 functions] `.?AVExtraGlobal@@` -`class ExtraRank`: VTable [0x00000000030AD670, 0x0000000000000000 offset, 3 functions] `.?AVExtraRank@@` -`class ExtraCount`: VTable [0x00000000030AD698, 0x0000000000000000 offset, 3 functions] `.?AVExtraCount@@` -`class ExtraGhost`: VTable [0x00000000030AD6C0, 0x0000000000000000 offset, 3 functions] `.?AVExtraGhost@@` -`class ExtraShouldWear`: VTable [0x00000000030AD6E8, 0x0000000000000000 offset, 3 functions] `.?AVExtraShouldWear@@` -`class ExtraSoul`: VTable [0x00000000030AD710, 0x0000000000000000 offset, 3 functions] `.?AVExtraSoul@@` -`class ExtraPackageStartLocation`: VTable [0x00000000030AD738, 0x0000000000000000 offset, 3 functions] `.?AVExtraPackageStartLocation@@` -`class ExtraPackage`: VTable [0x00000000030AD760, 0x0000000000000000 offset, 3 functions] `.?AVExtraPackage@@` -`class ExtraTresPassPackage`: VTable [0x00000000030AD788, 0x0000000000000000 offset, 3 functions] `.?AVExtraTresPassPackage@@` -`class ExtraPlayerCrimeList`: VTable [0x00000000030AD7B0, 0x0000000000000000 offset, 3 functions] `.?AVExtraPlayerCrimeList@@` -`class ExtraPersistentCell`: VTable [0x00000000030AD7D8, 0x0000000000000000 offset, 3 functions] `.?AVExtraPersistentCell@@` -`class ExtraRunOncePacks`: VTable [0x00000000030AD800, 0x0000000000000000 offset, 3 functions] `.?AVExtraRunOncePacks@@` -`class ExtraDistantData`: VTable [0x00000000030AD828, 0x0000000000000000 offset, 3 functions] `.?AVExtraDistantData@@` -`class ExtraResourcesPreload`: VTable [0x00000000030AD850, 0x0000000000000000 offset, 3 functions] `.?AVExtraResourcesPreload@@` -`class ExtraPortal`: VTable [0x00000000030AD878, 0x0000000000000000 offset, 3 functions] `.?AVExtraPortal@@` -`class ExtraOcclusionShape`: VTable [0x00000000030AD8A0, 0x0000000000000000 offset, 3 functions] `.?AVExtraOcclusionShape@@` -`class ExtraEditorRef3DData`: VTable [0x00000000030AD8C8, 0x0000000000000000 offset, 3 functions] `.?AVExtraEditorRef3DData@@` -`class ExtraEditorRefMoveData`: VTable [0x00000000030AD8F0, 0x0000000000000000 offset, 3 functions] `.?AVExtraEditorRefMoveData@@` -`class ExtraAnimNoteReceiver`: VTable [0x00000000030AD918, 0x0000000000000000 offset, 3 functions] `.?AVExtraAnimNoteReceiver@@` -`class ExtraPatrolRefInUseData`: VTable [0x00000000030AD940, 0x0000000000000000 offset, 3 functions] `.?AVExtraPatrolRefInUseData@@` -`class ExtraSayTopicInfoOnceADay`: VTable [0x00000000030AD968, 0x0000000000000000 offset, 3 functions] `.?AVExtraSayTopicInfoOnceADay@@` -`class ExtraFollowerSwimBreadcrumbs`: VTable [0x00000000030AD990, 0x0000000000000000 offset, 3 functions] `.?AVExtraFollowerSwimBreadcrumbs@@` -`class ExtraAnimationSequencer`: VTable [0x00000000030AD9B8, 0x0000000000000000 offset, 3 functions] `.?AVExtraAnimationSequencer@@` -`class ExtraCellGrassData`: VTable [0x00000000030AD9E0, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellGrassData@@` -`class ExtraGroupConstraint`: VTable [0x00000000030ADA08, 0x0000000000000000 offset, 3 functions] `.?AVExtraGroupConstraint@@` -`class ExtraRaceData`: VTable [0x00000000030ADA30, 0x0000000000000000 offset, 3 functions] `.?AVExtraRaceData@@` -`class MultiBoundMarkerData`: VTable [0x00000000030AE7B8, 0x0000000000000000 offset, 3 functions] `.?AVMultiBoundMarkerData@@` -`class InterfacedClass`: VTable [0x00000000030B02F8, 0x0000000000000000 offset, 2 functions] `.?AVInterfacedClass@@` -`class BSTask`: VTable [0x00000000030B0318, 0x0000000000000000 offset, 6 functions] `.?AVBSTask@@` -`class IOTask`: VTable [0x00000000030B0360, 0x0000000000000000 offset, 10 functions] `.?AVIOTask@@` -`class SynchronizedPriorityQueue >`: VTable [0x00000000030B03D0, 0x0000000000000000 offset, 4 functions] `.?AV?$SynchronizedPriorityQueue@V?$NiPointer@VIOTask@@@@@@` -`class BSModelDB::QueuedHandles`: VTable [0x00000000030B0400, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHandles@BSModelDB@@` -`class BSModelDB::QueuedHandles`: VTable [0x00000000030B04D0, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHandles@BSModelDB@@` -`class TESModelDB::TESQueuedHandles`: VTable [0x00000000030B04F8, 0x0000000000000000 offset, 20 functions] `.?AVTESQueuedHandles@TESModelDB@@` -`class TESModelDB::TESQueuedHandles`: VTable [0x00000000030B05C8, 0x0000000000000038 offset, 3 functions] `.?AVTESQueuedHandles@TESModelDB@@` -`class BSQueuedResourceCollection,42>`: VTable [0x00000000030B05F0, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@$0CK@@@` -`class BSQueuedResourceCollection,42>`: VTable [0x00000000030B06C0, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@$0CK@@@` -`class QueuedHelmet`: VTable [0x00000000030B06E8, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHelmet@@` -`class QueuedHelmet`: VTable [0x00000000030B07B8, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHelmet@@` -`class QueuedModel`: VTable [0x00000000030B07E0, 0x0000000000000000 offset, 22 functions] `.?AVQueuedModel@@` -`class QueuedModel`: VTable [0x00000000030B08C0, 0x0000000000000038 offset, 3 functions] `.?AVQueuedModel@@` -`class QueuedReference`: VTable [0x00000000030B08E8, 0x0000000000000000 offset, 27 functions] `.?AVQueuedReference@@` -`class QueuedReference`: VTable [0x00000000030B09F8, 0x0000000000000038 offset, 3 functions] `.?AVQueuedReference@@` -`class QueuedTempEffect`: VTable [0x00000000030B0A20, 0x0000000000000000 offset, 12 functions] `.?AVQueuedTempEffect@@` -`class BackgroundProcessThread`: VTable [0x00000000030B0AA0, 0x0000000000000000 offset, 3 functions] `.?AVBackgroundProcessThread@@` -`class SynchronizedQueue >`: VTable [0x00000000030B0AC8, 0x0000000000000000 offset, 5 functions] `.?AV?$SynchronizedQueue@V?$NiPointer@VAttachDistant3DTask@@@@@@` -`class QueuedHead`: VTable [0x00000000030B0B48, 0x0000000000000000 offset, 13 functions] `.?AVQueuedHead@@` -`class BSAutoQueuedResourceCollection`: VTable [0x00000000030B0CE8, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAutoQueuedResourceCollection@VQueuedHandles@BShkbHkxDB@@@@` -`class QueuedTree`: VTable [0x00000000030B0D00, 0x0000000000000000 offset, 27 functions] `.?AVQueuedTree@@` -`class QueuedTree`: VTable [0x00000000030B0E10, 0x0000000000000038 offset, 3 functions] `.?AVQueuedTree@@` -`class QueuedActor`: VTable [0x00000000030B0EA0, 0x0000000000000000 offset, 27 functions] `.?AVQueuedActor@@` -`class QueuedActor`: VTable [0x00000000030B0FB0, 0x0000000000000038 offset, 3 functions] `.?AVQueuedActor@@` -`class QueuedCharacter`: VTable [0x00000000030B0FD8, 0x0000000000000000 offset, 27 functions] `.?AVQueuedCharacter@@` -`class QueuedCharacter`: VTable [0x00000000030B10E8, 0x0000000000000038 offset, 3 functions] `.?AVQueuedCharacter@@` -`class SynchronizedQueue >`: VTable [0x00000000030B1230, 0x0000000000000000 offset, 5 functions] `.?AV?$SynchronizedQueue@V?$NiPointer@VIOTask@@@@@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000030B1340, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0CKA@@@@@` -`class ICellAttachDetachEventSource`: VTable [0x00000000030B2BA0, 0x0000000000000000 offset, 1 functions] `.?AVICellAttachDetachEventSource@@` -`class BSTEventSink`: VTable [0x00000000030B2C18, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UArchiveStreamOpenedEvent@BSResource@@@@` -`class BSTEventSink`: VTable [0x00000000030B2C38, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@VBSSystemEvent@@@@` -`class TES::SystemEventAdapter`: VTable [0x00000000030B2C58, 0x0000000000000000 offset, 2 functions] `.?AVSystemEventAdapter@TES@@` -`class TES`: VTable [0x00000000030B2C78, 0x0000000000000000 offset, 1 functions] `.?AVTES@@` -`class TES`: VTable [0x00000000030B2C90, 0x0000000000000060 offset, 2 functions] `.?AVTES@@` -`class BSTempNodeManager`: VTable [0x00000000030B2D48, 0x0000000000000000 offset, 64 functions] `.?AVBSTempNodeManager@@` -`class BSTempNode`: VTable [0x00000000030B2FB8, 0x0000000000000000 offset, 64 functions] `.?AVBSTempNode@@` -`class BSAutoQueuedResourceCollection`: VTable [0x00000000030B4990, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAutoQueuedResourceCollection@VTESQueuedHandles@TESModelDB@@@@` -`class NiTArray >`: VTable [0x00000000030B6700, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVTESObjectCELL@@V?$NiTMallocInterface@PEAVTESObjectCELL@@@@@@` -`class NiTPrimitiveArray`: VTable [0x00000000030B6718, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVTESObjectCELL@@@@` -`class NiTArray >`: VTable [0x00000000030B6730, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVBGSAddonNode@@V?$NiTMallocInterface@PEAVBGSAddonNode@@@@@@` -`class NiTPrimitiveArray`: VTable [0x00000000030B6748, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVBGSAddonNode@@@@` -`class BGSStoryManagerTreeForm`: VTable [0x00000000030B67A0, 0x0000000000000000 offset, 105 functions] `.?AVBGSStoryManagerTreeForm@@` -`class BGSStoryManagerNodeBase`: VTable [0x00000000030B6BA0, 0x0000000000000000 offset, 112 functions] `.?AVBGSStoryManagerNodeBase@@` -`class BGSStoryManagerBranchNode`: VTable [0x00000000030B6FE0, 0x0000000000000000 offset, 113 functions] `.?AVBGSStoryManagerBranchNode@@` -`class TESRegionDataManager`: VTable [0x00000000030B7428, 0x0000000000000000 offset, 10 functions] `.?AVTESRegionDataManager@@` -`class TESRegionDataManagerEditor`: VTable [0x00000000030B7498, 0x0000000000000000 offset, 10 functions] `.?AVTESRegionDataManagerEditor@@` -`class BSTEventSink`: VTable [0x00000000030B7AF8, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UArchiveRegisteredEvent@BSResource@@@@` -`struct `anonymous namespace'::ArchiveRegistrationListener`: VTable [0x00000000030B7B18, 0x0000000000000000 offset, 2 functions] `.?AUArchiveRegistrationListener@?A0x0b4021da@@` -`class BSTEventSink`: VTable [0x00000000030B7B38, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UClearArchiveRegistryEvent@BSResource@@@@` -`struct `anonymous namespace'::ClearArchiveRegistrationListener`: VTable [0x00000000030B7B58, 0x0000000000000000 offset, 2 functions] `.?AUClearArchiveRegistrationListener@?A0x0b4021da@@` -`struct `anonymous namespace'::ObjectCountHelper`: VTable [0x00000000030B7CD0, 0x0000000000000000 offset, 2 functions] `.?AUObjectCountHelper@?A0x0b4021da@@` -`class NiTMapBase,unsigned int,class TESFile * __ptr64>`: VTable [0x00000000030BC028, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@IPEAVTESFile@@@@` -`class NiTPointerMap`: VTable [0x00000000030BC078, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@IPEAVTESFile@@@@` -`class NiTArray >`: VTable [0x00000000030BC0C8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@IV?$NiTMallocInterface@I@@@@` -`class NiTPrimitiveArray`: VTable [0x00000000030BC0E0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@I@@` -`class BSModelDB::BSModelProcessor`: VTable [0x00000000030BC330, 0x0000000000000000 offset, 2 functions] `.?AVBSModelProcessor@BSModelDB@@` -`class TESModelDB::`anonymous namespace'::TESProcessor`: VTable [0x00000000030BC350, 0x0000000000000000 offset, 2 functions] `.?AVTESProcessor@?A0xc3d36b18@TESModelDB@@` -`class BGSAttackDataForm`: VTable [0x00000000030BC518, 0x0000000000000000 offset, 14 functions] `.?AVBGSAttackDataForm@@` -`class BGSBipedModelList`: VTable [0x00000000030BC778, 0x0000000000000000 offset, 14 functions] `.?AVBGSBipedModelList@@` -`class BGSBipedObjectForm`: VTable [0x00000000030BC9D0, 0x0000000000000000 offset, 14 functions] `.?AVBGSBipedObjectForm@@` -`class BGSBlockBashData`: VTable [0x00000000030BCB08, 0x0000000000000000 offset, 14 functions] `.?AVBGSBlockBashData@@` -`class BGSDestructibleObjectForm`: VTable [0x00000000030BCF60, 0x0000000000000000 offset, 14 functions] `.?AVBGSDestructibleObjectForm@@` -`class BGSEquipType`: VTable [0x00000000030BD578, 0x0000000000000000 offset, 16 functions] `.?AVBGSEquipType@@` -`class BGSIdleCollection`: VTable [0x00000000030BD8A8, 0x0000000000000000 offset, 14 functions] `.?AVBGSIdleCollection@@` -`class BGSKeywordForm`: VTable [0x00000000030BDB78, 0x0000000000000000 offset, 16 functions] `.?AVBGSKeywordForm@@` -`class BGSMenuDisplayObject`: VTable [0x00000000030BDDC8, 0x0000000000000000 offset, 15 functions] `.?AVBGSMenuDisplayObject@@` -`class BGSMessageIcon`: VTable [0x00000000030BE0C0, 0x0000000000000000 offset, 14 functions] `.?AVBGSMessageIcon@@` -`class BGSOverridePackCollection`: VTable [0x00000000030BE3D8, 0x0000000000000000 offset, 14 functions] `.?AVBGSOverridePackCollection@@` -`class PerkRankVisitor`: VTable [0x00000000030BEEC0, 0x0000000000000000 offset, 1 functions] `.?AVPerkRankVisitor@@` -`class BGSPerkRankArray`: VTable [0x00000000030BEED8, 0x0000000000000000 offset, 14 functions] `.?AVBGSPerkRankArray@@` -`class `anonymous namespace'::InitItemPerkRankDataVisitor`: VTable [0x00000000030BEF68, 0x0000000000000000 offset, 1 functions] `.?AVInitItemPerkRankDataVisitor@?A0xff722cba@@` -`class `anonymous namespace'::CopyPerkRankArrayVisitor`: VTable [0x00000000030BEFC8, 0x0000000000000000 offset, 1 functions] `.?AVCopyPerkRankArrayVisitor@?A0xff722cba@@` -`class `anonymous namespace'::FindPerkRankDataVisitor`: VTable [0x00000000030BEFE0, 0x0000000000000000 offset, 1 functions] `.?AVFindPerkRankDataVisitor@?A0xff722cba@@` -`class `anonymous namespace'::RemoveFormListPerkRankVisitor`: VTable [0x00000000030BEFF8, 0x0000000000000000 offset, 1 functions] `.?AVRemoveFormListPerkRankVisitor@?A0xff722cba@@` -`class `anonymous namespace'::SavePerkRankDataVisitor`: VTable [0x00000000030BF1D0, 0x0000000000000000 offset, 1 functions] `.?AVSavePerkRankDataVisitor@?A0x540f5517@@` -`class `anonymous namespace'::AddRemoveUserFormPerkRankDataVisitor`: VTable [0x00000000030BF1E8, 0x0000000000000000 offset, 1 functions] `.?AVAddRemoveUserFormPerkRankDataVisitor@?A0x540f5517@@` -`class `anonymous namespace'::GetDependencyStringPerkRankVisitor`: VTable [0x00000000030BF200, 0x0000000000000000 offset, 1 functions] `.?AVGetDependencyStringPerkRankVisitor@?A0x540f5517@@` -`class `anonymous namespace'::CanCheckInPerkRankVisitor`: VTable [0x00000000030BF218, 0x0000000000000000 offset, 1 functions] `.?AVCanCheckInPerkRankVisitor@?A0x540f5517@@` -`class `anonymous namespace'::ObjectCollectionPerkRankArrayVisitor`: VTable [0x00000000030BF230, 0x0000000000000000 offset, 1 functions] `.?AVObjectCollectionPerkRankArrayVisitor@?A0x540f5517@@` -`class `anonymous namespace'::FillListViewPerkRankArrayVisitor`: VTable [0x00000000030BF248, 0x0000000000000000 offset, 1 functions] `.?AVFillListViewPerkRankArrayVisitor@?A0x540f5517@@` -`class BGSPickupPutdownSounds`: VTable [0x00000000030BF300, 0x0000000000000000 offset, 14 functions] `.?AVBGSPickupPutdownSounds@@` -`class BGSSkinForm`: VTable [0x00000000030BF580, 0x0000000000000000 offset, 14 functions] `.?AVBGSSkinForm@@` -`class TESActorBaseData`: VTable [0x00000000030BFF60, 0x0000000000000000 offset, 20 functions] `.?AVTESActorBaseData@@` -`class NiTMapBase >,class TESForm * __ptr64,bool>`: VTable [0x00000000030C0190, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESForm@@_N@@@@PEAVTESForm@@_N@@` -`class NiTMap`: VTable [0x00000000030C01E0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESForm@@_N@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000030C0770, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0EAA@@@@@` -`class TESAIForm`: VTable [0x00000000030C0890, 0x0000000000000000 offset, 14 functions] `.?AVTESAIForm@@` -`class TESAttackDamageForm`: VTable [0x00000000030C0AC8, 0x0000000000000000 offset, 15 functions] `.?AVTESAttackDamageForm@@` -`class TESModelRDT`: VTable [0x00000000030C0C90, 0x0000000000000000 offset, 20 functions] `.?AVTESModelRDT@@` -`class TESBipedModelForm`: VTable [0x00000000030C0D60, 0x0000000000000000 offset, 14 functions] `.?AVTESBipedModelForm@@` -`class TESContainer`: VTable [0x00000000030C1290, 0x0000000000000000 offset, 15 functions] `.?AVTESContainer@@` -`class TESDescription`: VTable [0x00000000030C17C0, 0x0000000000000000 offset, 14 functions] `.?AVTESDescription@@` -`class TESEnchantableForm`: VTable [0x00000000030C1A70, 0x0000000000000000 offset, 15 functions] `.?AVTESEnchantableForm@@` -`class TESForm`: VTable [0x00000000030C31F8, 0x0000000000000000 offset, 101 functions] `.?AVTESForm@@` -`class BSStorage`: VTable [0x00000000030C35D0, 0x0000000000000000 offset, 6 functions] `.?AVBSStorage@@` -`class BSMemStorage`: VTable [0x00000000030C3618, 0x0000000000000000 offset, 6 functions] `.?AVBSMemStorage@@` -`struct BSScript::IHandleReaderWriter`: VTable [0x00000000030C3660, 0x0000000000000000 offset, 4 functions] `.?AUIHandleReaderWriter@BSScript@@` -`class CSScript::DataFileHandleReaderWriter`: VTable [0x00000000030C3690, 0x0000000000000000 offset, 4 functions] `.?AVDataFileHandleReaderWriter@CSScript@@` -`struct `anonymous namespace'::ObjectFactoryVisitor`: VTable [0x00000000030C36C0, 0x0000000000000000 offset, 2 functions] `.?AUObjectFactoryVisitor@?A0xc146a324@@` -`struct `anonymous namespace'::ObjectTypeFinder`: VTable [0x00000000030C36E0, 0x0000000000000000 offset, 2 functions] `.?AUObjectTypeFinder@?A0xc146a324@@` -`class NiTMapBase,class TESForm const * __ptr64,class BSTArray * __ptr64>`: VTable [0x00000000030C38E8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBVTESForm@@PEAV?$BSTArray@PEAVTESForm@@VBSTArrayHeapAllocator@@@@@@` -`class NiTPointerMap * __ptr64>`: VTable [0x00000000030C3938, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBVTESForm@@PEAV?$BSTArray@PEAVTESForm@@VBSTArrayHeapAllocator@@@@@@` -`class BSMemStorageAllocated`: VTable [0x00000000030C3A18, 0x0000000000000000 offset, 6 functions] `.?AV?$BSMemStorageAllocated@VBSMemStorageScrapAllocator@@@@` -`class TESHealthForm`: VTable [0x00000000030C49E8, 0x0000000000000000 offset, 15 functions] `.?AVTESHealthForm@@` -`class TESIcon`: VTable [0x00000000030C4B28, 0x0000000000000000 offset, 20 functions] `.?AVTESIcon@@` -`class TESImageSpaceModifiableForm`: VTable [0x00000000030C4C50, 0x0000000000000000 offset, 14 functions] `.?AVTESImageSpaceModifiableForm@@` -`class TESLeveledList`: VTable [0x00000000030C5120, 0x0000000000000000 offset, 23 functions] `.?AVTESLeveledList@@` -`class TESModel`: VTable [0x00000000030C6370, 0x0000000000000000 offset, 20 functions] `.?AVTESModel@@` -`class BSShaderProperty::ForEachVisitor`: VTable [0x00000000030C6440, 0x0000000000000000 offset, 2 functions] `.?AVForEachVisitor@BSShaderProperty@@` -`struct `anonymous namespace'::PropTexCollector`: VTable [0x00000000030C6568, 0x0000000000000000 offset, 2 functions] `.?AUPropTexCollector@?A0xac659881@@` -`struct `anonymous namespace'::PropTexNameCollector`: VTable [0x00000000030C6588, 0x0000000000000000 offset, 2 functions] `.?AUPropTexNameCollector@?A0xac659881@@` -`class BSAutoQueuedResourceCollection`: VTable [0x00000000030C6638, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAutoQueuedResourceCollection@VQueuedHandles@BSTextureDB@@@@` -`class TESModelLODList`: VTable [0x00000000030C6958, 0x0000000000000000 offset, 14 functions] `.?AVTESModelLODList@@` -`class TESModelTextureSwap`: VTable [0x00000000030C6F60, 0x0000000000000000 offset, 20 functions] `.?AVTESModelTextureSwap@@` -`class BSMapBase`: VTable [0x00000000030C7228, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@HPEAUTEX_SWAP@@@@` -`class BSScrapMap`: VTable [0x00000000030C7278, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@HPEAUTEX_SWAP@@@@` -`class TESProduceForm`: VTable [0x00000000030C7680, 0x0000000000000000 offset, 14 functions] `.?AVTESProduceForm@@` -`class TESQualityForm`: VTable [0x00000000030C79A8, 0x0000000000000000 offset, 14 functions] `.?AVTESQualityForm@@` -`class TESRaceForm`: VTable [0x00000000030C7B58, 0x0000000000000000 offset, 14 functions] `.?AVTESRaceForm@@` -`class TESReactionForm`: VTable [0x00000000030C8018, 0x0000000000000000 offset, 14 functions] `.?AVTESReactionForm@@` -`class TESSpellList`: VTable [0x00000000030C86D0, 0x0000000000000000 offset, 14 functions] `.?AVTESSpellList@@` -`class TESTexture`: VTable [0x00000000030C89F8, 0x0000000000000000 offset, 20 functions] `.?AVTESTexture@@` -`class TESValueForm`: VTable [0x00000000030C8D08, 0x0000000000000000 offset, 14 functions] `.?AVTESValueForm@@` -`class TESWeightForm`: VTable [0x00000000030C8E70, 0x0000000000000000 offset, 14 functions] `.?AVTESWeightForm@@` -`class BSAttachTechniques::BSAttachTechnique`: VTable [0x00000000030C9770, 0x0000000000000000 offset, 4 functions] `.?AVBSAttachTechnique@BSAttachTechniques@@` -`struct BGSAttachTechniquesUtil::ProcessTechniquesFunctor`: VTable [0x00000000030C97B0, 0x0000000000000000 offset, 2 functions] `.?AUProcessTechniquesFunctor@BGSAttachTechniquesUtil@@` -`struct BGSAttachTechniquesUtil::AttachTechniquesFunctor`: VTable [0x00000000030C97D0, 0x0000000000000000 offset, 2 functions] `.?AUAttachTechniquesFunctor@BGSAttachTechniquesUtil@@` -`struct BGSAttachTechniquesUtil::DetachTechniquesFunctor`: VTable [0x00000000030C97F0, 0x0000000000000000 offset, 2 functions] `.?AUDetachTechniquesFunctor@BGSAttachTechniquesUtil@@` -`class BGSParticleArrayAttach::EmitterPolicy`: VTable [0x00000000030C9878, 0x0000000000000000 offset, 3 functions] `.?AVEmitterPolicy@BGSParticleArrayAttach@@` -`class BGSParticleArrayAttach::CollectEmitterPolicy`: VTable [0x00000000030C98A0, 0x0000000000000000 offset, 3 functions] `.?AVCollectEmitterPolicy@BGSParticleArrayAttach@@` -`class BGSParticleArrayAttach::ClearEmitterPolicy`: VTable [0x00000000030C98C8, 0x0000000000000000 offset, 3 functions] `.?AVClearEmitterPolicy@BGSParticleArrayAttach@@` -`class BGSParticleArrayAttach`: VTable [0x00000000030C98F0, 0x0000000000000000 offset, 4 functions] `.?AVBGSParticleArrayAttach@@` -`class BGSHavokGeometryAttach::ActionPolicy`: VTable [0x00000000030C99A0, 0x0000000000000000 offset, 2 functions] `.?AVActionPolicy@BGSHavokGeometryAttach@@` -`class BGSHavokGeometryAttach::AttachPolicy`: VTable [0x00000000030C99C0, 0x0000000000000000 offset, 2 functions] `.?AVAttachPolicy@BGSHavokGeometryAttach@@` -`class BGSHavokGeometryAttach::DetachPolicy`: VTable [0x00000000030C99E0, 0x0000000000000000 offset, 2 functions] `.?AVDetachPolicy@BGSHavokGeometryAttach@@` -`class BGSHavokGeometryAttach`: VTable [0x00000000030C9A00, 0x0000000000000000 offset, 4 functions] `.?AVBGSHavokGeometryAttach@@` -`class BGSNamedNodeAttach::ActionPolicy`: VTable [0x00000000030C9A40, 0x0000000000000000 offset, 2 functions] `.?AVActionPolicy@BGSNamedNodeAttach@@` -`class BGSNamedNodeAttach::AttachPolicy`: VTable [0x00000000030C9A60, 0x0000000000000000 offset, 2 functions] `.?AVAttachPolicy@BGSNamedNodeAttach@@` -`class BGSNamedNodeAttach::DetachPolicy`: VTable [0x00000000030C9A80, 0x0000000000000000 offset, 2 functions] `.?AVDetachPolicy@BGSNamedNodeAttach@@` -`class BGSNamedNodeAttach`: VTable [0x00000000030C9AA0, 0x0000000000000000 offset, 4 functions] `.?AVBGSNamedNodeAttach@@` -`class BGSMultiTechniqueAttach::ActionPolicy`: VTable [0x00000000030C9B18, 0x0000000000000000 offset, 2 functions] `.?AVActionPolicy@BGSMultiTechniqueAttach@@` -`class BGSMultiTechniqueAttach::AttachPolicy`: VTable [0x00000000030C9B38, 0x0000000000000000 offset, 2 functions] `.?AVAttachPolicy@BGSMultiTechniqueAttach@@` -`class BGSMultiTechniqueAttach::DetachPolicy`: VTable [0x00000000030C9B58, 0x0000000000000000 offset, 2 functions] `.?AVDetachPolicy@BGSMultiTechniqueAttach@@` -`class BGSMultiTechniqueAttach`: VTable [0x00000000030C9B78, 0x0000000000000000 offset, 4 functions] `.?AVBGSMultiTechniqueAttach@@` -`class BGSDecalNode`: VTable [0x00000000030CC358, 0x0000000000000000 offset, 66 functions] `.?AVBGSDecalNode@@` -`class QueuedPromoteReferencesTask`: VTable [0x00000000030CCA70, 0x0000000000000000 offset, 10 functions] `.?AVQueuedPromoteReferencesTask@@` -`class IBGSLocalizedString`: VTable [0x00000000030CE148, 0x0000000000000000 offset, 5 functions] `.?AVIBGSLocalizedString@@` -`class BGSLocalizedString`: VTable [0x00000000030CE188, 0x0000000000000000 offset, 5 functions] `.?AVBGSLocalizedString@@` -`class BGSLocalizedStringDL`: VTable [0x00000000030CE1C8, 0x0000000000000000 offset, 5 functions] `.?AVBGSLocalizedStringDL@@` -`class BGSLocalizedStringIL`: VTable [0x00000000030CE208, 0x0000000000000000 offset, 5 functions] `.?AVBGSLocalizedStringIL@@` -`class BSTEventSink`: VTable [0x00000000030CE7E8, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@ULocalizedStringLoadEvent@?A0x1e3c237b@@@@` -`struct `anonymous namespace'::TagificationManager`: VTable [0x00000000030CE808, 0x0000000000000000 offset, 2 functions] `.?AUTagificationManager@?A0x1e3c237b@@` -`struct `anonymous namespace'::TextExportManager`: VTable [0x00000000030CEBC8, 0x0000000000000000 offset, 2 functions] `.?AUTextExportManager@?A0x1e3c237b@@` -`struct `anonymous namespace'::DelocalizationManager`: VTable [0x00000000030CEF98, 0x0000000000000000 offset, 2 functions] `.?AUDelocalizationManager@?A0x1e3c237b@@` -`class NiObject`: VTable [0x00000000030D0140, 0x0000000000000000 offset, 39 functions] `.?AVNiObject@@` -`class BGSPrimitive`: VTable [0x00000000030D02C0, 0x0000000000000000 offset, 6 functions] `.?AVBGSPrimitive@@` -`class BGSPrimitivePlane`: VTable [0x00000000030D0308, 0x0000000000000000 offset, 8 functions] `.?AVBGSPrimitivePlane@@` -`class BGSPrimitiveBox`: VTable [0x00000000030D0360, 0x0000000000000000 offset, 7 functions] `.?AVBGSPrimitiveBox@@` -`class BGSPrimitiveLine`: VTable [0x00000000030D03B0, 0x0000000000000000 offset, 7 functions] `.?AVBGSPrimitiveLine@@` -`class BGSPrimitiveSphere`: VTable [0x00000000030D0400, 0x0000000000000000 offset, 6 functions] `.?AVBGSPrimitiveSphere@@` -`class BSMultiBoundAABB`: VTable [0x00000000030D0448, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundAABB@@` -`class BSMultiBoundOBB`: VTable [0x00000000030D0648, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundOBB@@` -`class BSMultiBoundSphere`: VTable [0x00000000030D0848, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundSphere@@` -`class BSPortal`: VTable [0x00000000030D0A48, 0x0000000000000000 offset, 44 functions] `.?AVBSPortal@@` -`class BGSSceneInfo::TextureUse`: VTable [0x00000000030D1150, 0x0000000000000000 offset, 2 functions] `.?AVTextureUse@BGSSceneInfo@@` -`class BGSSceneInfo`: VTable [0x00000000030D1170, 0x0000000000000000 offset, 1 functions] `.?AVBGSSceneInfo@@` -`class NiTMapBase >,int,int>`: VTable [0x00000000030D1210, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@HH@@@@HH@@` -`class NiTMap`: VTable [0x00000000030D1260, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@HH@@` -`class BGSTextureUseMap::TextureUse`: VTable [0x00000000030D2030, 0x0000000000000000 offset, 2 functions] `.?AVTextureUse@BGSTextureUseMap@@` -`class BSAnimGroupSequence`: VTable [0x00000000030D3B20, 0x0000000000000000 offset, 40 functions] `.?AVBSAnimGroupSequence@@` -`class GridArray`: VTable [0x00000000030D4D90, 0x0000000000000000 offset, 9 functions] `.?AVGridArray@@` -`class GridCellArray`: VTable [0x00000000030D4E50, 0x0000000000000000 offset, 9 functions] `.?AVGridCellArray@@` -`class InventoryUtils::ItemFilter`: VTable [0x00000000030D5F60, 0x0000000000000000 offset, 2 functions] `.?AVItemFilter@InventoryUtils@@` -`class InventoryChanges::IItemChangeVisitor`: VTable [0x00000000030D5F80, 0x0000000000000000 offset, 4 functions] `.?AVIItemChangeVisitor@InventoryChanges@@` -`class `anonymous namespace'::CountObjectsWithKeywordFunctor`: VTable [0x00000000030D5FB0, 0x0000000000000000 offset, 4 functions] `.?AVCountObjectsWithKeywordFunctor@?A0xe5a7e029@@` -`class `anonymous namespace'::UnequipArmorFunctor`: VTable [0x00000000030D5FE0, 0x0000000000000000 offset, 4 functions] `.?AVUnequipArmorFunctor@?A0xe5a7e029@@` -`class `anonymous namespace'::CollectUsedUniqueIDsVisitor`: VTable [0x00000000030D6040, 0x0000000000000000 offset, 4 functions] `.?AVCollectUsedUniqueIDsVisitor@?A0xe5a7e029@@` -`class InventoryUtils::`anonymous namespace'::IsWornVisitor`: VTable [0x00000000030D60A0, 0x0000000000000000 offset, 4 functions] `.?AVIsWornVisitor@?A0xe5a7e029@InventoryUtils@@` -`class InventoryUtils::`anonymous namespace'::GetWornMaskVisitor`: VTable [0x00000000030D60D0, 0x0000000000000000 offset, 4 functions] `.?AVGetWornMaskVisitor@?A0xe5a7e029@InventoryUtils@@` -`class InventoryUtils::`anonymous namespace'::IsFavoriteVisitor`: VTable [0x00000000030D6100, 0x0000000000000000 offset, 4 functions] `.?AVIsFavoriteVisitor@?A0xe5a7e029@InventoryUtils@@` -`class InventoryUtils::`anonymous namespace'::WornHasKeywordVisitor`: VTable [0x00000000030D6130, 0x0000000000000000 offset, 4 functions] `.?AVWornHasKeywordVisitor@?A0xe5a7e029@InventoryUtils@@` -`class BSExternalAudioIO::ExternalIOInterface`: VTable [0x00000000030D6AA0, 0x0000000000000000 offset, 2 functions] `.?AVExternalIOInterface@BSExternalAudioIO@@` -`class BSResource::EntryDB`: VTable [0x00000000030D6AC0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@LipSynchAnimDB@@@BSResource@@` -`class LipSynchAnimDB::LipAudioInterface`: VTable [0x00000000030D6B08, 0x0000000000000000 offset, 2 functions] `.?AVLipAudioInterface@LipSynchAnimDB@@` -`class TESCameraState`: VTable [0x00000000030D6F30, 0x0000000000000000 offset, 9 functions] `.?AVTESCameraState@@` -`class LocalMapCamera`: VTable [0x00000000030D6FD8, 0x0000000000000000 offset, 3 functions] `.?AVLocalMapCamera@@` -`class LocalMapCamera::DefaultState`: VTable [0x00000000030D7020, 0x0000000000000000 offset, 9 functions] `.?AVDefaultState@LocalMapCamera@@` -`class NiTMapBase >,class NiAVObject * __ptr64,struct _TREEITEM * __ptr64>`: VTable [0x00000000030D76E0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVNiAVObject@@PEAU_TREEITEM@@@@@@PEAVNiAVObject@@PEAU_TREEITEM@@@@` -`class NiTMap`: VTable [0x00000000030D7730, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVNiAVObject@@PEAU_TREEITEM@@@@` -`class BSNodeVisualization::Visualizer`: VTable [0x00000000030D7780, 0x0000000000000000 offset, 2 functions] `.?AVVisualizer@BSNodeVisualization@@` -`class BSNodeVisualization::AllNodeVisualizer`: VTable [0x00000000030D77A0, 0x0000000000000000 offset, 2 functions] `.?AVAllNodeVisualizer@BSNodeVisualization@@` -`class NiTArray >`: VTable [0x00000000030D77D0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEBDV?$NiTMallocInterface@PEBD@@@@` -`class NiTPrimitiveArray`: VTable [0x00000000030D77E8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEBD@@` -`class UTF8Utils`: VTable [0x00000000030D8448, 0x0000000000000000 offset, 1 functions] `.?AVUTF8Utils@@` -`class TESRegion`: VTable [0x00000000030D9150, 0x0000000000000000 offset, 103 functions] `.?AVTESRegion@@` -`class ConcreteFormFactory`: VTable [0x00000000030D9538, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESRegion@@$0DK@@@` -`class TESRegionData`: VTable [0x00000000030D95B8, 0x0000000000000000 offset, 13 functions] `.?AVTESRegionData@@` -`class TESRegionDataGrass`: VTable [0x00000000030D9730, 0x0000000000000000 offset, 15 functions] `.?AVTESRegionDataGrass@@` -`class TESRegionDataLandscape`: VTable [0x00000000030D9900, 0x0000000000000000 offset, 16 functions] `.?AVTESRegionDataLandscape@@` -`class TESRegionDataMap`: VTable [0x00000000030D9C38, 0x0000000000000000 offset, 13 functions] `.?AVTESRegionDataMap@@` -`class TESRegionDataObjects`: VTable [0x00000000030D9E28, 0x0000000000000000 offset, 18 functions] `.?AVTESRegionDataObjects@@` -`class TESRegionDataSound`: VTable [0x00000000030DA4C0, 0x0000000000000000 offset, 14 functions] `.?AVTESRegionDataSound@@` -`class TESRegionDataWeather`: VTable [0x00000000030DA8C8, 0x0000000000000000 offset, 14 functions] `.?AVTESRegionDataWeather@@` -`class TESRegionObjectBase`: VTable [0x00000000030DAA10, 0x0000000000000000 offset, 6 functions] `.?AVTESRegionObjectBase@@` -`class TESRegionGrassObject`: VTable [0x00000000030DAA58, 0x0000000000000000 offset, 10 functions] `.?AVTESRegionGrassObject@@` -`class TESRegionGrassObjectList`: VTable [0x00000000030DADA8, 0x0000000000000000 offset, 1 functions] `.?AVTESRegionGrassObjectList@@` -`class TESRegionList`: VTable [0x00000000030DAF10, 0x0000000000000000 offset, 3 functions] `.?AVTESRegionList@@` -`class TESRegionNoiseFunction`: VTable [0x00000000030DAF38, 0x0000000000000000 offset, 1 functions] `.?AVTESRegionNoiseFunction@@` -`class TESRegionObject`: VTable [0x00000000030DB080, 0x0000000000000000 offset, 6 functions] `.?AVTESRegionObject@@` -`class TESRegionObjectList`: VTable [0x00000000030DB2B0, 0x0000000000000000 offset, 1 functions] `.?AVTESRegionObjectList@@` -`class BGSAction`: VTable [0x00000000030DB608, 0x0000000000000000 offset, 101 functions] `.?AVBGSAction@@` -`class ConcreteFormFactory`: VTable [0x00000000030DB9E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSAction@@$05@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030DBA30, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSAction@@$05$0EM@$0A@@@` -`class BGSAssociationType`: VTable [0x00000000030DBBE0, 0x0000000000000000 offset, 101 functions] `.?AVBGSAssociationType@@` -`class ConcreteFormFactory`: VTable [0x00000000030DBFB8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSAssociationType@@$0HL@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030DC008, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSAssociationType@@$0HL@$0FC@$04@@` -`class TESModelPSA`: VTable [0x00000000030DC258, 0x0000000000000000 offset, 20 functions] `.?AVTESModelPSA@@` -`class BGSPreloadable`: VTable [0x00000000030DC878, 0x0000000000000000 offset, 14 functions] `.?AVBGSPreloadable@@` -`class BGSBodyPartData`: VTable [0x00000000030DC908, 0x0000000000000000 offset, 101 functions] `.?AVBGSBodyPartData@@` -`class BGSBodyPartData`: VTable [0x00000000030DCCE0, 0x0000000000000028 offset, 20 functions] `.?AVBGSBodyPartData@@` -`class BGSBodyPartData`: VTable [0x00000000030DCDB0, 0x0000000000000058 offset, 14 functions] `.?AVBGSBodyPartData@@` -`class ConcreteFormFactory`: VTable [0x00000000030DCE40, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSBodyPartData@@$0FN@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030DCE90, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSBodyPartData@@$0FN@$0CI@$0A@@@` -`class NiTMapBase >,class NiAVObject * __ptr64,bool>`: VTable [0x00000000030DD138, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVNiAVObject@@_N@@@@PEAVNiAVObject@@_N@@` -`class NiTMap`: VTable [0x00000000030DD188, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVNiAVObject@@_N@@` -`class NiTMapBase >,unsigned char,bool>`: VTable [0x00000000030DD1D8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@E_N@@@@E_N@@` -`class NiTMap`: VTable [0x00000000030DD228, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@E_N@@` -`class BGSDialogueBranch`: VTable [0x00000000030DD910, 0x0000000000000000 offset, 101 functions] `.?AVBGSDialogueBranch@@` -`class ConcreteFormFactory`: VTable [0x00000000030DDCE8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSDialogueBranch@@$0HD@@@` -`class BGSDialogueView`: VTable [0x00000000030DE340, 0x0000000000000000 offset, 103 functions] `.?AVBGSDialogueView@@` -`class ConcreteFormFactory`: VTable [0x00000000030DE728, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSDialogueView@@$0HF@@@` -`class BGSDialogueViewEventSink`: VTable [0x00000000030DEF68, 0x0000000000000000 offset, 8 functions] `.?AVBGSDialogueViewEventSink@@` -`class BGSEntryPointFunctionData`: VTable [0x00000000030E06C8, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionData@@` -`class BGSEntryPointFunctionDataOneValue`: VTable [0x00000000030E0780, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataOneValue@@` -`class BGSEntryPointFunctionDataTwoValue`: VTable [0x00000000030E0838, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataTwoValue@@` -`class BGSEntryPointFunctionDataLeveledList`: VTable [0x00000000030E08F0, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataLeveledList@@` -`class BGSEntryPointFunctionDataSpellItem`: VTable [0x00000000030E09A8, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataSpellItem@@` -`class BGSEntryPointFunctionDataBooleanGraphVariable`: VTable [0x00000000030E0A60, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataBooleanGraphVariable@@` -`class BGSEntryPointFunctionDataText`: VTable [0x00000000030E0B18, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataText@@` -`class BGSEntryPointFunctionDataActivateChoice`: VTable [0x00000000030E0BD0, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataActivateChoice@@` -`class BGSEquipSlot`: VTable [0x00000000030E1738, 0x0000000000000000 offset, 101 functions] `.?AVBGSEquipSlot@@` -`class ConcreteFormFactory`: VTable [0x00000000030E1B10, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSEquipSlot@@$0HI@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030E1B60, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSEquipSlot@@$0HI@$0FB@$04@@` -`class TESModelTri`: VTable [0x00000000030E1FE8, 0x0000000000000000 offset, 20 functions] `.?AVTESModelTri@@` -`class BGSHeadPart`: VTable [0x00000000030E20B8, 0x0000000000000000 offset, 101 functions] `.?AVBGSHeadPart@@` -`class BGSHeadPart`: VTable [0x00000000030E2490, 0x0000000000000028 offset, 16 functions] `.?AVBGSHeadPart@@` -`class BGSHeadPart`: VTable [0x00000000030E2538, 0x0000000000000040 offset, 20 functions] `.?AVBGSHeadPart@@` -`class ConcreteFormFactory`: VTable [0x00000000030E2608, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSHeadPart@@$0M@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030E2658, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSHeadPart@@$0M@$0DE@$04@@` -`class BGSIdleMarker`: VTable [0x00000000030E2D90, 0x0000000000000000 offset, 125 functions] `.?AVBGSIdleMarker@@` -`class BGSIdleMarker`: VTable [0x00000000030E3250, 0x0000000000000050 offset, 20 functions] `.?AVBGSIdleMarker@@` -`class BGSIdleMarker`: VTable [0x00000000030E3320, 0x0000000000000080 offset, 14 functions] `.?AVBGSIdleMarker@@` -`class ConcreteFormFactory`: VTable [0x00000000030E33B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSIdleMarker@@$0CP@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030E3400, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSIdleMarker@@$0CP@$0BO@$03@@` -`class BGSKeyword`: VTable [0x00000000030E35D0, 0x0000000000000000 offset, 101 functions] `.?AVBGSKeyword@@` -`class ConcreteFormFactory`: VTable [0x00000000030E39A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSKeyword@@$03@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030E39F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSKeyword@@$03$0EG@$03@@` -`class BGSBaseAlias`: VTable [0x00000000030E3C20, 0x0000000000000000 offset, 20 functions] `.?AVBGSBaseAlias@@` -`class BGSLocAlias`: VTable [0x00000000030E3CF0, 0x0000000000000000 offset, 20 functions] `.?AVBGSLocAlias@@` -`class BGSMovementType`: VTable [0x00000000030E4938, 0x0000000000000000 offset, 101 functions] `.?AVBGSMovementType@@` -`class ConcreteFormFactory`: VTable [0x00000000030E4D10, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMovementType@@$0HP@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030E4D60, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMovementType@@$0HP@$0FL@$04@@` -`class BGSNote`: VTable [0x00000000030E5248, 0x0000000000000000 offset, 125 functions] `.?AVBGSNote@@` -`class BGSNote`: VTable [0x00000000030E5708, 0x0000000000000050 offset, 20 functions] `.?AVBGSNote@@` -`class BGSNote`: VTable [0x00000000030E57D8, 0x0000000000000080 offset, 16 functions] `.?AVBGSNote@@` -`class BGSNote`: VTable [0x00000000030E5880, 0x0000000000000098 offset, 20 functions] `.?AVBGSNote@@` -`class BGSNote`: VTable [0x00000000030E5950, 0x00000000000000C0 offset, 14 functions] `.?AVBGSNote@@` -`class ConcreteFormFactory`: VTable [0x00000000030E59E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSNote@@$0DA@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030E5A30, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSNote@@$0DA@$0DG@$08@@` -`class BGSPerkEntry`: VTable [0x00000000030E63F8, 0x0000000000000000 offset, 25 functions] `.?AVBGSPerkEntry@@` -`class BGSQuestPerkEntry`: VTable [0x00000000030E64F8, 0x0000000000000000 offset, 25 functions] `.?AVBGSQuestPerkEntry@@` -`class BGSAbilityPerkEntry`: VTable [0x00000000030E65F8, 0x0000000000000000 offset, 25 functions] `.?AVBGSAbilityPerkEntry@@` -`class BGSEntryPointPerkEntry`: VTable [0x00000000030E66F8, 0x0000000000000000 offset, 25 functions] `.?AVBGSEntryPointPerkEntry@@` -`class BGSPerk`: VTable [0x00000000030E67F8, 0x0000000000000000 offset, 101 functions] `.?AVBGSPerk@@` -`class BGSPerk`: VTable [0x00000000030E6BD0, 0x0000000000000028 offset, 16 functions] `.?AVBGSPerk@@` -`class BGSPerk`: VTable [0x00000000030E6C78, 0x0000000000000040 offset, 14 functions] `.?AVBGSPerk@@` -`class BGSPerk`: VTable [0x00000000030E6D08, 0x0000000000000068 offset, 20 functions] `.?AVBGSPerk@@` -`class ConcreteFormFactory`: VTable [0x00000000030E6DD8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSPerk@@$0FM@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030E6E28, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSPerk@@$0FM@$0CH@$0A@@@` -`class `anonymous namespace'::EntryPointFragmentUIHandler`: VTable [0x00000000030E7968, 0x0000000000000000 offset, 6 functions] `.?AVEntryPointFragmentUIHandler@?A0x8a760ca0@@` -`class `anonymous namespace'::FragmentRemoveCheckFunctor`: VTable [0x00000000030E79F0, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@?A0x8a760ca0@@` -`class BGSRagdoll`: VTable [0x00000000030E83E0, 0x0000000000000000 offset, 101 functions] `.?AVBGSRagdoll@@` -`class BGSRagdoll`: VTable [0x00000000030E87B8, 0x0000000000000028 offset, 20 functions] `.?AVBGSRagdoll@@` -`class ConcreteFormFactory`: VTable [0x00000000030E8888, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSRagdoll@@$0GK@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030E88D8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSRagdoll@@$0GK@$0EB@$08@@` -`class BGSRefAlias`: VTable [0x00000000030E9338, 0x0000000000000000 offset, 20 functions] `.?AVBGSRefAlias@@` -`class BGSRelationship`: VTable [0x00000000030EA538, 0x0000000000000000 offset, 101 functions] `.?AVBGSRelationship@@` -`class ConcreteFormFactory`: VTable [0x00000000030EA910, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSRelationship@@$0HJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030EA960, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSRelationship@@$0HJ@$0FA@$04@@` -`class BGSScene`: VTable [0x00000000030EB1D0, 0x0000000000000000 offset, 101 functions] `.?AVBGSScene@@` -`class ConcreteFormFactory`: VTable [0x00000000030EB5A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSScene@@$0HK@@@` -`class BGSSceneEventSink`: VTable [0x00000000030ECA90, 0x0000000000000000 offset, 8 functions] `.?AVBGSSceneEventSink@@` -`class `anonymous namespace'::BaseSceneFragmentUIHandler`: VTable [0x00000000030ECAE8, 0x0000000000000000 offset, 6 functions] `.?AVBaseSceneFragmentUIHandler@?A0xd828b9d1@@` -`class `anonymous namespace'::BeginFragmentUIHandler`: VTable [0x00000000030ECB30, 0x0000000000000000 offset, 6 functions] `.?AVBeginFragmentUIHandler@?A0xd828b9d1@@` -`class `anonymous namespace'::EndFragmentUIHandler`: VTable [0x00000000030ECB78, 0x0000000000000000 offset, 6 functions] `.?AVEndFragmentUIHandler@?A0xd828b9d1@@` -`class SceneInternal::IGetEditedFragmentCodeFunctor`: VTable [0x00000000030ECBC0, 0x0000000000000000 offset, 2 functions] `.?AVIGetEditedFragmentCodeFunctor@SceneInternal@@` -`class SceneInternal::BeginFragmentEdited`: VTable [0x00000000030ECBE0, 0x0000000000000000 offset, 2 functions] `.?AVBeginFragmentEdited@SceneInternal@@` -`class SceneInternal::EndFragmentEdited`: VTable [0x00000000030ECC00, 0x0000000000000000 offset, 2 functions] `.?AVEndFragmentEdited@SceneInternal@@` -`class SceneInternal::ActionFragmentEdited`: VTable [0x00000000030ECC20, 0x0000000000000000 offset, 2 functions] `.?AVActionFragmentEdited@SceneInternal@@` -`class SceneInternal::PhaseBeginFragmentEdited`: VTable [0x00000000030ECC40, 0x0000000000000000 offset, 2 functions] `.?AVPhaseBeginFragmentEdited@SceneInternal@@` -`class SceneInternal::PhaseEndFragmentEdited`: VTable [0x00000000030ECC60, 0x0000000000000000 offset, 2 functions] `.?AVPhaseEndFragmentEdited@SceneInternal@@` -`class SceneInternal::FragmentRemoveCheckFunctor`: VTable [0x00000000030ECC80, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@SceneInternal@@` -`class BGSSceneAction`: VTable [0x00000000030ED250, 0x0000000000000000 offset, 25 functions] `.?AVBGSSceneAction@@` -`class BGSSceneActionDialogue`: VTable [0x00000000030ED350, 0x0000000000000000 offset, 25 functions] `.?AVBGSSceneActionDialogue@@` -`class BGSSceneActionPackage`: VTable [0x00000000030ED450, 0x0000000000000000 offset, 25 functions] `.?AVBGSSceneActionPackage@@` -`class BGSSceneActionTimer`: VTable [0x00000000030EDA48, 0x0000000000000000 offset, 25 functions] `.?AVBGSSceneActionTimer@@` -`class `anonymous namespace'::FragmentUIHandler`: VTable [0x00000000030EDCE8, 0x0000000000000000 offset, 6 functions] `.?AVFragmentUIHandler@?A0x5ed8be88@@` -`class `anonymous namespace'::BaseSceneFragmentUIHandler`: VTable [0x00000000030EDFC0, 0x0000000000000000 offset, 6 functions] `.?AVBaseSceneFragmentUIHandler@?A0xe83be452@@` -`class `anonymous namespace'::BeginFragmentUIHandler`: VTable [0x00000000030EE008, 0x0000000000000000 offset, 6 functions] `.?AVBeginFragmentUIHandler@?A0xe83be452@@` -`class `anonymous namespace'::EndFragmentUIHandler`: VTable [0x00000000030EE050, 0x0000000000000000 offset, 6 functions] `.?AVEndFragmentUIHandler@?A0xe83be452@@` -`class BGSVoiceType`: VTable [0x00000000030EE2B0, 0x0000000000000000 offset, 101 functions] `.?AVBGSVoiceType@@` -`class ConcreteFormFactory`: VTable [0x00000000030EE688, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSVoiceType@@$0GC@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030EE6D8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSVoiceType@@$0GC@$0DA@$04@@` -`class CreatureSounds`: VTable [0x00000000030EEB48, 0x0000000000000000 offset, 2 functions] `.?AVCreatureSounds@@` -`class TESAnimGroup`: VTable [0x00000000030EFED0, 0x0000000000000000 offset, 2 functions] `.?AVTESAnimGroup@@` -`class TESClass`: VTable [0x00000000030F0418, 0x0000000000000000 offset, 101 functions] `.?AVTESClass@@` -`class TESClass`: VTable [0x00000000030F07F0, 0x0000000000000028 offset, 16 functions] `.?AVTESClass@@` -`class TESClass`: VTable [0x00000000030F0898, 0x0000000000000040 offset, 14 functions] `.?AVTESClass@@` -`class TESClass`: VTable [0x00000000030F0928, 0x0000000000000068 offset, 20 functions] `.?AVTESClass@@` -`class ConcreteFormFactory`: VTable [0x00000000030F09F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESClass@@$09@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030F0A48, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESClass@@$09$0DB@$04@@` -`class TESEyes`: VTable [0x00000000030F0C38, 0x0000000000000000 offset, 101 functions] `.?AVTESEyes@@` -`class TESEyes`: VTable [0x00000000030F1010, 0x0000000000000028 offset, 16 functions] `.?AVTESEyes@@` -`class TESEyes`: VTable [0x00000000030F10B8, 0x0000000000000040 offset, 20 functions] `.?AVTESEyes@@` -`class ConcreteFormFactory`: VTable [0x00000000030F1188, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESEyes@@$0N@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030F11D8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESEyes@@$0N@$0DD@$08@@` -`class TESFaction`: VTable [0x00000000030F1510, 0x0000000000000000 offset, 101 functions] `.?AVTESFaction@@` -`class TESFaction`: VTable [0x00000000030F18E8, 0x0000000000000028 offset, 16 functions] `.?AVTESFaction@@` -`class TESFaction`: VTable [0x00000000030F1990, 0x0000000000000040 offset, 14 functions] `.?AVTESFaction@@` -`class ConcreteFormFactory`: VTable [0x00000000030F1A20, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESFaction@@$0L@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030F1A70, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESFaction@@$0L@$0DF@$04@@` -`class NiTLargeArray >`: VTable [0x00000000030F2600, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@PEAVTESForm@@V?$NiTMallocInterface@PEAVTESForm@@@@@@` -`class NiTLargePrimitiveArray`: VTable [0x00000000030F2618, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargePrimitiveArray@PEAVTESForm@@@@` -`class NiFormArray`: VTable [0x00000000030F2630, 0x0000000000000000 offset, 1 functions] `.?AVNiFormArray@@` -`class TESIdleForm`: VTable [0x00000000030F2648, 0x0000000000000000 offset, 101 functions] `.?AVTESIdleForm@@` -`class ConcreteFormFactory`: VTable [0x00000000030F2A40, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESIdleForm@@$0EO@@@` -`class BSMapBase`: VTable [0x00000000030F2B68, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESIdleForm@@_N@@` -`class BSScrapMap`: VTable [0x00000000030F2BB8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@PEAVTESIdleForm@@_N@@` -`class ActorValueOwner`: VTable [0x00000000030F4D40, 0x0000000000000000 offset, 9 functions] `.?AVActorValueOwner@@` -`class TESActorBase`: VTable [0x00000000030F4DA0, 0x0000000000000000 offset, 129 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x00000000030F5280, 0x0000000000000050 offset, 20 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x00000000030F5350, 0x00000000000000A0 offset, 15 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x00000000030F53F0, 0x00000000000000B8 offset, 14 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x00000000030F5480, 0x00000000000000C8 offset, 14 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x00000000030F5510, 0x00000000000000F8 offset, 16 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x00000000030F55B8, 0x0000000000000110 offset, 9 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x00000000030F5618, 0x0000000000000118 offset, 14 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x00000000030F56A8, 0x0000000000000128 offset, 14 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x00000000030F5738, 0x0000000000000140 offset, 16 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x00000000030F57E0, 0x0000000000000158 offset, 14 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x00000000030F5870, 0x0000000000000168 offset, 14 functions] `.?AVTESActorBase@@` -`class TESNPC`: VTable [0x00000000030F5900, 0x0000000000000000 offset, 129 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F5DE0, 0x0000000000000050 offset, 20 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F5EB0, 0x00000000000000A0 offset, 15 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F5F50, 0x00000000000000B8 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F5FE0, 0x00000000000000C8 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F6070, 0x00000000000000F8 offset, 16 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F6118, 0x0000000000000110 offset, 9 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F6178, 0x0000000000000118 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F6208, 0x0000000000000128 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F6298, 0x0000000000000140 offset, 16 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F6340, 0x0000000000000158 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F63D0, 0x0000000000000168 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F6460, 0x0000000000000178 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x00000000030F64F0, 0x0000000000000188 offset, 14 functions] `.?AVTESNPC@@` -`class ConcreteFormFactory`: VTable [0x00000000030F65E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESNPC@@$0CL@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030F6630, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESNPC@@$0CL@$0N@$0A@@@` -`class `anonymous namespace'::InitWornVisitor`: VTable [0x00000000030F70D8, 0x0000000000000000 offset, 4 functions] `.?AVInitWornVisitor@?A0x0e11623d@@` -`class TESQuest`: VTable [0x00000000030F9410, 0x0000000000000000 offset, 106 functions] `.?AVTESQuest@@` -`class TESQuest`: VTable [0x00000000030F9818, 0x0000000000000028 offset, 16 functions] `.?AVTESQuest@@` -`class ConcreteFormFactory`: VTable [0x00000000030F9958, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESQuest@@$0EN@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030F99A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESQuest@@$0EN@$0CO@$04@@` -`class TESQuest::IAliasFilterFunctor`: VTable [0x00000000030FB0A8, 0x0000000000000000 offset, 2 functions] `.?AVIAliasFilterFunctor@TESQuest@@` -`class QuestInternal::FragmentRemoveCheckFunctor`: VTable [0x00000000030FB0F8, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@QuestInternal@@` -`class `anonymous namespace'::LocAliasOnly`: VTable [0x00000000030FB198, 0x0000000000000000 offset, 2 functions] `.?AVLocAliasOnly@?A0x112a7d05@@` -`class `anonymous namespace'::RefAliasOnly`: VTable [0x00000000030FB1B8, 0x0000000000000000 offset, 2 functions] `.?AVRefAliasOnly@?A0x112a7d05@@` -`class REFREventCallbacks::IEventCallback`: VTable [0x00000000030FBC50, 0x0000000000000000 offset, 5 functions] `.?AVIEventCallback@REFREventCallbacks@@` -`class REFREventCallbacks::IEventCallbackFactory`: VTable [0x00000000030FBC90, 0x0000000000000000 offset, 5 functions] `.?AVIEventCallbackFactory@REFREventCallbacks@@` -`class `anonymous namespace'::StageItemFinishedCallback`: VTable [0x00000000030FBCD0, 0x0000000000000000 offset, 5 functions] `.?AVStageItemFinishedCallback@?A0x0bd18a84@@` -`class REFREventCallbacks::ConcreteEventCallbackFactory`: VTable [0x00000000030FBD20, 0x0000000000000000 offset, 5 functions] `.?AV?$ConcreteEventCallbackFactory@VStageItemFinishedCallback@?A0x0bd18a84@@@REFREventCallbacks@@` -`class `anonymous namespace'::StageFragmentUIHandler`: VTable [0x00000000030FC140, 0x0000000000000000 offset, 6 functions] `.?AVStageFragmentUIHandler@?A0x195cf956@@` -`class BGSTextureModel`: VTable [0x00000000030FD128, 0x0000000000000000 offset, 20 functions] `.?AVBGSTextureModel@@` -`class BGSBehaviorGraphModel`: VTable [0x00000000030FD1F8, 0x0000000000000000 offset, 20 functions] `.?AVBGSBehaviorGraphModel@@` -`class AttackAnimationArrayMap`: VTable [0x00000000030FD2C8, 0x0000000000000000 offset, 2 functions] `.?AVAttackAnimationArrayMap@@` -`class TESRace`: VTable [0x00000000030FD2E8, 0x0000000000000000 offset, 101 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x00000000030FD6C0, 0x0000000000000028 offset, 16 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x00000000030FD768, 0x0000000000000040 offset, 14 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x00000000030FD7F8, 0x0000000000000068 offset, 14 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x00000000030FD888, 0x0000000000000078 offset, 14 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x00000000030FD918, 0x0000000000000090 offset, 14 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x00000000030FD9A8, 0x00000000000000A0 offset, 16 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x00000000030FDA50, 0x00000000000000B8 offset, 14 functions] `.?AVTESRace@@` -`class ConcreteFormFactory`: VTable [0x00000000030FDAE0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESRace@@$0O@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000030FDB30, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESRace@@$0O@$0DC@$04@@` -`class TESTopic`: VTable [0x0000000003100510, 0x0000000000000000 offset, 101 functions] `.?AVTESTopic@@` -`class TESTopic`: VTable [0x00000000031008E8, 0x0000000000000028 offset, 16 functions] `.?AVTESTopic@@` -`class ConcreteFormFactory`: VTable [0x00000000031009B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESTopic@@$0EL@@@` -`class NiTMapBase >,class TESTopicInfo * __ptr64,bool>`: VTable [0x0000000003101898, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESTopicInfo@@_N@@@@PEAVTESTopicInfo@@_N@@` -`class NiTMap`: VTable [0x00000000031018E8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESTopicInfo@@_N@@` -`class TESTopicInfo`: VTable [0x0000000003102040, 0x0000000000000000 offset, 103 functions] `.?AVTESTopicInfo@@` -`class ConcreteFormFactory`: VTable [0x00000000031025A0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESTopicInfo@@$0EM@@@` -`class `anonymous namespace'::TopicFragmentUIHandler`: VTable [0x0000000003103188, 0x0000000000000000 offset, 6 functions] `.?AVTopicFragmentUIHandler@?A0x98a33c48@@` -`class TopicInfoInternal::FragmentRemoveCheckFunctor`: VTable [0x00000000031033D0, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@TopicInfoInternal@@` -`class BGSAcousticSpace`: VTable [0x0000000003103790, 0x0000000000000000 offset, 125 functions] `.?AVBGSAcousticSpace@@` -`class ConcreteFormFactory`: VTable [0x0000000003103C50, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSAcousticSpace@@$0BA@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003103CA0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSAcousticSpace@@$0BA@$0EA@$07@@` -`class BGSCameraPath`: VTable [0x0000000003104110, 0x0000000000000000 offset, 101 functions] `.?AVBGSCameraPath@@` -`class ConcreteFormFactory`: VTable [0x00000000031044E8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSCameraPath@@$0GB@@@` -`class NiTArray >`: VTable [0x0000000003104808, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVBGSCameraPath@@V?$NiTMallocInterface@PEAVBGSCameraPath@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003104820, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVBGSCameraPath@@@@` -`class BGSCameraShot`: VTable [0x0000000003104BA0, 0x0000000000000000 offset, 101 functions] `.?AVBGSCameraShot@@` -`class BGSCameraShot`: VTable [0x0000000003104F78, 0x0000000000000028 offset, 20 functions] `.?AVBGSCameraShot@@` -`class BGSCameraShot`: VTable [0x0000000003105048, 0x0000000000000058 offset, 14 functions] `.?AVBGSCameraShot@@` -`class IJSONSerializer`: VTable [0x0000000003105138, 0x0000000000000000 offset, 3 functions] `.?AVIJSONSerializer@@` -`class ConcreteFormFactory`: VTable [0x0000000003105160, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSCameraShot@@$0GA@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000031051B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSCameraShot@@$0GA@$0CL@$05@@` -`class JSONSerializerBase`: VTable [0x0000000003105300, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VCameraShotSerializer@?A0x978e7916@@VBGSCameraShot@@$0GA@@@` -`class `anonymous namespace'::CameraShotSerializer`: VTable [0x0000000003105328, 0x0000000000000000 offset, 3 functions] `.?AVCameraShotSerializer@?A0x978e7916@@` -`class BGSCollisionLayer`: VTable [0x00000000031057B0, 0x0000000000000000 offset, 101 functions] `.?AVBGSCollisionLayer@@` -`class BGSCollisionLayer`: VTable [0x0000000003105B88, 0x0000000000000028 offset, 14 functions] `.?AVBGSCollisionLayer@@` -`class ConcreteFormFactory`: VTable [0x0000000003105C18, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSCollisionLayer@@$0IE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003105C68, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSCollisionLayer@@$0IE@$0GD@$03@@` -`class BGSColorForm`: VTable [0x00000000031066B8, 0x0000000000000000 offset, 101 functions] `.?AVBGSColorForm@@` -`class BGSColorForm`: VTable [0x0000000003106A90, 0x0000000000000028 offset, 16 functions] `.?AVBGSColorForm@@` -`class ConcreteFormFactory`: VTable [0x0000000003106B38, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSColorForm@@$0IF@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003106B88, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSColorForm@@$0IF@$0GF@$03@@` -`class BGSDefaultObjectManager`: VTable [0x0000000003109A78, 0x0000000000000000 offset, 101 functions] `.?AVBGSDefaultObjectManager@@` -`class BGSFootstep`: VTable [0x000000000310A1C8, 0x0000000000000000 offset, 101 functions] `.?AVBGSFootstep@@` -`class ConcreteFormFactory`: VTable [0x000000000310A5A0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSFootstep@@$0GO@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000310A5F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSFootstep@@$0GO@$0EJ@$05@@` -`class BGSFootstepSet`: VTable [0x000000000310A948, 0x0000000000000000 offset, 101 functions] `.?AVBGSFootstepSet@@` -`class ConcreteFormFactory`: VTable [0x000000000310AD20, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSFootstepSet@@$0GP@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000310AD70, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSFootstepSet@@$0GP@$0EK@$05@@` -`class BGSImpactData`: VTable [0x000000000310B040, 0x0000000000000000 offset, 101 functions] `.?AVBGSImpactData@@` -`class BGSImpactData`: VTable [0x000000000310B418, 0x0000000000000028 offset, 20 functions] `.?AVBGSImpactData@@` -`class ConcreteFormFactory`: VTable [0x000000000310B4E8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSImpactData@@$0GE@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000310B538, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSImpactData@@$0GE@$0CM@$05@@` -`class BGSImpactDataSet`: VTable [0x000000000310B9D0, 0x0000000000000000 offset, 101 functions] `.?AVBGSImpactDataSet@@` -`class BGSImpactDataSet`: VTable [0x000000000310BDA8, 0x0000000000000028 offset, 14 functions] `.?AVBGSImpactDataSet@@` -`class ConcreteFormFactory`: VTable [0x000000000310BE38, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSImpactDataSet@@$0GF@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000310BE88, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSImpactDataSet@@$0GF@$0CN@$05@@` -`class BGSListForm`: VTable [0x000000000310C468, 0x0000000000000000 offset, 101 functions] `.?AVBGSListForm@@` -`class ConcreteFormFactory`: VTable [0x000000000310C840, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSListForm@@$0FL@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000310C890, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSListForm@@$0FL@$0CG@$03@@` -`class BSMaterialObject`: VTable [0x000000000310CE58, 0x0000000000000000 offset, 2 functions] `.?AVBSMaterialObject@@` -`class BGSMaterialObject`: VTable [0x000000000310CE78, 0x0000000000000000 offset, 101 functions] `.?AVBGSMaterialObject@@` -`class BGSMaterialObject`: VTable [0x000000000310D250, 0x0000000000000028 offset, 20 functions] `.?AVBGSMaterialObject@@` -`class BGSMaterialObject`: VTable [0x000000000310D320, 0x0000000000000058 offset, 2 functions] `.?AVBGSMaterialObject@@` -`class ConcreteFormFactory`: VTable [0x000000000310D340, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMaterialObject@@$0HO@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000310D390, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMaterialObject@@$0HO@$0FF@$03@@` -`class BGSMaterialType`: VTable [0x000000000310D920, 0x0000000000000000 offset, 101 functions] `.?AVBGSMaterialType@@` -`class ConcreteFormFactory`: VTable [0x000000000310DCF8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMaterialType@@$0GD@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000310DD48, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMaterialType@@$0GD@$0EL@$05@@` -`class BSMapBase`: VTable [0x000000000310E1A0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@IPEAVBGSMaterialType@@@@` -`class BSScrapMap`: VTable [0x000000000310E1F0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@IPEAVBGSMaterialType@@@@` -`class BGSMenuIcon`: VTable [0x000000000310E448, 0x0000000000000000 offset, 101 functions] `.?AVBGSMenuIcon@@` -`class BGSMenuIcon`: VTable [0x000000000310E820, 0x0000000000000028 offset, 20 functions] `.?AVBGSMenuIcon@@` -`class ConcreteFormFactory`: VTable [0x000000000310E8F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMenuIcon@@$07@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000310E940, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMenuIcon@@$07$0CF@$08@@` -`class BGSMessage`: VTable [0x000000000310EBC8, 0x0000000000000000 offset, 101 functions] `.?AVBGSMessage@@` -`class BGSMessage`: VTable [0x000000000310EFA0, 0x0000000000000028 offset, 16 functions] `.?AVBGSMessage@@` -`class BGSMessage`: VTable [0x000000000310F048, 0x0000000000000040 offset, 14 functions] `.?AVBGSMessage@@` -`class ConcreteFormFactory`: VTable [0x000000000310F0F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMessage@@$0GJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000310F140, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMessage@@$0GJ@$0DO@$03@@` -`class BGSMusicPaletteTrack`: VTable [0x000000000310FA30, 0x0000000000000000 offset, 29 functions] `.?AVBGSMusicPaletteTrack@@` -`struct IBSTCreator`: VTable [0x000000000310FB50, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSIMusicTrack@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000310FB78, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSMusicPaletteTrack@@VBSIMusicTrack@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000310FBA0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSMusicPaletteTrack@@VBSIMusicTrack@@@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000310FBC8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSMusicPaletteTrack@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` -`class BGSMusicSilenceTrack`: VTable [0x0000000003110188, 0x0000000000000000 offset, 27 functions] `.?AVBGSMusicSilenceTrack@@` -`struct BSTDerivedCreator`: VTable [0x0000000003110298, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSMusicSilenceTrack@@VBSIMusicTrack@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000031102C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSMusicSilenceTrack@@VBSIMusicTrack@@@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031102E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSMusicSilenceTrack@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` -`class BGSMusicSingleTrack`: VTable [0x0000000003110508, 0x0000000000000000 offset, 27 functions] `.?AVBGSMusicSingleTrack@@` -`struct BSTDerivedCreator`: VTable [0x0000000003110620, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSMusicSingleTrack@@VBSIMusicTrack@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003110648, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSMusicSingleTrack@@VBSIMusicTrack@@@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003110670, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSMusicSingleTrack@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` -`class BSIMusicTrack`: VTable [0x0000000003110A88, 0x0000000000000000 offset, 11 functions] `.?AVBSIMusicTrack@@` -`class BGSMusicTrack`: VTable [0x0000000003110B00, 0x0000000000000000 offset, 27 functions] `.?AVBGSMusicTrack@@` -`class BGSMusicTrackFormWrapper`: VTable [0x0000000003110EF0, 0x0000000000000000 offset, 101 functions] `.?AVBGSMusicTrackFormWrapper@@` -`class BGSMusicTrackFormWrapper`: VTable [0x00000000031112C8, 0x0000000000000028 offset, 11 functions] `.?AVBGSMusicTrackFormWrapper@@` -`class ConcreteFormFactory`: VTable [0x00000000031113D8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMusicTrackFormWrapper@@$0HE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003111428, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMusicTrackFormWrapper@@$0HE@$0EN@$07@@` -`class BSIMusicType`: VTable [0x0000000003111828, 0x0000000000000000 offset, 9 functions] `.?AVBSIMusicType@@` -`class BGSMusicType`: VTable [0x0000000003111888, 0x0000000000000000 offset, 101 functions] `.?AVBGSMusicType@@` -`class BGSMusicType`: VTable [0x0000000003111C60, 0x0000000000000028 offset, 9 functions] `.?AVBGSMusicType@@` -`class ConcreteFormFactory`: VTable [0x0000000003111CC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMusicType@@$0GN@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003111D10, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMusicType@@$0GN@$0EE@$07@@` -`class BSIReverbType`: VTable [0x0000000003112050, 0x0000000000000000 offset, 11 functions] `.?AVBSIReverbType@@` -`class BGSReverbParameters`: VTable [0x00000000031120C8, 0x0000000000000000 offset, 102 functions] `.?AVBGSReverbParameters@@` -`class BGSReverbParameters`: VTable [0x00000000031124A8, 0x0000000000000028 offset, 11 functions] `.?AVBGSReverbParameters@@` -`class ConcreteFormFactory`: VTable [0x0000000003112520, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSReverbParameters@@$0IG@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003112570, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSReverbParameters@@$0IG@$0GG@$07@@` -`class BSISoundCategory`: VTable [0x0000000003112AB0, 0x0000000000000000 offset, 12 functions] `.?AVBSISoundCategory@@` -`class BGSSoundCategory`: VTable [0x0000000003112B30, 0x0000000000000000 offset, 101 functions] `.?AVBGSSoundCategory@@` -`class BGSSoundCategory`: VTable [0x0000000003112F08, 0x0000000000000028 offset, 16 functions] `.?AVBGSSoundCategory@@` -`class BGSSoundCategory`: VTable [0x0000000003112FB0, 0x0000000000000040 offset, 12 functions] `.?AVBGSSoundCategory@@` -`class ConcreteFormFactory`: VTable [0x0000000003113030, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSSoundCategory@@$0IC@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003113080, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSSoundCategory@@$0IC@$0GA@$07@@` -`class JSONSerializerBase`: VTable [0x0000000003113110, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VSoundCatSerializer@?A0xe9c9723c@@VBGSSoundCategory@@$0IC@@@` -`class `anonymous namespace'::SoundCatSerializer`: VTable [0x0000000003113138, 0x0000000000000000 offset, 3 functions] `.?AVSoundCatSerializer@?A0xe9c9723c@@` -`class BSISoundDescriptor`: VTable [0x0000000003113970, 0x0000000000000000 offset, 3 functions] `.?AVBSISoundDescriptor@@` -`class BGSSoundDescriptorForm`: VTable [0x0000000003113998, 0x0000000000000000 offset, 102 functions] `.?AVBGSSoundDescriptorForm@@` -`class BGSSoundDescriptorForm`: VTable [0x0000000003113D78, 0x0000000000000028 offset, 3 functions] `.?AVBGSSoundDescriptorForm@@` -`class ConcreteFormFactory`: VTable [0x0000000003113DA0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSSoundDescriptorForm@@$0IA@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003113DF0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSSoundDescriptorForm@@$0IA@$0FO@$07@@` -`class JSONSerializerBase`: VTable [0x0000000003113E58, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VSoundDescSerializer@?A0x8937a3e0@@VBGSSoundDescriptorForm@@$0IA@@@` -`class `anonymous namespace'::SoundDescSerializer`: VTable [0x0000000003113E80, 0x0000000000000000 offset, 3 functions] `.?AVSoundDescSerializer@?A0x8937a3e0@@` -`struct BSISoundOutputModel::BSIAttenuationCharacteristics`: VTable [0x0000000003114260, 0x0000000000000000 offset, 4 functions] `.?AUBSIAttenuationCharacteristics@BSISoundOutputModel@@` -`class BSISoundOutputModel`: VTable [0x0000000003114290, 0x0000000000000000 offset, 10 functions] `.?AVBSISoundOutputModel@@` -`struct BGSSoundOutput::DynamicAttenuationCharacteristics`: VTable [0x0000000003114300, 0x0000000000000000 offset, 4 functions] `.?AUDynamicAttenuationCharacteristics@BGSSoundOutput@@` -`class BGSSoundOutput`: VTable [0x0000000003114330, 0x0000000000000000 offset, 101 functions] `.?AVBGSSoundOutput@@` -`class BGSSoundOutput`: VTable [0x0000000003114708, 0x0000000000000028 offset, 10 functions] `.?AVBGSSoundOutput@@` -`class ConcreteFormFactory`: VTable [0x0000000003114858, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSSoundOutput@@$0ID@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000031148A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSSoundOutput@@$0ID@$0GC@$07@@` -`struct BSISoundDescriptor::BSIPlaybackCharacteristics`: VTable [0x0000000003114F88, 0x0000000000000000 offset, 6 functions] `.?AUBSIPlaybackCharacteristics@BSISoundDescriptor@@` -`class BGSSoundDescriptor`: VTable [0x0000000003114FD0, 0x0000000000000000 offset, 27 functions] `.?AVBGSSoundDescriptor@@` -`struct BGSStandardSoundDef::SoundPlaybackCharacteristics`: VTable [0x00000000031150E0, 0x0000000000000000 offset, 6 functions] `.?AUSoundPlaybackCharacteristics@BGSStandardSoundDef@@` -`class BGSStandardSoundDef`: VTable [0x0000000003115128, 0x0000000000000000 offset, 27 functions] `.?AVBGSStandardSoundDef@@` -`struct IBSTCreator`: VTable [0x0000000003115238, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBGSSoundDescriptor@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003115260, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSStandardSoundDef@@VBGSSoundDescriptor@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003115288, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSStandardSoundDef@@VBGSSoundDescriptor@@@@V?$BSTCreateFactoryManager@IVBGSSoundDescriptor@@$07@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031152B0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSStandardSoundDef@@V?$BSTCreateFactoryManager@IVBGSSoundDescriptor@@$07@@@@` -`class BSTextureSet`: VTable [0x0000000003115C40, 0x0000000000000000 offset, 42 functions] `.?AVBSTextureSet@@` -`class BSShaderTextureSet`: VTable [0x0000000003115DE0, 0x0000000000000000 offset, 42 functions] `.?AVBSShaderTextureSet@@` -`class BGSTextureSet`: VTable [0x0000000003115F80, 0x0000000000000000 offset, 125 functions] `.?AVBGSTextureSet@@` -`class BGSTextureSet`: VTable [0x0000000003116440, 0x0000000000000050 offset, 42 functions] `.?AVBGSTextureSet@@` -`class ConcreteFormFactory`: VTable [0x00000000031165E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSTextureSet@@$06@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003116630, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSTextureSet@@$06$0CD@$03@@` -`class `anonymous namespace'::GameSettingFactory`: VTable [0x0000000003116DF0, 0x0000000000000000 offset, 7 functions] `.?AVGameSettingFactory@?A0x1881ce94@@` -`class TESGlobal`: VTable [0x0000000003117208, 0x0000000000000000 offset, 101 functions] `.?AVTESGlobal@@` -`class ConcreteFormFactory`: VTable [0x00000000031175E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESGlobal@@$08@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003117630, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESGlobal@@$08$0DK@$03@@` -`class TESLoadScreen`: VTable [0x00000000031177D8, 0x0000000000000000 offset, 101 functions] `.?AVTESLoadScreen@@` -`class TESLoadScreen`: VTable [0x0000000003117BB0, 0x0000000000000028 offset, 14 functions] `.?AVTESLoadScreen@@` -`class ConcreteFormFactory`: VTable [0x0000000003117C40, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLoadScreen@@$0FB@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003117C90, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLoadScreen@@$0FB@$0BK@$03@@` -`class Script`: VTable [0x00000000031182C0, 0x0000000000000000 offset, 103 functions] `.?AVScript@@` -`class ConcreteFormFactory`: VTable [0x00000000031186A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VScript@@$0BD@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000031186F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VScript@@$0BD@$0EC@$08@@` -`struct `anonymous namespace'::FindFormTypeHelper`: VTable [0x000000000311AD00, 0x0000000000000000 offset, 2 functions] `.?AUFindFormTypeHelper@?A0x1c25ca9d@@` -`class BSNodeVisualization::MatchingNodeVisualizer`: VTable [0x000000000311CBE8, 0x0000000000000000 offset, 2 functions] `.?AVMatchingNodeVisualizer@BSNodeVisualization@@` -`class TESShout`: VTable [0x000000000312AF80, 0x0000000000000000 offset, 101 functions] `.?AVTESShout@@` -`class TESShout`: VTable [0x000000000312B358, 0x0000000000000028 offset, 16 functions] `.?AVTESShout@@` -`class TESShout`: VTable [0x000000000312B400, 0x0000000000000040 offset, 15 functions] `.?AVTESShout@@` -`class TESShout`: VTable [0x000000000312B4A0, 0x0000000000000050 offset, 16 functions] `.?AVTESShout@@` -`class TESShout`: VTable [0x000000000312B548, 0x0000000000000060 offset, 14 functions] `.?AVTESShout@@` -`class ConcreteFormFactory`: VTable [0x000000000312B7B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESShout@@$0HH@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000312B808, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESShout@@$0HH@$0EP@$01@@` -`class TESSound`: VTable [0x000000000312BAA8, 0x0000000000000000 offset, 125 functions] `.?AVTESSound@@` -`class ConcreteFormFactory`: VTable [0x000000000312BF68, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESSound@@$0P@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000312BFB8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESSound@@$0P@$0BH@$07@@` -`class TESWordOfPower`: VTable [0x000000000312C218, 0x0000000000000000 offset, 101 functions] `.?AVTESWordOfPower@@` -`class TESWordOfPower`: VTable [0x000000000312C5F0, 0x0000000000000028 offset, 16 functions] `.?AVTESWordOfPower@@` -`class ConcreteFormFactory`: VTable [0x000000000312C698, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESWordOfPower@@$0HG@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000312C6E8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESWordOfPower@@$0HG@$0EO@$01@@` -`class BGSAddonNode`: VTable [0x000000000312C900, 0x0000000000000000 offset, 125 functions] `.?AVBGSAddonNode@@` -`class BGSAddonNode`: VTable [0x000000000312CDC0, 0x0000000000000050 offset, 20 functions] `.?AVBGSAddonNode@@` -`class ConcreteFormFactory`: VTable [0x000000000312CE90, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSAddonNode@@$0FO@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000312CEE0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSAddonNode@@$0FO@$0CJ@$05@@` -`class BGSApparatus`: VTable [0x000000000312D240, 0x0000000000000000 offset, 128 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x000000000312D718, 0x0000000000000050 offset, 16 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x000000000312D7C0, 0x0000000000000068 offset, 20 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x000000000312D890, 0x00000000000000B0 offset, 20 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x000000000312D960, 0x00000000000000D8 offset, 14 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x000000000312D9F0, 0x00000000000000E8 offset, 14 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x000000000312DA80, 0x00000000000000F8 offset, 14 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x000000000312DB10, 0x0000000000000108 offset, 14 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x000000000312DBA0, 0x0000000000000138 offset, 14 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x000000000312DC30, 0x0000000000000150 offset, 16 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x000000000312DCD8, 0x0000000000000178 offset, 14 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x000000000312DD68, 0x0000000000000188 offset, 14 functions] `.?AVBGSApparatus@@` -`class ConcreteFormFactory`: VTable [0x000000000312DDF8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSApparatus@@$0CB@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000312DE48, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSApparatus@@$0CB@$0FK@$08@@` -`class BGSArtObject`: VTable [0x000000000312E000, 0x0000000000000000 offset, 125 functions] `.?AVBGSArtObject@@` -`class BGSArtObject`: VTable [0x000000000312E4C0, 0x0000000000000050 offset, 20 functions] `.?AVBGSArtObject@@` -`class ConcreteFormFactory`: VTable [0x000000000312E590, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSArtObject@@$0HN@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000312E5E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSArtObject@@$0HN@$0FE@$03@@` -`class BGSConstructibleObject`: VTable [0x000000000312E7D8, 0x0000000000000000 offset, 101 functions] `.?AVBGSConstructibleObject@@` -`class ConcreteFormFactory`: VTable [0x000000000312EBB0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSConstructibleObject@@$0DB@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000312EC00, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSConstructibleObject@@$0DB@$0DP@$00@@` -`class BGSDebris`: VTable [0x000000000312F018, 0x0000000000000000 offset, 101 functions] `.?AVBGSDebris@@` -`class BGSDebris`: VTable [0x000000000312F3F0, 0x0000000000000028 offset, 14 functions] `.?AVBGSDebris@@` -`class ConcreteFormFactory`: VTable [0x000000000312F480, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSDebris@@$0FI@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000312F4D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSDebris@@$0FI@$0CE@$05@@` -`class BGSExplosion`: VTable [0x000000000312F920, 0x0000000000000000 offset, 125 functions] `.?AVBGSExplosion@@` -`class BGSExplosion`: VTable [0x000000000312FDE0, 0x0000000000000050 offset, 16 functions] `.?AVBGSExplosion@@` -`class BGSExplosion`: VTable [0x000000000312FE88, 0x0000000000000068 offset, 20 functions] `.?AVBGSExplosion@@` -`class BGSExplosion`: VTable [0x000000000312FF58, 0x0000000000000098 offset, 15 functions] `.?AVBGSExplosion@@` -`class BGSExplosion`: VTable [0x000000000312FFF8, 0x00000000000000B0 offset, 14 functions] `.?AVBGSExplosion@@` -`class BGSExplosion`: VTable [0x0000000003130088, 0x00000000000000B8 offset, 14 functions] `.?AVBGSExplosion@@` -`class ConcreteFormFactory`: VTable [0x0000000003130118, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSExplosion@@$0FH@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003130168, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSExplosion@@$0FH@$0CC@$05@@` -`class JSONSerializerBase`: VTable [0x0000000003130290, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VExplosionSerializer@?A0xf8e05650@@VBGSExplosion@@$0FH@@@` -`class `anonymous namespace'::ExplosionSerializer`: VTable [0x00000000031302B8, 0x0000000000000000 offset, 3 functions] `.?AVExplosionSerializer@?A0xf8e05650@@` -`class BGSHazard`: VTable [0x0000000003130630, 0x0000000000000000 offset, 125 functions] `.?AVBGSHazard@@` -`class BGSHazard`: VTable [0x0000000003130AF0, 0x0000000000000050 offset, 16 functions] `.?AVBGSHazard@@` -`class BGSHazard`: VTable [0x0000000003130B98, 0x0000000000000068 offset, 20 functions] `.?AVBGSHazard@@` -`class BGSHazard`: VTable [0x0000000003130C68, 0x0000000000000098 offset, 14 functions] `.?AVBGSHazard@@` -`class BGSHazard`: VTable [0x0000000003130CF8, 0x00000000000000A0 offset, 14 functions] `.?AVBGSHazard@@` -`class ConcreteFormFactory`: VTable [0x0000000003130D88, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSHazard@@$0DD@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003130DD8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSHazard@@$0DD@$0FM@$05@@` -`class BGSMovableStatic`: VTable [0x00000000031310F8, 0x0000000000000000 offset, 16 functions] `.?AVBGSMovableStatic@@` -`class BGSMovableStatic`: VTable [0x00000000031311A0, 0x0000000000000018 offset, 14 functions] `.?AVBGSMovableStatic@@` -`class BGSMovableStatic`: VTable [0x0000000003131230, 0x0000000000000028 offset, 125 functions] `.?AVBGSMovableStatic@@` -`class BGSMovableStatic`: VTable [0x00000000031316F0, 0x0000000000000078 offset, 20 functions] `.?AVBGSMovableStatic@@` -`class ConcreteFormFactory`: VTable [0x00000000031317C0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMovableStatic@@$0CE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003131810, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMovableStatic@@$0CE@$0CK@$02@@` -`class BGSOutfit`: VTable [0x0000000003131AE0, 0x0000000000000000 offset, 101 functions] `.?AVBGSOutfit@@` -`class ConcreteFormFactory`: VTable [0x0000000003131EB8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSOutfit@@$0HM@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003131F08, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSOutfit@@$0HM@$0FD@$00@@` -`class BGSProjectile`: VTable [0x0000000003132310, 0x0000000000000000 offset, 125 functions] `.?AVBGSProjectile@@` -`class BGSProjectile`: VTable [0x00000000031327D0, 0x0000000000000050 offset, 16 functions] `.?AVBGSProjectile@@` -`class BGSProjectile`: VTable [0x0000000003132878, 0x0000000000000068 offset, 20 functions] `.?AVBGSProjectile@@` -`class BGSProjectile`: VTable [0x0000000003132948, 0x0000000000000098 offset, 14 functions] `.?AVBGSProjectile@@` -`class BGSProjectile`: VTable [0x00000000031329D8, 0x00000000000000A0 offset, 14 functions] `.?AVBGSProjectile@@` -`class ConcreteFormFactory`: VTable [0x0000000003132AC8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSProjectile@@$0DC@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003132B18, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSProjectile@@$0DC@$0CA@$05@@` -`class JSONSerializerBase`: VTable [0x0000000003132C98, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VProjectileSerializer@?A0xbd061e11@@VBGSProjectile@@$0DC@@@` -`class `anonymous namespace'::ProjectileSerializer`: VTable [0x0000000003132CC0, 0x0000000000000000 offset, 3 functions] `.?AVProjectileSerializer@?A0xbd061e11@@` -`class BGSStaticCollection`: VTable [0x0000000003133350, 0x0000000000000000 offset, 125 functions] `.?AVBGSStaticCollection@@` -`class BGSStaticCollection`: VTable [0x0000000003133810, 0x0000000000000050 offset, 20 functions] `.?AVBGSStaticCollection@@` -`class ConcreteFormFactory`: VTable [0x00000000031338E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSStaticCollection@@$0CD@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003133930, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSStaticCollection@@$0CD@$0EF@$02@@` -`class BSMapBase * __ptr64>`: VTable [0x00000000031339D8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESObjectSTAT@@PEAV?$BSSimpleList@UREF_COL_DATA@BGSStaticCollection@@@@@@` -`class BSMap * __ptr64>`: VTable [0x0000000003133A28, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEAVTESObjectSTAT@@PEAV?$BSSimpleList@UREF_COL_DATA@BGSStaticCollection@@@@@@` -`class NiTArray >`: VTable [0x0000000003134318, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@UINVALID_REF_DATA@@V?$NiTMallocInterface@UINVALID_REF_DATA@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003134330, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@UINVALID_REF_DATA@@@@` -`class NiTArray >`: VTable [0x0000000003134628, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@UREF_COL_DATA@BGSStaticCollection@@V?$NiTMallocInterface@UREF_COL_DATA@BGSStaticCollection@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003134640, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@UREF_COL_DATA@BGSStaticCollection@@@@` -`class BGSTalkingActivator`: VTable [0x0000000003134748, 0x0000000000000000 offset, 126 functions] `.?AVBGSTalkingActivator@@` -`class BGSTalkingActivator`: VTable [0x0000000003134C10, 0x0000000000000050 offset, 16 functions] `.?AVBGSTalkingActivator@@` -`class BGSTalkingActivator`: VTable [0x0000000003134CB8, 0x0000000000000068 offset, 20 functions] `.?AVBGSTalkingActivator@@` -`class BGSTalkingActivator`: VTable [0x0000000003134D88, 0x00000000000000B0 offset, 14 functions] `.?AVBGSTalkingActivator@@` -`class BGSTalkingActivator`: VTable [0x0000000003134E18, 0x00000000000000C0 offset, 4 functions] `.?AVBGSTalkingActivator@@` -`class BGSTalkingActivator`: VTable [0x0000000003134E48, 0x00000000000000C8 offset, 16 functions] `.?AVBGSTalkingActivator@@` -`class ConcreteFormFactory`: VTable [0x0000000003134EF0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSTalkingActivator@@$0BJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003134F40, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSTalkingActivator@@$0BJ@$0CB@$0A@@@` -`class TESAmmo`: VTable [0x0000000003135118, 0x0000000000000000 offset, 125 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x00000000031355D8, 0x0000000000000050 offset, 16 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000003135680, 0x0000000000000068 offset, 20 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000003135750, 0x00000000000000B0 offset, 20 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000003135820, 0x00000000000000D8 offset, 14 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x00000000031358B0, 0x0000000000000108 offset, 14 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000003135940, 0x0000000000000118 offset, 14 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x00000000031359D0, 0x0000000000000128 offset, 14 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000003135A60, 0x0000000000000138 offset, 14 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000003135AF0, 0x0000000000000150 offset, 14 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000003135B80, 0x0000000000000178 offset, 16 functions] `.?AVTESAmmo@@` -`class ConcreteFormFactory`: VTable [0x0000000003135C28, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESAmmo@@$0CK@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003135C78, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESAmmo@@$0CK@$0BE@$00@@` -`class TESCombatStyle`: VTable [0x0000000003136020, 0x0000000000000000 offset, 101 functions] `.?AVTESCombatStyle@@` -`class ConcreteFormFactory`: VTable [0x00000000031363F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESCombatStyle@@$0FA@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003136448, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESCombatStyle@@$0FA@$0BJ@$03@@` -`class TESEffectShader`: VTable [0x0000000003136760, 0x0000000000000000 offset, 101 functions] `.?AVTESEffectShader@@` -`class ConcreteFormFactory`: VTable [0x0000000003136B88, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESEffectShader@@$0FF@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003136BD8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESEffectShader@@$0FF@$0BP@$05@@` -`class JSONSerializerBase`: VTable [0x00000000031375D0, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VEffectShaderSerializer@?A0x2df347be@@VTESEffectShader@@$0FF@@@` -`class `anonymous namespace'::EffectShaderSerializer`: VTable [0x00000000031375F8, 0x0000000000000000 offset, 3 functions] `.?AVEffectShaderSerializer@?A0x2df347be@@` -`class TESFlora`: VTable [0x0000000003137CC0, 0x0000000000000000 offset, 125 functions] `.?AVTESFlora@@` -`class TESFlora`: VTable [0x0000000003138180, 0x0000000000000050 offset, 16 functions] `.?AVTESFlora@@` -`class TESFlora`: VTable [0x0000000003138228, 0x0000000000000068 offset, 20 functions] `.?AVTESFlora@@` -`class TESFlora`: VTable [0x00000000031382F8, 0x00000000000000B0 offset, 14 functions] `.?AVTESFlora@@` -`class TESFlora`: VTable [0x0000000003138388, 0x00000000000000C0 offset, 4 functions] `.?AVTESFlora@@` -`class TESFlora`: VTable [0x00000000031383B8, 0x00000000000000C8 offset, 16 functions] `.?AVTESFlora@@` -`class TESFlora`: VTable [0x0000000003138460, 0x0000000000000138 offset, 14 functions] `.?AVTESFlora@@` -`class ConcreteFormFactory`: VTable [0x00000000031384F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESFlora@@$0CH@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003138540, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESFlora@@$0CH@$0BF@$02@@` -`class TESFurniture`: VTable [0x0000000003138930, 0x0000000000000000 offset, 125 functions] `.?AVTESFurniture@@` -`class TESFurniture`: VTable [0x0000000003138DF0, 0x0000000000000050 offset, 16 functions] `.?AVTESFurniture@@` -`class TESFurniture`: VTable [0x0000000003138E98, 0x0000000000000068 offset, 20 functions] `.?AVTESFurniture@@` -`class TESFurniture`: VTable [0x0000000003138F68, 0x00000000000000B0 offset, 14 functions] `.?AVTESFurniture@@` -`class TESFurniture`: VTable [0x0000000003138FF8, 0x00000000000000C0 offset, 4 functions] `.?AVTESFurniture@@` -`class TESFurniture`: VTable [0x0000000003139028, 0x00000000000000C8 offset, 16 functions] `.?AVTESFurniture@@` -`class ConcreteFormFactory`: VTable [0x0000000003139100, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESFurniture@@$0CI@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003139150, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESFurniture@@$0CI@$0BG@$02@@` -`class TESGrass`: VTable [0x0000000003139B08, 0x0000000000000000 offset, 151 functions] `.?AVTESGrass@@` -`class TESGrass`: VTable [0x000000000313A0C0, 0x0000000000000050 offset, 20 functions] `.?AVTESGrass@@` -`class ConcreteFormFactory`: VTable [0x000000000313A1B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESGrass@@$0CF@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000313A200, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESGrass@@$0CF@$08$02@@` -`class TESKey`: VTable [0x000000000313A378, 0x0000000000000000 offset, 128 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x000000000313A850, 0x0000000000000050 offset, 16 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x000000000313A8F8, 0x0000000000000068 offset, 20 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x000000000313A9C8, 0x00000000000000B0 offset, 20 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x000000000313AA98, 0x00000000000000D8 offset, 14 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x000000000313AB28, 0x00000000000000E8 offset, 14 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x000000000313ABB8, 0x00000000000000F8 offset, 14 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x000000000313AC48, 0x0000000000000108 offset, 14 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x000000000313ACD8, 0x0000000000000138 offset, 14 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x000000000313AD68, 0x0000000000000150 offset, 16 functions] `.?AVTESKey@@` -`class ConcreteFormFactory`: VTable [0x000000000313AE10, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESKey@@$0CN@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000313AE60, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESKey@@$0CN@$0BD@$00@@` -`class TESLevCharacter`: VTable [0x000000000313AFE0, 0x0000000000000000 offset, 125 functions] `.?AVTESLevCharacter@@` -`class TESLevCharacter`: VTable [0x000000000313B4A0, 0x0000000000000050 offset, 23 functions] `.?AVTESLevCharacter@@` -`class TESLevCharacter`: VTable [0x000000000313B588, 0x0000000000000070 offset, 20 functions] `.?AVTESLevCharacter@@` -`class ConcreteFormFactory`: VTable [0x000000000313B658, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLevCharacter@@$0CM@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000313B6A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLevCharacter@@$0CM@$0O@$0A@@@` -`class TESLevItem`: VTable [0x000000000313B9D8, 0x0000000000000000 offset, 125 functions] `.?AVTESLevItem@@` -`class TESLevItem`: VTable [0x000000000313BE98, 0x0000000000000050 offset, 23 functions] `.?AVTESLevItem@@` -`class ConcreteFormFactory`: VTable [0x000000000313BF80, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLevItem@@$0DF@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000313BFD0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLevItem@@$0DF@$0BC@$00@@` -`class TESLevSpell`: VTable [0x000000000313C1F8, 0x0000000000000000 offset, 125 functions] `.?AVTESLevSpell@@` -`class TESLevSpell`: VTable [0x000000000313C6B8, 0x0000000000000050 offset, 23 functions] `.?AVTESLevSpell@@` -`class ConcreteFormFactory`: VTable [0x000000000313C7A0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLevSpell@@$0FC@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000313C7F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLevSpell@@$0FC@$0BL@$01@@` -`class TESObjectLIGH`: VTable [0x000000000313CA68, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x000000000313CF28, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x000000000313CFD0, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x000000000313D0A0, 0x00000000000000B0 offset, 20 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x000000000313D170, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x000000000313D200, 0x0000000000000108 offset, 14 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x000000000313D290, 0x0000000000000118 offset, 14 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x000000000313D320, 0x0000000000000128 offset, 14 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x000000000313D3B0, 0x0000000000000138 offset, 16 functions] `.?AVTESObjectLIGH@@` -`class ConcreteFormFactory`: VTable [0x000000000313D768, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectLIGH@@$0BP@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000313D7B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectLIGH@@$0BP@$05$02@@` -`class TESObject`: VTable [0x000000000313E098, 0x0000000000000000 offset, 114 functions] `.?AVTESObject@@` -`class TESBoundObject`: VTable [0x000000000313E4E8, 0x0000000000000000 offset, 125 functions] `.?AVTESBoundObject@@` -`class TESBoundAnimObject`: VTable [0x000000000313E9A8, 0x0000000000000000 offset, 125 functions] `.?AVTESBoundAnimObject@@` -`class BGSOpenCloseForm`: VTable [0x000000000313F288, 0x0000000000000000 offset, 4 functions] `.?AVBGSOpenCloseForm@@` -`class TESObjectACTI`: VTable [0x000000000313F2B8, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectACTI@@` -`class TESObjectACTI`: VTable [0x000000000313F778, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectACTI@@` -`class TESObjectACTI`: VTable [0x000000000313F820, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectACTI@@` -`class TESObjectACTI`: VTable [0x000000000313F8F0, 0x00000000000000B0 offset, 14 functions] `.?AVTESObjectACTI@@` -`class TESObjectACTI`: VTable [0x000000000313F980, 0x00000000000000C0 offset, 4 functions] `.?AVTESObjectACTI@@` -`class TESObjectACTI`: VTable [0x000000000313F9B0, 0x00000000000000C8 offset, 16 functions] `.?AVTESObjectACTI@@` -`class ConcreteFormFactory`: VTable [0x000000000313FA58, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectACTI@@$0BI@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000313FAA8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectACTI@@$0BI@$0A@$02@@` -`class TESObjectANIO`: VTable [0x000000000313FDF0, 0x0000000000000000 offset, 101 functions] `.?AVTESObjectANIO@@` -`class TESObjectANIO`: VTable [0x00000000031401C8, 0x0000000000000028 offset, 20 functions] `.?AVTESObjectANIO@@` -`class ConcreteFormFactory`: VTable [0x0000000003140298, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectANIO@@$0FD@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000031402E8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectANIO@@$0FD@$0BM@$03@@` -`class TESObjectARMA`: VTable [0x0000000003140520, 0x0000000000000000 offset, 114 functions] `.?AVTESObjectARMA@@` -`class TESObjectARMA`: VTable [0x0000000003140970, 0x0000000000000030 offset, 14 functions] `.?AVTESObjectARMA@@` -`class TESObjectARMA`: VTable [0x0000000003140A00, 0x0000000000000040 offset, 14 functions] `.?AVTESObjectARMA@@` -`class ConcreteFormFactory`: VTable [0x0000000003140AD0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectARMA@@$0GG@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003140B20, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectARMA@@$0GG@$0DJ@$00@@` -`class TESObjectARMO`: VTable [0x0000000003141050, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000003141510, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x00000000031415B8, 0x0000000000000068 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000003141648, 0x0000000000000078 offset, 15 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x00000000031416E8, 0x0000000000000090 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000003141778, 0x00000000000000A0 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000003141808, 0x00000000000000B0 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000003141898, 0x00000000000000C0 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000003141928, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x00000000031419B8, 0x0000000000000250 offset, 16 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000003141A60, 0x0000000000000260 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000003141AF0, 0x0000000000000270 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000003141B80, 0x0000000000000288 offset, 16 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000003141C28, 0x00000000000002A0 offset, 14 functions] `.?AVTESObjectARMO@@` -`class ConcreteFormFactory`: VTable [0x0000000003141D98, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectARMO@@$0BK@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003141DE8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectARMO@@$0BK@$00$00@@` -`class TESObjectBOOK`: VTable [0x0000000003142260, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000003142720, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x00000000031427C8, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000003142898, 0x00000000000000B0 offset, 20 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000003142968, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x00000000031429F8, 0x00000000000000E8 offset, 14 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000003142A88, 0x00000000000000F8 offset, 14 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000003142B18, 0x0000000000000120 offset, 14 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000003142BA8, 0x0000000000000130 offset, 14 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000003142C38, 0x0000000000000160 offset, 14 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000003142CC8, 0x0000000000000178 offset, 16 functions] `.?AVTESObjectBOOK@@` -`class ConcreteFormFactory`: VTable [0x0000000003142D70, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectBOOK@@$0BL@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003142DC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectBOOK@@$0BL@$01$00@@` -`class BSStreamParserData`: VTable [0x0000000003142FB8, 0x0000000000000000 offset, 4 functions] `.?AVBSStreamParserData@@` -`class BSResourceStreamParser`: VTable [0x0000000003142FE8, 0x0000000000000000 offset, 6 functions] `.?AVBSResourceStreamParser@@` -`class BSResourceStreamParser`: VTable [0x0000000003143030, 0x0000000000000038 offset, 4 functions] `.?AVBSResourceStreamParser@@` -`class TESObjectCONT`: VTable [0x00000000031433C0, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectCONT@@` -`class TESObjectCONT`: VTable [0x0000000003143880, 0x0000000000000050 offset, 15 functions] `.?AVTESObjectCONT@@` -`class TESObjectCONT`: VTable [0x0000000003143920, 0x0000000000000068 offset, 16 functions] `.?AVTESObjectCONT@@` -`class TESObjectCONT`: VTable [0x00000000031439C8, 0x0000000000000080 offset, 20 functions] `.?AVTESObjectCONT@@` -`class TESObjectCONT`: VTable [0x0000000003143A98, 0x00000000000000C8 offset, 14 functions] `.?AVTESObjectCONT@@` -`class TESObjectCONT`: VTable [0x0000000003143B28, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectCONT@@` -`class TESObjectCONT`: VTable [0x0000000003143BB8, 0x00000000000000E8 offset, 4 functions] `.?AVTESObjectCONT@@` -`class ConcreteFormFactory`: VTable [0x0000000003143BE8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectCONT@@$0BM@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003143C38, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectCONT@@$0BM@$02$02@@` -`class TESObjectDOOR`: VTable [0x00000000031441F8, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectDOOR@@` -`class TESObjectDOOR`: VTable [0x00000000031446B8, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectDOOR@@` -`class TESObjectDOOR`: VTable [0x0000000003144760, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectDOOR@@` -`class TESObjectDOOR`: VTable [0x0000000003144830, 0x00000000000000B0 offset, 14 functions] `.?AVTESObjectDOOR@@` -`class TESObjectDOOR`: VTable [0x00000000031448C0, 0x00000000000000C0 offset, 4 functions] `.?AVTESObjectDOOR@@` -`class ConcreteFormFactory`: VTable [0x0000000003144A28, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectDOOR@@$0BN@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003144A78, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectDOOR@@$0BN@$03$02@@` -`class TESObjectMISC`: VTable [0x0000000003144E40, 0x0000000000000000 offset, 128 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000003145318, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x00000000031453C0, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000003145490, 0x00000000000000B0 offset, 20 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000003145560, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x00000000031455F0, 0x00000000000000E8 offset, 14 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000003145680, 0x00000000000000F8 offset, 14 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000003145710, 0x0000000000000108 offset, 14 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x00000000031457A0, 0x0000000000000138 offset, 14 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000003145830, 0x0000000000000150 offset, 16 functions] `.?AVTESObjectMISC@@` -`class ConcreteFormFactory`: VTable [0x00000000031458D8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectMISC@@$0CA@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003145928, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectMISC@@$0CA@$06$00@@` -`class TESObjectSTAT`: VTable [0x0000000003145B10, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectSTAT@@` -`class TESObjectSTAT`: VTable [0x0000000003145FD0, 0x0000000000000050 offset, 20 functions] `.?AVTESObjectSTAT@@` -`class ConcreteFormFactory`: VTable [0x00000000031460A0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectSTAT@@$0CC@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000031460F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectSTAT@@$0CC@$07$02@@` -`class TESObjectTREE`: VTable [0x0000000003146400, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectTREE@@` -`class TESObjectTREE`: VTable [0x00000000031468C0, 0x0000000000000050 offset, 20 functions] `.?AVTESObjectTREE@@` -`class TESObjectTREE`: VTable [0x0000000003146990, 0x0000000000000080 offset, 16 functions] `.?AVTESObjectTREE@@` -`class TESObjectTREE`: VTable [0x0000000003146A38, 0x0000000000000098 offset, 14 functions] `.?AVTESObjectTREE@@` -`class ConcreteFormFactory`: VTable [0x0000000003146AC8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectTREE@@$0CG@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003146B18, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectTREE@@$0CG@$09$02@@` -`class TESObjectWEAP`: VTable [0x00000000031471A8, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000003147668, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000003147710, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x00000000031477E0, 0x00000000000000B0 offset, 20 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x00000000031478B0, 0x00000000000000D8 offset, 15 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000003147950, 0x00000000000000F0 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x00000000031479E0, 0x0000000000000100 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000003147A70, 0x0000000000000110 offset, 15 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000003147B10, 0x0000000000000120 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000003147BA0, 0x0000000000000130 offset, 16 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000003147C48, 0x0000000000000140 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000003147CD8, 0x0000000000000148 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000003147D68, 0x0000000000000178 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000003147DF8, 0x0000000000000190 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000003147E88, 0x00000000000001A8 offset, 16 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000003147F30, 0x00000000000001C0 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class ConcreteFormFactory`: VTable [0x0000000003147FC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectWEAP@@$0CJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003148010, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectWEAP@@$0CJ@$0M@$00@@` -`class TESSoulGem`: VTable [0x0000000003148AA0, 0x0000000000000000 offset, 128 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000003148F78, 0x0000000000000050 offset, 16 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000003149020, 0x0000000000000068 offset, 20 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x00000000031490F0, 0x00000000000000B0 offset, 20 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x00000000031491C0, 0x00000000000000D8 offset, 14 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000003149250, 0x00000000000000E8 offset, 14 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x00000000031492E0, 0x00000000000000F8 offset, 14 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000003149370, 0x0000000000000108 offset, 14 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000003149400, 0x0000000000000138 offset, 14 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000003149490, 0x0000000000000150 offset, 16 functions] `.?AVTESSoulGem@@` -`class ConcreteFormFactory`: VTable [0x0000000003149538, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESSoulGem@@$0DE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003149588, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESSoulGem@@$0DE@$0GB@$00@@` -`class BGSEncounterZone`: VTable [0x0000000003149970, 0x0000000000000000 offset, 101 functions] `.?AVBGSEncounterZone@@` -`class ConcreteFormFactory`: VTable [0x0000000003149D48, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSEncounterZone@@$0GH@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003149D98, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSEncounterZone@@$0GH@$0DN@$06@@` -`class BGSLightingTemplate`: VTable [0x000000000314A8B8, 0x0000000000000000 offset, 103 functions] `.?AVBGSLightingTemplate@@` -`class ConcreteFormFactory`: VTable [0x000000000314ACA0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSLightingTemplate@@$0GM@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000314ACF0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSLightingTemplate@@$0GM@$0FH@$06@@` -`class BGSLocation`: VTable [0x000000000314BBD0, 0x0000000000000000 offset, 101 functions] `.?AVBGSLocation@@` -`class BGSLocation`: VTable [0x000000000314BFA8, 0x0000000000000028 offset, 16 functions] `.?AVBGSLocation@@` -`class BGSLocation`: VTable [0x000000000314C050, 0x0000000000000040 offset, 16 functions] `.?AVBGSLocation@@` -`class ConcreteFormFactory`: VTable [0x000000000314C0F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSLocation@@$0GI@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000314C148, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSLocation@@$0GI@$0EH@$06@@` -`class QueuedPromoteLocationReferencesTask`: VTable [0x000000000314C560, 0x0000000000000000 offset, 10 functions] `.?AVQueuedPromoteLocationReferencesTask@@` -`class BSMapBase`: VTable [0x000000000314D8C0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@IPEBUUnloadedRefData@@@@` -`class BSScrapMap`: VTable [0x000000000314D910, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@IPEBUUnloadedRefData@@@@` -`class BSMapBase`: VTable [0x000000000314D960, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESNPC@@PEBUUniqueNPCData@@@@` -`class BSScrapMap`: VTable [0x000000000314D9B0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@PEAVTESNPC@@PEBUUniqueNPCData@@@@` -`class BSMapBase`: VTable [0x000000000314DA00, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@IPEBUSpecialRefData@@@@` -`class BSScrapMap`: VTable [0x000000000314DA50, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@IPEBUSpecialRefData@@@@` -`class BGSLocationRefType`: VTable [0x000000000314DC30, 0x0000000000000000 offset, 101 functions] `.?AVBGSLocationRefType@@` -`class ConcreteFormFactory`: VTable [0x000000000314E008, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSLocationRefType@@$04@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000314E058, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSLocationRefType@@$04$0EI@$06@@` -`class BGSReferenceEffect`: VTable [0x000000000314E2F8, 0x0000000000000000 offset, 101 functions] `.?AVBGSReferenceEffect@@` -`class ConcreteFormFactory`: VTable [0x000000000314E6D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSReferenceEffect@@$0DJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000314E720, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSReferenceEffect@@$0DJ@$0FJ@$06@@` -`class BGSShaderParticleGeometryData`: VTable [0x000000000314EA90, 0x0000000000000000 offset, 101 functions] `.?AVBGSShaderParticleGeometryData@@` -`class BSParticleShaderEmitter`: VTable [0x000000000314EF60, 0x0000000000000000 offset, 4 functions] `.?AVBSParticleShaderEmitter@@` -`class BSParticleShaderCubeEmitter`: VTable [0x000000000314EF90, 0x0000000000000000 offset, 4 functions] `.?AVBSParticleShaderCubeEmitter@@` -`class BSParticleShaderRainEmitter`: VTable [0x000000000314EFC0, 0x0000000000000000 offset, 4 functions] `.?AVBSParticleShaderRainEmitter@@` -`class BSParticleShaderSnowEmitter`: VTable [0x000000000314EFF0, 0x0000000000000000 offset, 4 functions] `.?AVBSParticleShaderSnowEmitter@@` -`class ConcreteFormFactory`: VTable [0x000000000314F020, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSShaderParticleGeometryData@@$0DI@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000314F070, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSShaderParticleGeometryData@@$0DI@$0FI@$06@@` -`class CellLoaderTask`: VTable [0x000000000314F8E8, 0x0000000000000000 offset, 10 functions] `.?AVCellLoaderTask@@` -`class ImageSpaceModifierInstance`: VTable [0x000000000314FEF0, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstance@@` -`class ImageSpaceModifierInstanceForm`: VTable [0x0000000003150098, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstanceForm@@` -`class ImageSpaceModifierInstanceTemp`: VTable [0x0000000003150240, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstanceTemp@@` -`class ImageSpaceModifierInstanceDOF`: VTable [0x00000000031503E8, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstanceDOF@@` -`class ImageSpaceModifierInstanceRB`: VTable [0x0000000003150590, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstanceRB@@` -`class BSResource::EntryDB`: VTable [0x0000000003151108, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@MaxHeightDB@@@BSResource@@` -`class TESClimate`: VTable [0x00000000031513C0, 0x0000000000000000 offset, 101 functions] `.?AVTESClimate@@` -`class ConcreteFormFactory`: VTable [0x0000000003151798, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESClimate@@$0DH@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000031517E8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESClimate@@$0DH@$0DI@$06@@` -`class TESImageSpace`: VTable [0x00000000031523D0, 0x0000000000000000 offset, 103 functions] `.?AVTESImageSpace@@` -`class ConcreteFormFactory`: VTable [0x00000000031527B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESImageSpace@@$0FJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003152808, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESImageSpace@@$0FJ@$0DL@$05@@` -`class NiFloatData`: VTable [0x0000000003152B50, 0x0000000000000000 offset, 39 functions] `.?AVNiFloatData@@` -`class NiColorData`: VTable [0x0000000003152CD0, 0x0000000000000000 offset, 39 functions] `.?AVNiColorData@@` -`class TESImageSpaceModifier`: VTable [0x0000000003152E50, 0x0000000000000000 offset, 103 functions] `.?AVTESImageSpaceModifier@@` -`class ConcreteFormFactory`: VTable [0x0000000003153238, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESImageSpaceModifier@@$0FK@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003153288, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESImageSpaceModifier@@$0FK@$0DM@$05@@` -`class TESChildCell`: VTable [0x00000000031539F8, 0x0000000000000000 offset, 2 functions] `.?AVTESChildCell@@` -`class hkpMoppCode`: VTable [0x0000000003153A18, 0x0000000000000000 offset, 3 functions] `.?AVhkpMoppCode@@` -`class TESObjectLAND`: VTable [0x0000000003153A40, 0x0000000000000000 offset, 101 functions] `.?AVTESObjectLAND@@` -`class TESObjectLAND`: VTable [0x0000000003153E18, 0x0000000000000028 offset, 2 functions] `.?AVTESObjectLAND@@` -`class ConcreteFormFactory`: VTable [0x0000000003153E58, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectLAND@@$0EI@@@` -`class TESLandTexture`: VTable [0x0000000003154BE8, 0x0000000000000000 offset, 101 functions] `.?AVTESLandTexture@@` -`class ConcreteFormFactory`: VTable [0x0000000003154FC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLandTexture@@$0BE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003155010, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLandTexture@@$0BE@$0BI@$03@@` -`class hkpCdPointCollector`: VTable [0x00000000031582A0, 0x0000000000000000 offset, 3 functions] `.?AVhkpCdPointCollector@@` -`class bhkPhantom`: VTable [0x00000000031582C8, 0x0000000000000000 offset, 55 functions] `.?AVbhkPhantom@@` -`class CheckWithinMultiBoundTask`: VTable [0x00000000031584E8, 0x0000000000000000 offset, 10 functions] `.?AVCheckWithinMultiBoundTask@@` -`class TESObjectCELL`: VTable [0x0000000003158558, 0x0000000000000000 offset, 101 functions] `.?AVTESObjectCELL@@` -`class TESObjectCELL`: VTable [0x0000000003158930, 0x0000000000000028 offset, 16 functions] `.?AVTESObjectCELL@@` -`class NiTMapBase > > >,class TESForm * __ptr64,class BSPointerHandle > >`: VTable [0x00000000031589D8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESForm@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@@@PEAVTESForm@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` -`class NiTMap > >`: VTable [0x0000000003158A28, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESForm@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` -`class NiTMapBase >,class NiNode * __ptr64> >,class BSPointerHandle >,class NiNode * __ptr64>`: VTable [0x0000000003158A78, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@PEAVNiNode@@@@@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@PEAVNiNode@@@@` -`class NiTMap >,class NiNode * __ptr64>`: VTable [0x0000000003158AC8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@PEAVNiNode@@@@` -`class NiTMapBase >,class NiPointer > >,class BSPointerHandle >,class NiPointer >`: VTable [0x0000000003158B18, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V?$NiPointer@VBSMultiBoundNode@@@@@@@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V?$NiPointer@VBSMultiBoundNode@@@@@@` -`class NiTMap >,class NiPointer >`: VTable [0x0000000003158B68, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V?$NiPointer@VBSMultiBoundNode@@@@@@` -`class NiTMapBase > > >,class BSMultiBoundNode * __ptr64,class BSPointerHandle > >`: VTable [0x0000000003158BB8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVBSMultiBoundNode@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@@@PEAVBSMultiBoundNode@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` -`class NiTMap > >`: VTable [0x0000000003158C08, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVBSMultiBoundNode@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` -`class bhkShapePhantom`: VTable [0x0000000003158D08, 0x0000000000000000 offset, 55 functions] `.?AVbhkShapePhantom@@` -`class bhkSimpleShapePhantom`: VTable [0x0000000003158F28, 0x0000000000000000 offset, 55 functions] `.?AVbhkSimpleShapePhantom@@` -`class hkpAllCdPointTempCollector`: VTable [0x0000000003159148, 0x0000000000000000 offset, 3 functions] `.?AVhkpAllCdPointTempCollector@@` -`class ConcreteFormFactory`: VTable [0x00000000031593B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectCELL@@$0DM@@@` -`class BSMapBase >,bool>`: VTable [0x0000000003159E60, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@` -`class BSScrapMap >,bool>`: VTable [0x0000000003159EB0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@` -`class BSTEventSink`: VTable [0x000000000315A300, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UTESCellReadyToApplyDecalsEvent@@@@` -`class `anonymous namespace'::DecalApplier`: VTable [0x000000000315A320, 0x0000000000000000 offset, 2 functions] `.?AVDecalApplier@?A0x23ed8a53@@` -`class NiTArray >`: VTable [0x000000000315C470, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVTESObjectREFR@@V?$NiTMallocInterface@PEAVTESObjectREFR@@@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000315C488, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVTESObjectREFR@@@@` -`struct `anonymous namespace'::UpdateAllDecalsRefFunctor`: VTable [0x000000000315CF50, 0x0000000000000000 offset, 2 functions] `.?AUUpdateAllDecalsRefFunctor@?A0x3127c3f4@@` -`struct `anonymous namespace'::ApplyAllDecalsRefFunctor`: VTable [0x000000000315CF70, 0x0000000000000000 offset, 2 functions] `.?AUApplyAllDecalsRefFunctor@?A0x3127c3f4@@` -`class BSHandleRefObject`: VTable [0x000000000315E660, 0x0000000000000000 offset, 2 functions] `.?AVBSHandleRefObject@@` -`class hkpShape`: VTable [0x000000000315E680, 0x0000000000000000 offset, 11 functions] `.?AVhkpShape@@` -`class hkpPhantomCallbackShape`: VTable [0x000000000315E6F8, 0x0000000000000000 offset, 13 functions] `.?AVhkpPhantomCallbackShape@@` -`class BGSWaterCollisionManager::BGSWaterUpdateI`: VTable [0x000000000315E780, 0x0000000000000000 offset, 7 functions] `.?AVBGSWaterUpdateI@BGSWaterCollisionManager@@` -`class BGSWaterCollisionManager::bhkPlaceableWater`: VTable [0x000000000315E7D0, 0x0000000000000000 offset, 14 functions] `.?AVbhkPlaceableWater@BGSWaterCollisionManager@@` -`class BGSWaterCollisionManager::bhkPlaceableWater`: VTable [0x000000000315E860, 0x0000000000000020 offset, 7 functions] `.?AVbhkPlaceableWater@BGSWaterCollisionManager@@` -`class BSTEventSink`: VTable [0x000000000315E8B0, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UBSAnimationGraphEvent@@@@` -`class TESObjectREFR`: VTable [0x000000000315E8D0, 0x0000000000000000 offset, 177 functions] `.?AVTESObjectREFR@@` -`class TESObjectREFR`: VTable [0x000000000315EF80, 0x0000000000000028 offset, 2 functions] `.?AVTESObjectREFR@@` -`class TESObjectREFR`: VTable [0x000000000315EFA0, 0x0000000000000030 offset, 2 functions] `.?AVTESObjectREFR@@` -`class TESObjectREFR`: VTable [0x000000000315EFC0, 0x0000000000000040 offset, 2 functions] `.?AVTESObjectREFR@@` -`class TESObjectREFR`: VTable [0x000000000315EFE0, 0x0000000000000048 offset, 19 functions] `.?AVTESObjectREFR@@` -`class bhkPCollisionObject`: VTable [0x000000000315F0F8, 0x0000000000000000 offset, 52 functions] `.?AVbhkPCollisionObject@@` -`class `anonymous namespace'::HavokLink`: VTable [0x000000000315F3C0, 0x0000000000000000 offset, 3 functions] `.?AVHavokLink@?A0x05fae0c4@@` -`class `anonymous namespace'::TESObjectREFRFactory`: VTable [0x000000000315F3E8, 0x0000000000000000 offset, 7 functions] `.?AVTESObjectREFRFactory@?A0x05fae0c4@@` -`class NiTMapBase >,class BSPointerHandle > > >,class BSPointerHandle >,class BSPointerHandle > >`: VTable [0x0000000003160A00, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V1@@@@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V2@@@` -`class NiTMap >,class BSPointerHandle > >`: VTable [0x0000000003160A50, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V1@@@` -`class TESObjectREFRDef::ILinkedReferenceFunctor`: VTable [0x0000000003161D48, 0x0000000000000000 offset, 2 functions] `.?AVILinkedReferenceFunctor@TESObjectREFRDef@@` -`class ExtraMasterFileCell`: VTable [0x0000000003161D68, 0x0000000000000000 offset, 3 functions] `.?AVExtraMasterFileCell@@` -`class `anonymous namespace'::CollectMatchingLinkedRefFunctor`: VTable [0x0000000003161E20, 0x0000000000000000 offset, 2 functions] `.?AVCollectMatchingLinkedRefFunctor@?A0xc9927c5f@@` -`class `anonymous namespace'::CopyLinkedRefsFunctor`: VTable [0x0000000003161E40, 0x0000000000000000 offset, 2 functions] `.?AVCopyLinkedRefsFunctor@?A0xc9927c5f@@` -`class `anonymous namespace'::AddLinkedRefChildToListFunctor`: VTable [0x00000000031629E0, 0x0000000000000000 offset, 2 functions] `.?AVAddLinkedRefChildToListFunctor@?A0xc9927c5f@@` -`class DrawRefLinksFunctor`: VTable [0x0000000003163788, 0x0000000000000000 offset, 2 functions] `.?AVDrawRefLinksFunctor@@` -`class RedrawRefLinksFunctor`: VTable [0x00000000031637B8, 0x0000000000000000 offset, 2 functions] `.?AVRedrawRefLinksFunctor@@` -`class BSMapBase`: VTable [0x00000000031638C0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESObjectREFR@@_N@@` -`class BSMap`: VTable [0x0000000003163910, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEAVTESObjectREFR@@_N@@` -`class BSScrapMap`: VTable [0x00000000031639F0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@PEAVTESObjectREFR@@_N@@` -`class BSMapBase`: VTable [0x0000000003163A80, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@I_N@@` -`class BSScrapMap`: VTable [0x0000000003163AD0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@I_N@@` -`class TESWaterForm`: VTable [0x0000000003163DA0, 0x0000000000000000 offset, 101 functions] `.?AVTESWaterForm@@` -`class TESWaterForm`: VTable [0x0000000003164178, 0x0000000000000028 offset, 16 functions] `.?AVTESWaterForm@@` -`class TESWaterForm`: VTable [0x0000000003164220, 0x0000000000000040 offset, 15 functions] `.?AVTESWaterForm@@` -`class ConcreteFormFactory`: VTable [0x0000000003164308, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESWaterForm@@$0FE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003164358, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESWaterForm@@$0FE@$0BN@$06@@` -`class TESTexture1024`: VTable [0x0000000003164B88, 0x0000000000000000 offset, 20 functions] `.?AVTESTexture1024@@` -`struct TESWeather::SkyStaticFunctor`: VTable [0x0000000003164C58, 0x0000000000000000 offset, 1 functions] `.?AUSkyStaticFunctor@TESWeather@@` -`class TESWeather`: VTable [0x0000000003164C70, 0x0000000000000000 offset, 101 functions] `.?AVTESWeather@@` -`class ConcreteFormFactory`: VTable [0x00000000031650B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESWeather@@$0DG@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003165108, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESWeather@@$0DG@$0DH@$06@@` -`struct SkyStaticFunctors::SkyStaticSaver`: VTable [0x0000000003165168, 0x0000000000000000 offset, 1 functions] `.?AUSkyStaticSaver@SkyStaticFunctors@@` -`class DialogExtraWeather`: VTable [0x00000000031659C0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraWeather@@` -`class TESWeatherList`: VTable [0x0000000003165CD0, 0x0000000000000000 offset, 6 functions] `.?AVTESWeatherList@@` -`class TESWorldSpace`: VTable [0x00000000031667D8, 0x0000000000000000 offset, 103 functions] `.?AVTESWorldSpace@@` -`class TESWorldSpace`: VTable [0x0000000003166BC0, 0x0000000000000028 offset, 16 functions] `.?AVTESWorldSpace@@` -`class TESWorldSpace`: VTable [0x0000000003166C68, 0x0000000000000040 offset, 20 functions] `.?AVTESWorldSpace@@` -`class ConcreteFormFactory`: VTable [0x0000000003166D68, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESWorldSpace@@$0EH@@@` -`class AlchemyItem`: VTable [0x00000000031681F0, 0x0000000000000000 offset, 160 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000003168800, 0x0000000000000050 offset, 16 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x00000000031688A8, 0x0000000000000068 offset, 16 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000003168950, 0x0000000000000268 offset, 20 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000003168A20, 0x00000000000002B0 offset, 20 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000003168AF0, 0x00000000000002D8 offset, 14 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000003168B80, 0x0000000000000308 offset, 14 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000003168C10, 0x0000000000000318 offset, 16 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000003168CB8, 0x0000000000000328 offset, 14 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000003168D48, 0x0000000000000338 offset, 14 functions] `.?AVAlchemyItem@@` -`class ConcreteFormFactory`: VTable [0x0000000003168DD8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VAlchemyItem@@$0CO@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003168E28, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VAlchemyItem@@$0CO@$0BB@$01@@` -`class BGSDualCastData`: VTable [0x0000000003169178, 0x0000000000000000 offset, 125 functions] `.?AVBGSDualCastData@@` -`class ConcreteFormFactory`: VTable [0x0000000003169638, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSDualCastData@@$0IB@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000003169688, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSDualCastData@@$0IB@$0FP@$01@@` -`class EffectSetting`: VTable [0x000000000316A470, 0x0000000000000000 offset, 101 functions] `.?AVEffectSetting@@` -`class EffectSetting`: VTable [0x000000000316A848, 0x0000000000000028 offset, 16 functions] `.?AVEffectSetting@@` -`class EffectSetting`: VTable [0x000000000316A8F0, 0x0000000000000040 offset, 15 functions] `.?AVEffectSetting@@` -`class EffectSetting`: VTable [0x000000000316A990, 0x0000000000000050 offset, 16 functions] `.?AVEffectSetting@@` -`class ConcreteFormFactory`: VTable [0x000000000316AA38, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VEffectSetting@@$0BC@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000316AA88, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VEffectSetting@@$0BC@$0ED@$01@@` -`class EnchantmentItem`: VTable [0x000000000316B688, 0x0000000000000000 offset, 160 functions] `.?AVEnchantmentItem@@` -`class EnchantmentItem`: VTable [0x000000000316BC98, 0x0000000000000050 offset, 16 functions] `.?AVEnchantmentItem@@` -`class EnchantmentItem`: VTable [0x000000000316BD40, 0x0000000000000068 offset, 16 functions] `.?AVEnchantmentItem@@` -`class ConcreteFormFactory`: VTable [0x000000000316BDE8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VEnchantmentItem@@$0BF@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000316BE38, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VEnchantmentItem@@$0BF@$0BA@$01@@` -`class `anonymous namespace'::IsValidEnchantmentForWeaponFunctor`: VTable [0x000000000316C010, 0x0000000000000000 offset, 1 functions] `.?AVIsValidEnchantmentForWeaponFunctor@?A0x8b6c0b8c@@` -`class `anonymous namespace'::IsValidEnchantmentForArmorFunctor`: VTable [0x000000000316C028, 0x0000000000000000 offset, 1 functions] `.?AVIsValidEnchantmentForArmorFunctor@?A0x8b6c0b8c@@` -`class IngredientItem`: VTable [0x000000000316C180, 0x0000000000000000 offset, 160 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x000000000316C790, 0x0000000000000050 offset, 16 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x000000000316C838, 0x0000000000000068 offset, 16 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x000000000316C8E0, 0x0000000000000268 offset, 20 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x000000000316C9B0, 0x00000000000002B0 offset, 20 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x000000000316CA80, 0x00000000000002D8 offset, 14 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x000000000316CB10, 0x00000000000002E8 offset, 16 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x000000000316CBB8, 0x00000000000002F8 offset, 14 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x000000000316CC48, 0x0000000000000308 offset, 14 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x000000000316CCD8, 0x0000000000000320 offset, 14 functions] `.?AVIngredientItem@@` -`class ConcreteFormFactory`: VTable [0x000000000316CE00, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VIngredientItem@@$0BO@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000316CE50, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VIngredientItem@@$0BO@$04$00@@` -`class MagicItem`: VTable [0x000000000316D1E0, 0x0000000000000000 offset, 160 functions] `.?AVMagicItem@@` -`class MagicItem`: VTable [0x000000000316D7F0, 0x0000000000000050 offset, 16 functions] `.?AVMagicItem@@` -`class MagicItem`: VTable [0x000000000316D898, 0x0000000000000068 offset, 16 functions] `.?AVMagicItem@@` -`class MagicItemTraversalFunctor`: VTable [0x000000000316D940, 0x0000000000000000 offset, 2 functions] `.?AVMagicItemTraversalFunctor@@` -`class MagicItemFindFunctor`: VTable [0x000000000316D960, 0x0000000000000000 offset, 3 functions] `.?AVMagicItemFindFunctor@@` -`class MagicItemFindKeywordFunctor`: VTable [0x000000000316D988, 0x0000000000000000 offset, 3 functions] `.?AVMagicItemFindKeywordFunctor@@` -`class FindNonExcludedDeliveryFunctor`: VTable [0x000000000316D9B0, 0x0000000000000000 offset, 3 functions] `.?AVFindNonExcludedDeliveryFunctor@@` -`class FindEqualsFunctor`: VTable [0x000000000316DBB8, 0x0000000000000000 offset, 3 functions] `.?AVFindEqualsFunctor@@` -`class GetCostliestEffectFunctor`: VTable [0x000000000316DBE0, 0x0000000000000000 offset, 2 functions] `.?AVGetCostliestEffectFunctor@@` -`class LongestDurationFunctor`: VTable [0x000000000316DC00, 0x0000000000000000 offset, 2 functions] `.?AVLongestDurationFunctor@@` -`class LargestAreaFunctor`: VTable [0x000000000316DC20, 0x0000000000000000 offset, 2 functions] `.?AVLargestAreaFunctor@@` -`class GetMagicItemDescriptionFunctor`: VTable [0x000000000316E6D0, 0x0000000000000000 offset, 2 functions] `.?AVGetMagicItemDescriptionFunctor@@` -`class ScrollItem`: VTable [0x000000000316EA40, 0x0000000000000000 offset, 160 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x000000000316F050, 0x0000000000000050 offset, 16 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x000000000316F0F8, 0x0000000000000068 offset, 16 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x000000000316F1A0, 0x0000000000000268 offset, 16 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x000000000316F248, 0x0000000000000278 offset, 15 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x000000000316F2E8, 0x0000000000000288 offset, 14 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x000000000316F378, 0x00000000000002D8 offset, 20 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x000000000316F448, 0x0000000000000320 offset, 14 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x000000000316F4D8, 0x0000000000000330 offset, 14 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x000000000316F568, 0x0000000000000348 offset, 14 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x000000000316F5F8, 0x0000000000000358 offset, 14 functions] `.?AVScrollItem@@` -`class ConcreteFormFactory`: VTable [0x000000000316F688, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VScrollItem@@$0BH@@@` -`class ConcreteObjectFormFactory`: VTable [0x000000000316F6D8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VScrollItem@@$0BH@$0GE@$01@@` -`class SpellItem`: VTable [0x000000000316F848, 0x0000000000000000 offset, 160 functions] `.?AVSpellItem@@` -`class SpellItem`: VTable [0x000000000316FE58, 0x0000000000000050 offset, 16 functions] `.?AVSpellItem@@` -`class SpellItem`: VTable [0x000000000316FF00, 0x0000000000000068 offset, 16 functions] `.?AVSpellItem@@` -`class SpellItem`: VTable [0x000000000316FFA8, 0x0000000000000268 offset, 16 functions] `.?AVSpellItem@@` -`class SpellItem`: VTable [0x0000000003170050, 0x0000000000000278 offset, 15 functions] `.?AVSpellItem@@` -`class SpellItem`: VTable [0x00000000031700F0, 0x0000000000000288 offset, 14 functions] `.?AVSpellItem@@` -`class ConcreteFormFactory`: VTable [0x0000000003170180, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VSpellItem@@$0BG@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000031701D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VSpellItem@@$0BG@$0P@$01@@` -`class bhkEntityListener`: VTable [0x00000000031704C0, 0x0000000000000000 offset, 10 functions] `.?AVbhkEntityListener@@` -`class BGSAcousticSpaceListener`: VTable [0x0000000003170530, 0x0000000000000000 offset, 10 functions] `.?AVBGSAcousticSpaceListener@@` -`class bhkTTNode > >`: VTable [0x00000000031707B8, 0x0000000000000000 offset, 1 functions] `.?AV?$bhkTTNode@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` -`class TargetEntry`: VTable [0x00000000031707D0, 0x0000000000000000 offset, 3 functions] `.?AVTargetEntry@@` -`class ZoneEntry`: VTable [0x00000000031707F8, 0x0000000000000000 offset, 3 functions] `.?AVZoneEntry@@` -`class BGSZoneTargetListener`: VTable [0x0000000003170820, 0x0000000000000000 offset, 3 functions] `.?AVBGSZoneTargetListener@@` -`class TrapTargetEntry`: VTable [0x0000000003170848, 0x0000000000000000 offset, 3 functions] `.?AVTrapTargetEntry@@` -`class BSTaskletData`: VTable [0x0000000003170BD0, 0x0000000000000000 offset, 4 functions] `.?AVBSTaskletData@@` -`class BSWin32TaskletData`: VTable [0x0000000003170C00, 0x0000000000000000 offset, 4 functions] `.?AVBSWin32TaskletData@@` -`class bhkBvTreeShape`: VTable [0x0000000003170C30, 0x0000000000000000 offset, 59 functions] `.?AVbhkBvTreeShape@@` -`class bhkTriSampledHeightFieldBvTreeShape`: VTable [0x0000000003170E70, 0x0000000000000000 offset, 59 functions] `.?AVbhkTriSampledHeightFieldBvTreeShape@@` -`class CellMopp::HeightFieldWeldingTasklet`: VTable [0x00000000031710B0, 0x0000000000000000 offset, 4 functions] `.?AVHeightFieldWeldingTasklet@CellMopp@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x00000000031710E0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VbhkRigidBody@@@@V?$NiTNewInterface@V?$NiPointer@VbhkRigidBody@@@@@@@@` -`class NiTObjectArray >`: VTable [0x00000000031710F8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VbhkRigidBody@@@@@@` -`class CellMopp`: VTable [0x0000000003171110, 0x0000000000000000 offset, 2 functions] `.?AVCellMopp@@` -`class BSTasklet`: VTable [0x0000000003171130, 0x0000000000000000 offset, 1 functions] `.?AVBSTasklet@@` -`class hkError`: VTable [0x0000000003171630, 0x0000000000000000 offset, 9 functions] `.?AVhkError@@` -`class hkStreamReader`: VTable [0x0000000003171690, 0x0000000000000000 offset, 12 functions] `.?AVhkStreamReader@@` -`class hkStreamWriter`: VTable [0x0000000003171710, 0x0000000000000000 offset, 9 functions] `.?AVhkStreamWriter@@` -`class hkFileSystem`: VTable [0x0000000003171770, 0x0000000000000000 offset, 6 functions] `.?AVhkFileSystem@@` -`class HavokStreambufReader`: VTable [0x00000000031717B8, 0x0000000000000000 offset, 12 functions] `.?AVHavokStreambufReader@@` -`class HavokStreambufWriter`: VTable [0x0000000003171838, 0x0000000000000000 offset, 9 functions] `.?AVHavokStreambufWriter@@` -`class HavokFileStreambufReader`: VTable [0x0000000003171898, 0x0000000000000000 offset, 13 functions] `.?AVHavokFileStreambufReader@@` -`class HavokFileStreambufWriter`: VTable [0x0000000003171920, 0x0000000000000000 offset, 9 functions] `.?AVHavokFileStreambufWriter@@` -`class hkNativeFileSystem`: VTable [0x0000000003171980, 0x0000000000000000 offset, 6 functions] `.?AVhkNativeFileSystem@@` -`class HavokStreambufFactory`: VTable [0x00000000031719C8, 0x0000000000000000 offset, 6 functions] `.?AVHavokStreambufFactory@@` -`class HavokError`: VTable [0x0000000003171A10, 0x0000000000000000 offset, 17 functions] `.?AVHavokError@@` -`class hkpCdBodyPairCollector`: VTable [0x0000000003172358, 0x0000000000000000 offset, 3 functions] `.?AVhkpCdBodyPairCollector@@` -`class hkpPhantomListener`: VTable [0x0000000003172380, 0x0000000000000000 offset, 5 functions] `.?AVhkpPhantomListener@@` -`class bhkTrapListener`: VTable [0x00000000031723C0, 0x0000000000000000 offset, 10 functions] `.?AVbhkTrapListener@@` -`class bhkTrapListener`: VTable [0x0000000003172430, 0x0000000000000018 offset, 5 functions] `.?AVbhkTrapListener@@` -`class TrapEntry`: VTable [0x0000000003172470, 0x0000000000000000 offset, 3 functions] `.?AVTrapEntry@@` -`class BSListBase`: VTable [0x0000000003172498, 0x0000000000000000 offset, 3 functions] `.?AV?$BSListBase@PEAUTriggerEvent@TriggerEntry@@@@` -`class BSPointerListBase`: VTable [0x00000000031724C0, 0x0000000000000000 offset, 3 functions] `.?AV?$BSPointerListBase@PEAUTriggerEvent@TriggerEntry@@@@` -`class BSList`: VTable [0x00000000031724E8, 0x0000000000000000 offset, 3 functions] `.?AV?$BSList@PEAUTriggerEvent@TriggerEntry@@@@` -`class TriggerEntry`: VTable [0x0000000003172510, 0x0000000000000000 offset, 1 functions] `.?AVTriggerEntry@@` -`class TESTrapListener`: VTable [0x0000000003172528, 0x0000000000000000 offset, 3 functions] `.?AVTESTrapListener@@` -`class TESTrapListener`: VTable [0x0000000003172550, 0x0000000000000010 offset, 10 functions] `.?AVTESTrapListener@@` -`class TESTrapListener`: VTable [0x00000000031725C0, 0x0000000000000028 offset, 5 functions] `.?AVTESTrapListener@@` -`class hkpAllCdBodyPairTempCollector`: VTable [0x0000000003172600, 0x0000000000000000 offset, 3 functions] `.?AVhkpAllCdBodyPairTempCollector@@` -`class Atmosphere`: VTable [0x00000000031727B8, 0x0000000000000000 offset, 5 functions] `.?AVAtmosphere@@` -`class Clouds`: VTable [0x00000000031729F0, 0x0000000000000000 offset, 4 functions] `.?AVClouds@@` -`class Moon`: VTable [0x0000000003172BD8, 0x0000000000000000 offset, 4 functions] `.?AVMoon@@` -`class Precipitation`: VTable [0x0000000003172EC8, 0x0000000000000000 offset, 1 functions] `.?AVPrecipitation@@` -`class Sky`: VTable [0x00000000031733F8, 0x0000000000000000 offset, 1 functions] `.?AVSky@@` -`class SkyStaticFindFunctor`: VTable [0x0000000003173890, 0x0000000000000000 offset, 1 functions] `.?AVSkyStaticFindFunctor@@` -`class SkyObject`: VTable [0x0000000003173958, 0x0000000000000000 offset, 4 functions] `.?AVSkyObject@@` -`class Stars`: VTable [0x0000000003173AC0, 0x0000000000000000 offset, 4 functions] `.?AVStars@@` -`class Sun`: VTable [0x0000000003173D70, 0x0000000000000000 offset, 4 functions] `.?AVSun@@` -`class NiBillboardNode`: VTable [0x0000000003173DA0, 0x0000000000000000 offset, 64 functions] `.?AVNiBillboardNode@@` -`class BSFaceGenAnimationData`: VTable [0x00000000031901C8, 0x0000000000000000 offset, 41 functions] `.?AVBSFaceGenAnimationData@@` -`class FutBinaryFileC`: VTable [0x0000000003190A40, 0x0000000000000000 offset, 12 functions] `.?AVFutBinaryFileC@@` -`class BSResourceFaceGenBinaryFile`: VTable [0x0000000003190AC0, 0x0000000000000000 offset, 12 functions] `.?AVBSResourceFaceGenBinaryFile@@` -`class BSResource::EntryDB`: VTable [0x0000000003192510, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@TRI@BSFaceGenDB@@@BSResource@@` -`class BSResource::EntryDB`: VTable [0x0000000003192558, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@FG@BSFaceGenDB@@@BSResource@@` -`class BSFaceGenKeyframe`: VTable [0x0000000003192978, 0x0000000000000000 offset, 14 functions] `.?AVBSFaceGenKeyframe@@` -`class BSFaceGenKeyframeExclusive`: VTable [0x0000000003192A08, 0x0000000000000000 offset, 18 functions] `.?AVBSFaceGenKeyframeExclusive@@` -`class BSFaceGenKeyframeMultiple`: VTable [0x0000000003192AC0, 0x0000000000000000 offset, 16 functions] `.?AVBSFaceGenKeyframeMultiple@@` -`class BSQueuedResourceCollection,2>`: VTable [0x0000000003193148, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@TRI@BSFaceGenDB@@@BSResource@@$01@@` -`class BSQueuedResourceCollection,2>`: VTable [0x0000000003193218, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@TRI@BSFaceGenDB@@@BSResource@@$01@@` -`class BSFaceGenDB::TRI::QueuedHandles`: VTable [0x0000000003193240, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHandles@TRI@BSFaceGenDB@@` -`class BSFaceGenDB::TRI::QueuedHandles`: VTable [0x0000000003193310, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHandles@TRI@BSFaceGenDB@@` -`class BSAutoQueuedResourceCollection`: VTable [0x0000000003193658, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAutoQueuedResourceCollection@VQueuedHandles@TRI@BSFaceGenDB@@@@` -`class BSFaceGenModel`: VTable [0x0000000003193A40, 0x0000000000000000 offset, 2 functions] `.?AVBSFaceGenModel@@` -`class BSFaceGenModelExtraData`: VTable [0x0000000003193A60, 0x0000000000000000 offset, 41 functions] `.?AVBSFaceGenModelExtraData@@` -`class BSFaceGenModelMap::Entry`: VTable [0x0000000003193FC0, 0x0000000000000000 offset, 2 functions] `.?AVEntry@BSFaceGenModelMap@@` -`class BSFaceGenMorphData`: VTable [0x0000000003194408, 0x0000000000000000 offset, 23 functions] `.?AVBSFaceGenMorphData@@` -`class BSFaceGenMorphDataHead`: VTable [0x00000000031944F0, 0x0000000000000000 offset, 23 functions] `.?AVBSFaceGenMorphDataHead@@` -`class BSFaceGenMorphDataHair`: VTable [0x00000000031945D8, 0x0000000000000000 offset, 23 functions] `.?AVBSFaceGenMorphDataHair@@` -`class BSFaceGenBaseMorphExtraData`: VTable [0x00000000031946C0, 0x0000000000000000 offset, 41 functions] `.?AVBSFaceGenBaseMorphExtraData@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000003194C58, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$03@@@@` -`class BSFaceGenNiNode`: VTable [0x0000000003194E88, 0x0000000000000000 offset, 65 functions] `.?AVBSFaceGenNiNode@@` -`class BSFadeNodeCuller`: VTable [0x0000000003196310, 0x0000000000000000 offset, 25 functions] `.?AVBSFadeNodeCuller@@` -`class BSTreeNodeUtils::TreeNodeCollisionPicker`: VTable [0x0000000003196578, 0x0000000000000000 offset, 3 functions] `.?AVTreeNodeCollisionPicker@BSTreeNodeUtils@@` -`class BSTempEffect`: VTable [0x0000000003196720, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffect@@` -`class BSTempEffectGeometryDecal`: VTable [0x0000000003196B68, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectGeometryDecal@@` -`class NiTArray >`: VTable [0x0000000003197228, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVNiAVObject@@V?$NiTMallocInterface@PEAVNiAVObject@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003197240, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVNiAVObject@@@@` -`class BSTempEffectParticle`: VTable [0x0000000003197258, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectParticle@@` -`class BGSParticleObjectCloneTask`: VTable [0x0000000003197470, 0x0000000000000000 offset, 10 functions] `.?AVBGSParticleObjectCloneTask@@` -`class BSTempEffectSimpleDecal`: VTable [0x0000000003197760, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectSimpleDecal@@` -`class BSTempEffectSPG`: VTable [0x0000000003197C60, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectSPG@@` -`class BSTempEffectWeaponBlood`: VTable [0x00000000031980C8, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectWeaponBlood@@` -`class NavMesh`: VTable [0x0000000003199500, 0x0000000000000000 offset, 101 functions] `.?AVNavMesh@@` -`class NavMesh`: VTable [0x00000000031998D8, 0x0000000000000028 offset, 2 functions] `.?AVNavMesh@@` -`class NavMesh`: VTable [0x00000000031998F8, 0x0000000000000030 offset, 2 functions] `.?AVNavMesh@@` -`class hkpClosestRayHitCollector`: VTable [0x0000000003199918, 0x0000000000000000 offset, 2 functions] `.?AVhkpClosestRayHitCollector@@` -`class ConcreteFormFactory`: VTable [0x0000000003199938, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VNavMesh@@$0EJ@@@` -`class BSPathingStreamRead`: VTable [0x000000000319B190, 0x0000000000000000 offset, 20 functions] `.?AVBSPathingStreamRead@@` -`class BSPathingStreamWrite`: VTable [0x000000000319B260, 0x0000000000000000 offset, 17 functions] `.?AVBSPathingStreamWrite@@` -`class PathingStreamMasterFileRead`: VTable [0x000000000319B310, 0x0000000000000000 offset, 20 functions] `.?AVPathingStreamMasterFileRead@@` -`class MasterFilePathingStreamWriteToBuffer`: VTable [0x000000000319B3E0, 0x0000000000000000 offset, 17 functions] `.?AVMasterFilePathingStreamWriteToBuffer@@` -`class MasterFilePathingStreamGetSize`: VTable [0x000000000319B490, 0x0000000000000000 offset, 17 functions] `.?AVMasterFilePathingStreamGetSize@@` -`class NavMeshNodeExtraData`: VTable [0x000000000319C630, 0x0000000000000000 offset, 41 functions] `.?AVNavMeshNodeExtraData@@` -`class BSPathingCellManager`: VTable [0x000000000319E2C0, 0x0000000000000000 offset, 11 functions] `.?AVBSPathingCellManager@@` -`class Pathing`: VTable [0x000000000319E338, 0x0000000000000000 offset, 9 functions] `.?AVPathing@@` -`class Pathing`: VTable [0x000000000319E398, 0x0000000000000018 offset, 11 functions] `.?AVPathing@@` -`class Pathing`: VTable [0x000000000319E410, 0x0000000000000020 offset, 2 functions] `.?AVPathing@@` -`class PathingCoverLocation`: VTable [0x000000000319E430, 0x0000000000000000 offset, 3 functions] `.?AVPathingCoverLocation@@` -`struct BSPathfindingTemporary`: VTable [0x000000000319E4F0, 0x0000000000000000 offset, 7 functions] `.?AU?$BSPathfindingTemporary@VPathingRequestSafeStraightLine@@@@` -`class BSPathingCell`: VTable [0x000000000319ECB0, 0x0000000000000000 offset, 12 functions] `.?AVBSPathingCell@@` -`class PathingCell`: VTable [0x000000000319ED30, 0x0000000000000000 offset, 12 functions] `.?AVPathingCell@@` -`struct IBSTCreator`: VTable [0x000000000319EDD8, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSPathingCell@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000319EE00, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingCell@@VBSPathingCell@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x000000000319EE28, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingCell@@VBSPathingCell@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingCell@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000319EE50, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingCell@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingCell@@$0EA@@@@@` -`class PathingDebugGeometry`: VTable [0x000000000319F488, 0x0000000000000000 offset, 2 functions] `.?AVPathingDebugGeometry@@` -`class BSPathingDoor`: VTable [0x000000000319FD70, 0x0000000000000000 offset, 18 functions] `.?AVBSPathingDoor@@` -`class PathingDoor`: VTable [0x000000000319FE28, 0x0000000000000000 offset, 18 functions] `.?AVPathingDoor@@` -`struct IBSTCreator`: VTable [0x000000000319FEE0, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSPathingDoor@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000319FF08, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingDoor@@VBSPathingDoor@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x000000000319FF30, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingDoor@@VBSPathingDoor@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingDoor@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000319FF58, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingDoor@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingDoor@@$0EA@@@@@` -`class BSPathingNumericIDVisitor`: VTable [0x00000000031A01E0, 0x0000000000000000 offset, 2 functions] `.?AVBSPathingNumericIDVisitor@@` -`class PathingNumericIDVisitor`: VTable [0x00000000031A0200, 0x0000000000000000 offset, 2 functions] `.?AVPathingNumericIDVisitor@@` -`class PathingRequest`: VTable [0x00000000031A03D0, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequest@@` -`struct IBSTCreator`: VTable [0x00000000031A0420, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSPathingRequest@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A0448, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequest@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A0470, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequest@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A0498, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequest@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A04C0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequest@@VBSPathingRequest@@$0EA@@@` -`class BSPathingSpace`: VTable [0x00000000031A0650, 0x0000000000000000 offset, 4 functions] `.?AVBSPathingSpace@@` -`class PathingSpace`: VTable [0x00000000031A0680, 0x0000000000000000 offset, 4 functions] `.?AVPathingSpace@@` -`class AStarSearch`: VTable [0x00000000031A0C40, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@UParentSpaceNode@@UTeleportLink@@$00@@` -`class TeleportDoorSearch`: VTable [0x00000000031A0C68, 0x0000000000000000 offset, 3 functions] `.?AVTeleportDoorSearch@@` -`struct BSPathfindingTemporary`: VTable [0x00000000031A0C90, 0x0000000000000000 offset, 18 functions] `.?AU?$BSPathfindingTemporary@VPathingDoor@@@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000031A0DC8, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$07@@@@` -`struct BSNavmeshInfoMap::IVisitor`: VTable [0x00000000031A26E8, 0x0000000000000000 offset, 2 functions] `.?AUIVisitor@BSNavmeshInfoMap@@` -`class NavMeshInfoMap`: VTable [0x00000000031A2748, 0x0000000000000000 offset, 101 functions] `.?AVNavMeshInfoMap@@` -`class NavMeshInfoMap`: VTable [0x00000000031A2B20, 0x0000000000000028 offset, 6 functions] `.?AVNavMeshInfoMap@@` -`class RecomputeBoundsTaskData`: VTable [0x00000000031A35C0, 0x0000000000000000 offset, 4 functions] `.?AVRecomputeBoundsTaskData@@` -`struct `anonymous namespace'::ClearPrecomputedPathFlag`: VTable [0x00000000031A36D0, 0x0000000000000000 offset, 2 functions] `.?AUClearPrecomputedPathFlag@?A0x7de2013e@@` -`class NavMeshObstacleManager`: VTable [0x00000000031A4DB8, 0x0000000000000000 offset, 2 functions] `.?AVNavMeshObstacleManager@@` -`class BSNavmeshReferenceObstacleArray`: VTable [0x00000000031A4DD8, 0x0000000000000000 offset, 2 functions] `.?AVBSNavmeshReferenceObstacleArray@@` -`class hkpEntityActivationListener`: VTable [0x00000000031A4E58, 0x0000000000000000 offset, 3 functions] `.?AVhkpEntityActivationListener@@` -`class bhkObstacleDeactivationListener`: VTable [0x00000000031A4FA0, 0x0000000000000000 offset, 3 functions] `.?AVbhkObstacleDeactivationListener@@` -`class bhkObstacleRemovalListener`: VTable [0x00000000031A4FC8, 0x0000000000000000 offset, 6 functions] `.?AVbhkObstacleRemovalListener@@` -`class ObstacleTaskData`: VTable [0x00000000031A54A8, 0x0000000000000000 offset, 4 functions] `.?AVObstacleTaskData@@` -`class AStarSearch`: VTable [0x00000000031A5B20, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@UBSFastNavmeshTriLocation@@UBSFastNavmeshEdgeHandle@@$02@@` -`class NavMeshSearchClosePoint`: VTable [0x00000000031A5B48, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchClosePoint@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000031A5DE8, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0BI@@@@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000031A5E18, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0EA@@@@@` -`class AStarSearch`: VTable [0x00000000031A6298, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@UBSFastNavmeshTriLocation@@PEAX$02@@` -`class NavMeshSearchFitSphere`: VTable [0x00000000031A62C0, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchFitSphere@@` -`class NavMeshSearchFlee`: VTable [0x00000000031A6470, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchFlee@@` -`class NavMeshSearchHide`: VTable [0x00000000031A6578, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchHide@@` -`struct BSNavmeshSearchHideFilter`: VTable [0x00000000031A65A0, 0x0000000000000000 offset, 2 functions] `.?AUBSNavmeshSearchHideFilter@@` -`class NavMeshSearchLOS`: VTable [0x00000000031A66C0, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchLOS@@` -`class NavMeshSearchMaxCost`: VTable [0x00000000031A6860, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchMaxCost@@` -`struct BSNavmeshSearchMaxCostFilters`: VTable [0x00000000031A6888, 0x0000000000000000 offset, 2 functions] `.?AUBSNavmeshSearchMaxCostFilters@@` -`class NavMeshSearchMultipleGoals`: VTable [0x00000000031A6908, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchMultipleGoals@@` -`class NavMeshSearchSLPoint`: VTable [0x00000000031A6A78, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchSLPoint@@` -`class PathingRequestClosePoint`: VTable [0x00000000031A6BD8, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestClosePoint@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A6C28, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestClosePoint@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A6C50, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestClosePoint@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A6C78, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestClosePoint@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A6CA0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestClosePoint@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestClosestGoal`: VTable [0x00000000031A7330, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestClosestGoal@@` -`class IPathBuilderFactoryBase`: VTable [0x00000000031A7380, 0x0000000000000000 offset, 2 functions] `.?AVIPathBuilderFactoryBase@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A73A0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestClosestGoal@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A73C8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestClosestGoal@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A73F0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestClosestGoal@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A7418, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestClosestGoal@@VBSPathingRequest@@$0EA@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031A7440, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestClosestGoal@@UPathBuilder@1@@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000031A7620, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0HA@@@@@` -`class PathingRequestCover`: VTable [0x00000000031A7860, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestCover@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A78B0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestCover@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A78D8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestCover@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A7900, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestCover@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A7928, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestCover@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFlee`: VTable [0x00000000031A79F8, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlee@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A7A48, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlee@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A7A70, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlee@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A7A98, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlee@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A7AC0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlee@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFly`: VTable [0x00000000031A7C20, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFly@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A7C70, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFly@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A7C98, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFly@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A7CC0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFly@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A7CE8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFly@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFlyAction`: VTable [0x00000000031A7E48, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyAction@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A7E98, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyAction@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A7EC0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyAction@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A7EE8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyAction@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A7F10, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyAction@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFlyHover`: VTable [0x00000000031A8228, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyHover@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A8278, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyHover@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A82A0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyHover@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A82C8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyHover@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A82F0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyHover@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFlyLand`: VTable [0x00000000031A8458, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyLand@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A84A8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyLand@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A84D0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyLand@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A84F8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyLand@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A8520, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyLand@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFlyOrbit`: VTable [0x00000000031A8688, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyOrbit@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A86D8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyOrbit@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A8700, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyOrbit@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A8728, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyOrbit@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A8750, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyOrbit@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFlyTakeOff`: VTable [0x00000000031A8828, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyTakeOff@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A8878, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyTakeOff@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A88A0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyTakeOff@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A88C8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyTakeOff@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A88F0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyTakeOff@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestHide`: VTable [0x00000000031A8A28, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestHide@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A8A78, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestHide@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A8AA0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestHide@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A8AC8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestHide@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A8AF0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestHide@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestLOS`: VTable [0x00000000031A8C50, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestLOS@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A8CA0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestLOS@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A8CC8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestLOS@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A8CF0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestLOS@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A8D18, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestLOS@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestOptimalLocation`: VTable [0x00000000031A8E18, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestOptimalLocation@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A8E68, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestOptimalLocation@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A8E90, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestOptimalLocation@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A8EB8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestOptimalLocation@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A8EE0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestOptimalLocation@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestRotate`: VTable [0x00000000031A9020, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestRotate@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A9070, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestRotate@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A9098, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestRotate@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A90C0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestRotate@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A90E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestRotate@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestSafeStraightLine`: VTable [0x00000000031A91F0, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestSafeStraightLine@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A9240, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestSafeStraightLine@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A9268, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestSafeStraightLine@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A9290, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestSafeStraightLine@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A92B8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestSafeStraightLine@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestStopMoving`: VTable [0x00000000031A93C8, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestStopMoving@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A9418, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestStopMoving@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A9440, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestStopMoving@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A9468, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestStopMoving@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000031A9490, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestStopMoving@@VBSPathingRequest@@$0EA@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031A9640, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestClosePoint@@VPathBuilderClosePointPath@?A0x18de3507@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031A9980, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequest@@VPathBuilderPathingRequest@?A0x9118153d@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031A99A0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestStopMoving@@VPathBuilderStopMovingPath@?A0x9118153d@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031A99C0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestRotate@@VPathBuilderRotatePath@?A0x9118153d@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031A9AD0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlee@@VPathBuilderFleePath@PathBuilderFlee@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031AA560, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFly@@VPathBuilderFlyPath@PathBuilderFlight@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031AA580, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyAction@@VPathBuilderFlyActionPath@PathBuilderFlight@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031AA5A0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyHover@@VPathBuilderFlyHoverPath@PathBuilderFlight@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031AA5C0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyOrbit@@VPathBuilderFlyOrbitPath@PathBuilderFlight@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031AA5E0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyLand@@VPathBuilderFlyLandPath@PathBuilderFlight@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031AA600, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyTakeOff@@VPathBuilderFlyTakeOffPath@PathBuilderFlight@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031AA6F0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestHide@@VPathBuilderHidePath@PathBuilderHide@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031AA900, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestLOS@@VPathBuilderLOSPath@PathBuilderLOS@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031AAA80, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestOptimalLocation@@VPathBuilderOptimalLocationPath@PathBuilderOptimalLocation@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031AABB0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestSafeStraightLine@@VPathBuilderSafeStraightLinePath@PathBuilderSafeStraightLine@@@@` -`class BSHEAttributeBase`: VTable [0x00000000031AAF38, 0x0000000000000000 offset, 1 functions] `.?AVBSHEAttributeBase@@` -`class BSHECollapseConstraint`: VTable [0x00000000031AAFA8, 0x0000000000000000 offset, 1 functions] `.?AVBSHECollapseConstraint@@` -`class BSHEAttribute`: VTable [0x00000000031AAFC0, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@VNiPoint3@@@@` -`class BSHEAttribute`: VTable [0x00000000031AAFD8, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@VNiPoint2@@@@` -`class BGSTerrainMeshCollapseConstraint`: VTable [0x00000000031AAFF0, 0x0000000000000000 offset, 1 functions] `.?AVBGSTerrainMeshCollapseConstraint@@` -`class BGSTerrainMeshCollapseConstraintInternal`: VTable [0x00000000031AB008, 0x0000000000000000 offset, 1 functions] `.?AVBGSTerrainMeshCollapseConstraintInternal@@` -`class BGSQueuedTerrainUpdate`: VTable [0x00000000031AB608, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedTerrainUpdate@@` -`class BGSQueuedTerrainUpgrade`: VTable [0x00000000031AB650, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedTerrainUpgrade@@` -`class BGSQueuedTerrainDowngrade`: VTable [0x00000000031AB698, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedTerrainDowngrade@@` -`class BGSQueuedTerrainInitialLoad`: VTable [0x00000000031AB6E0, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedTerrainInitialLoad@@` -`class BGSQueuedObjectUpgrade`: VTable [0x00000000031AB728, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedObjectUpgrade@@` -`class BGSQueuedObjectDowngrade`: VTable [0x00000000031AB770, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedObjectDowngrade@@` -`class BGSQueuedObjectInitialLoad`: VTable [0x00000000031AB7B8, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedObjectInitialLoad@@` -`class std::basic_stringstream,class std::allocator >`: VTable [0x00000000031ACFD0, 0x0000000000000098 offset, 1 functions] `.?AV?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@` -`class BSResource::EntryDB`: VTable [0x00000000031AE808, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BGSBtoDB@@@BSResource@@` -`class BSResource::EntryDB`: VTable [0x00000000031AF9E0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BGSBttDB@@@BSResource@@` -`class BSResource::EntryDB`: VTable [0x00000000031B0780, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BGSBtrDB@@@BSResource@@` -`class BGSTerrainBuildThread`: VTable [0x00000000031B1980, 0x0000000000000000 offset, 3 functions] `.?AVBGSTerrainBuildThread@@` -`class BGSTerrainBuildDispatcherThread`: VTable [0x00000000031B19A8, 0x0000000000000000 offset, 3 functions] `.?AVBGSTerrainBuildDispatcherThread@@` -`class BGSTerrainVisibilityFinderTestThread`: VTable [0x00000000031B2CE8, 0x0000000000000000 offset, 3 functions] `.?AVBGSTerrainVisibilityFinderTestThread@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000031B3B78, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0GM@@@@@` -`class bhkAabbPhantom`: VTable [0x00000000031B4148, 0x0000000000000000 offset, 55 functions] `.?AVbhkAabbPhantom@@` -`class BGSWaterCollisionManager::bhkWaterfall`: VTable [0x00000000031B4368, 0x0000000000000000 offset, 13 functions] `.?AVbhkWaterfall@BGSWaterCollisionManager@@` -`class BGSWaterCollisionManager::bhkWaterfall`: VTable [0x00000000031B43F0, 0x0000000000000020 offset, 7 functions] `.?AVbhkWaterfall@BGSWaterCollisionManager@@` -`class BGSWaterCollisionManager::bhkAutoWater`: VTable [0x00000000031B4440, 0x0000000000000000 offset, 55 functions] `.?AVbhkAutoWater@BGSWaterCollisionManager@@` -`class BGSWaterCollisionManager::bshkAutoWater`: VTable [0x00000000031B47C0, 0x0000000000000000 offset, 15 functions] `.?AVbshkAutoWater@BGSWaterCollisionManager@@` -`class BGSWaterCollisionManager::bshkAutoWater`: VTable [0x00000000031B4860, 0x0000000000000130 offset, 7 functions] `.?AVbshkAutoWater@BGSWaterCollisionManager@@` -`class TESWaterObject`: VTable [0x00000000031B4FD0, 0x0000000000000000 offset, 2 functions] `.?AVTESWaterObject@@` -`class TESWaterReflections`: VTable [0x00000000031B4FF0, 0x0000000000000000 offset, 2 functions] `.?AVTESWaterReflections@@` -`class TESWaterNormals`: VTable [0x00000000031B5010, 0x0000000000000000 offset, 2 functions] `.?AVTESWaterNormals@@` -`class ConcreteFormFactory`: VTable [0x00000000031B7018, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSStoryManagerBranchNode@@$0HA@@@` -`class BGSStoryManagerEventNode`: VTable [0x00000000031B7170, 0x0000000000000000 offset, 113 functions] `.?AVBGSStoryManagerEventNode@@` -`class ConcreteFormFactory`: VTable [0x00000000031B75B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSStoryManagerEventNode@@$0HC@@@` -`class ConcreteObjectFormFactory`: VTable [0x00000000031B7608, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSStoryManagerEventNode@@$0HC@$0FN@$04@@` -`class DialogExtraStoryManagerData`: VTable [0x00000000031B7890, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraStoryManagerData@@` -`class BGSStoryManagerQuestNode`: VTable [0x00000000031B7ED0, 0x0000000000000000 offset, 113 functions] `.?AVBGSStoryManagerQuestNode@@` -`class ConcreteFormFactory`: VTable [0x00000000031B8318, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSStoryManagerQuestNode@@$0HB@@@` -`class BGSLOSData`: VTable [0x00000000031B8578, 0x0000000000000000 offset, 2 functions] `.?AVBGSLOSData@@` -`class BGSLOSQuadGrid`: VTable [0x00000000031B9050, 0x0000000000000000 offset, 5 functions] `.?AVBGSLOSQuadGrid@@` -`class BGSLOSGenParallelTask`: VTable [0x00000000031B9090, 0x0000000000000000 offset, 2 functions] `.?AVBGSLOSGenParallelTask@@` -`class BGSLOSQuadGridDefault`: VTable [0x00000000031B9380, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSLOSQuadGridDefault@VBGSLOSQuadInterior@@@@` -`class BGSLOSQuadGridSparse`: VTable [0x00000000031B93D0, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSLOSQuadGridSparse@VBGSLOSQuadInterior@@@@` -`class BGSLOSQuadGridDefault`: VTable [0x00000000031B9420, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSLOSQuadGridDefault@VBGSLOSQuadExterior@@@@` -`class BGSLOSQuadGridSparse`: VTable [0x00000000031B9470, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSLOSQuadGridSparse@VBGSLOSQuadExterior@@@@` -`class BGSLOSGenParallelTaskDelegate`: VTable [0x00000000031B94C0, 0x0000000000000000 offset, 2 functions] `.?AV?$BGSLOSGenParallelTaskDelegate@VBGSLOSGenCellGrid@@@@` -`class BGSLOSGenParallelTaskDelegate`: VTable [0x00000000031B94E0, 0x0000000000000000 offset, 2 functions] `.?AV?$BGSLOSGenParallelTaskDelegate@VHammingWeightComputer@@@@` -`class hkpBroadPhaseCastCollector`: VTable [0x00000000031B96E0, 0x0000000000000000 offset, 2 functions] `.?AVhkpBroadPhaseCastCollector@@` -`class hkpWorldRayCaster`: VTable [0x00000000031B9700, 0x0000000000000000 offset, 2 functions] `.?AVhkpWorldRayCaster@@` -`class bhkFirstRayHitCollector`: VTable [0x00000000031B9720, 0x0000000000000000 offset, 2 functions] `.?AVbhkFirstRayHitCollector@@` -`class BGSLOSGenParallelTaskDelegate`: VTable [0x00000000031B9BE8, 0x0000000000000000 offset, 2 functions] `.?AV?$BGSLOSGenParallelTaskDelegate@VBGSLOSGenLOSArray@@@@` -`class BGSLOSGenParallelTaskDelegate`: VTable [0x00000000031BA130, 0x0000000000000000 offset, 2 functions] `.?AV?$BGSLOSGenParallelTaskDelegate@VBGSLOSGenOcclusionArray@@@@` -`class BSLinearTaskThread`: VTable [0x00000000031BA2D8, 0x0000000000000000 offset, 7 functions] `.?AVBSLinearTaskThread@@` -`class BGSLOSGenParallelTaskThread`: VTable [0x00000000031BA328, 0x0000000000000000 offset, 7 functions] `.?AVBGSLOSGenParallelTaskThread@@` -`struct FindTriangleForLocationFilter`: VTable [0x00000000031BA910, 0x0000000000000000 offset, 2 functions] `.?AUFindTriangleForLocationFilter@@` -`struct FindTriangleForLocationFilterCheckDeltaZ`: VTable [0x00000000031BA930, 0x0000000000000000 offset, 2 functions] `.?AUFindTriangleForLocationFilterCheckDeltaZ@@` -`class BSShapeConstructor`: VTable [0x00000000031BA950, 0x0000000000000000 offset, 3 functions] `.?AVBSShapeConstructor@@` -`class BSBoxConstructor`: VTable [0x00000000031BA978, 0x0000000000000000 offset, 3 functions] `.?AVBSBoxConstructor@@` -`class BGSLOSGenQuadBoxConstructor`: VTable [0x00000000031BAAE0, 0x0000000000000000 offset, 3 functions] `.?AVBGSLOSGenQuadBoxConstructor@@` -`class AnimationClipDataSingleton`: VTable [0x00000000031BB5C0, 0x0000000000000000 offset, 1 functions] `.?AVAnimationClipDataSingleton@@` -`class AnimationSystemUtils::QueuedReferenceAnimationTask`: VTable [0x00000000031BC800, 0x0000000000000000 offset, 22 functions] `.?AVQueuedReferenceAnimationTask@AnimationSystemUtils@@` -`class AnimationSystemUtils::QueuedReferenceAnimationTask`: VTable [0x00000000031BC8E0, 0x0000000000000038 offset, 3 functions] `.?AVQueuedReferenceAnimationTask@AnimationSystemUtils@@` -`class BSIFootIkRaycastInterfaceDB`: VTable [0x00000000031BD520, 0x0000000000000000 offset, 3 functions] `.?AVBSIFootIkRaycastInterfaceDB@@` -`class hkaRaycastInterface`: VTable [0x00000000031BD548, 0x0000000000000000 offset, 3 functions] `.?AVhkaRaycastInterface@@` -`class BGSFootIkRaycastInterfaceDB`: VTable [0x00000000031BD570, 0x0000000000000000 offset, 3 functions] `.?AVBGSFootIkRaycastInterfaceDB@@` -`class CachedRaycastData`: VTable [0x00000000031BD5E8, 0x0000000000000000 offset, 3 functions] `.?AVCachedRaycastData@@` -`class IGamebryoSequenceGeneratorHolderSingleton`: VTable [0x00000000031BD800, 0x0000000000000000 offset, 4 functions] `.?AVIGamebryoSequenceGeneratorHolderSingleton@@` -`class BGSGamebryoSequenceGeneratorHolderSingleton`: VTable [0x00000000031BD830, 0x0000000000000000 offset, 4 functions] `.?AVBGSGamebryoSequenceGeneratorHolderSingleton@@` -`class BSSynchronizedClipGenerator::hkbSynchronizedAnimationScene`: VTable [0x00000000031BE530, 0x0000000000000000 offset, 10 functions] `.?AVhkbSynchronizedAnimationScene@BSSynchronizedClipGenerator@@` -`class BGSSynchronizedAnimationInstance`: VTable [0x00000000031BE5A0, 0x0000000000000000 offset, 10 functions] `.?AVBGSSynchronizedAnimationInstance@@` -`class BSAnimGraphVisit::BShkbVisitor`: VTable [0x00000000031BE610, 0x0000000000000000 offset, 2 functions] `.?AVBShkbVisitor@BSAnimGraphVisit@@` -`class `anonymous namespace'::SynchronizedClipGenVisitor`: VTable [0x00000000031BE700, 0x0000000000000000 offset, 2 functions] `.?AVSynchronizedClipGenVisitor@?A0x01ff8445@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000031BEBF0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0EI@@@@@` -`class BSLimbIKModifierUtilityCastInfo`: VTable [0x00000000031BEE10, 0x0000000000000000 offset, 1 functions] `.?AVBSLimbIKModifierUtilityCastInfo@@` -`class BSLimbIKModifierUtility`: VTable [0x00000000031BEE28, 0x0000000000000000 offset, 4 functions] `.?AVBSLimbIKModifierUtility@@` -`class hkpAllRayHitTempCollector`: VTable [0x00000000031BEE58, 0x0000000000000000 offset, 2 functions] `.?AVhkpAllRayHitTempCollector@@` -`class IAnimationGraphManagerHolder`: VTable [0x00000000031BFA30, 0x0000000000000000 offset, 19 functions] `.?AVIAnimationGraphManagerHolder@@` -`class IAnimationGraphManagerLoadingTask`: VTable [0x00000000031BFAF0, 0x0000000000000000 offset, 22 functions] `.?AVIAnimationGraphManagerLoadingTask@@` -`class IAnimationGraphManagerLoadingTask`: VTable [0x00000000031BFBD0, 0x0000000000000038 offset, 3 functions] `.?AVIAnimationGraphManagerLoadingTask@@` -`class SimpleAnimationGraphManagerHolder`: VTable [0x00000000031C0108, 0x0000000000000000 offset, 20 functions] `.?AVSimpleAnimationGraphManagerHolder@@` -`class SimpleAnimationGraphManagerLoadingTask`: VTable [0x00000000031C01D8, 0x0000000000000000 offset, 22 functions] `.?AVSimpleAnimationGraphManagerLoadingTask@@` -`class SimpleAnimationGraphManagerLoadingTask`: VTable [0x00000000031C02B8, 0x0000000000000038 offset, 3 functions] `.?AVSimpleAnimationGraphManagerLoadingTask@@` -`class WeaponAnimationGraphManagerHolder`: VTable [0x00000000031C0598, 0x0000000000000000 offset, 21 functions] `.?AVWeaponAnimationGraphManagerHolder@@` -`class TailAnimationGraphManagerHolder`: VTable [0x00000000031C0670, 0x0000000000000000 offset, 21 functions] `.?AVTailAnimationGraphManagerHolder@@` -`class BSTEventSink`: VTable [0x00000000031C08C8, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UNameFoundEvent@BSResource@@@@` -`class `anonymous namespace'::LooseAudioRegistrar`: VTable [0x00000000031C08E8, 0x0000000000000000 offset, 2 functions] `.?AVLooseAudioRegistrar@?A0xb1e988c7@@` -`class BSResource::EntryDB`: VTable [0x00000000031C1AC0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BGSTerrainVisibilityDataDB@@@BSResource@@` -`class TESCamera`: VTable [0x00000000031C1C10, 0x0000000000000000 offset, 3 functions] `.?AVTESCamera@@` -`class TESRegionDataGrassEditor`: VTable [0x00000000031C1D28, 0x0000000000000000 offset, 17 functions] `.?AVTESRegionDataGrassEditor@@` -`class TESRegionDataLandscapeEditor`: VTable [0x00000000031C1FA8, 0x0000000000000000 offset, 17 functions] `.?AVTESRegionDataLandscapeEditor@@` -`class TESRegionDataMapEditor`: VTable [0x00000000031C2118, 0x0000000000000000 offset, 14 functions] `.?AVTESRegionDataMapEditor@@` -`class TESRegionDataObjectsEditor`: VTable [0x00000000031C2998, 0x0000000000000000 offset, 19 functions] `.?AVTESRegionDataObjectsEditor@@` -`class TESRegionDataSoundEditor`: VTable [0x00000000031C33D8, 0x0000000000000000 offset, 15 functions] `.?AVTESRegionDataSoundEditor@@` -`class TESRegionDataWeatherEditor`: VTable [0x00000000031C3510, 0x0000000000000000 offset, 15 functions] `.?AVTESRegionDataWeatherEditor@@` -`class NiTMapBase >,char const * __ptr64,class HeightField * __ptr64>`: VTable [0x00000000031C5C10, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEBDPEAVHeightField@@@@@@PEBDPEAVHeightField@@@@` -`class NiTMap`: VTable [0x00000000031C5C60, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEBDPEAVHeightField@@@@` -`class NiTStringTemplateMap,class HeightField * __ptr64>`: VTable [0x00000000031C5CB0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTMap@PEBDPEAVHeightField@@@@PEAVHeightField@@@@` -`class NiTStringMap`: VTable [0x00000000031C5D00, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringMap@PEAVHeightField@@@@` -`class BSHEMeshDebugger::StepCallback`: VTable [0x00000000031C6850, 0x0000000000000000 offset, 7 functions] `.?AVStepCallback@BSHEMeshDebugger@@` -`class BGSMeshDebuggerValidatorThread`: VTable [0x00000000031C68A0, 0x0000000000000000 offset, 3 functions] `.?AVBGSMeshDebuggerValidatorThread@@` -`class BGSMeshDebuggerTestThread`: VTable [0x00000000031C68C8, 0x0000000000000000 offset, 3 functions] `.?AVBGSMeshDebuggerTestThread@@` -`class StepCallback`: VTable [0x00000000031C68F0, 0x0000000000000000 offset, 7 functions] `.?AVStepCallback@@` -`class NavMeshEditObject`: VTable [0x00000000031C8218, 0x0000000000000000 offset, 33 functions] `.?AVNavMeshEditObject@@` -`class NavMeshEditVertex`: VTable [0x00000000031C8360, 0x0000000000000000 offset, 35 functions] `.?AVNavMeshEditVertex@@` -`class NavMeshEditTriangle`: VTable [0x00000000031C84C0, 0x0000000000000000 offset, 33 functions] `.?AVNavMeshEditTriangle@@` -`class NavMeshEditEdge`: VTable [0x00000000031C8608, 0x0000000000000000 offset, 34 functions] `.?AVNavMeshEditEdge@@` -`class NavGenUtil::NavGenMeshRecastImport`: VTable [0x00000000031CAA70, 0x0000000000000000 offset, 2 functions] `.?AVNavGenMeshRecastImport@NavGenUtil@@` -`class CSScript::FragmentSystem::BaseObjectFragmentData`: VTable [0x00000000031CFC08, 0x0000000000000000 offset, 5 functions] `.?AVBaseObjectFragmentData@FragmentSystem@CSScript@@` -`class CSScript::FragmentSystem::QuestFragmentData`: VTable [0x00000000031CFC48, 0x0000000000000000 offset, 5 functions] `.?AVQuestFragmentData@FragmentSystem@CSScript@@` -`class CSScript::FragmentSystem::TopicInfoFragmentData`: VTable [0x00000000031CFC88, 0x0000000000000000 offset, 5 functions] `.?AVTopicInfoFragmentData@FragmentSystem@CSScript@@` -`class CSScript::FragmentSystem::SceneFragmentData`: VTable [0x00000000031CFCC8, 0x0000000000000000 offset, 5 functions] `.?AVSceneFragmentData@FragmentSystem@CSScript@@` -`class CSScript::FragmentSystem::PackageFragmentData`: VTable [0x00000000031CFD08, 0x0000000000000000 offset, 5 functions] `.?AVPackageFragmentData@FragmentSystem@CSScript@@` -`class CSScript::FragmentSystem::PerkFragmentData`: VTable [0x00000000031CFD48, 0x0000000000000000 offset, 5 functions] `.?AVPerkFragmentData@FragmentSystem@CSScript@@` -`class CSScript::`anonymous namespace'::FindBaseObjVisitor`: VTable [0x00000000031D02F0, 0x0000000000000000 offset, 4 functions] `.?AVFindBaseObjVisitor@?A0xcfcdbba3@CSScript@@` -`class CSScript::Internal::ScriptManager`: VTable [0x00000000031D0CE8, 0x0000000000000000 offset, 6 functions] `.?AVScriptManager@Internal@CSScript@@` -`class CSScript::IScriptManager`: VTable [0x00000000031D0F70, 0x0000000000000000 offset, 6 functions] `.?AVIScriptManager@CSScript@@` -`struct BSPerforce::IForEachOtherCheckoutFunctor`: VTable [0x00000000031D2D18, 0x0000000000000000 offset, 1 functions] `.?AUIForEachOtherCheckoutFunctor@BSPerforce@@` -`struct CSScript::`anonymous namespace'::GetUserListFunctor`: VTable [0x00000000031D2DA8, 0x0000000000000000 offset, 1 functions] `.?AUGetUserListFunctor@?A0x62a5eb4b@CSScript@@` -`class CSScript::ModalDialog`: VTable [0x00000000031D35D8, 0x0000000000000000 offset, 2 functions] `.?AVModalDialog@CSScript@@` -`class CSScript::`anonymous namespace'::ControlValidationBase`: VTable [0x00000000031D3648, 0x0000000000000000 offset, 2 functions] `.?AVControlValidationBase@?A0x45b064fb@CSScript@@` -`class CSScript::`anonymous namespace'::IdentValidation`: VTable [0x00000000031D3668, 0x0000000000000000 offset, 2 functions] `.?AVIdentValidation@?A0x45b064fb@CSScript@@` -`class CSScript::`anonymous namespace'::ScriptnameValidation`: VTable [0x00000000031D3688, 0x0000000000000000 offset, 2 functions] `.?AVScriptnameValidation@?A0x45b064fb@CSScript@@` -`class CSScript::`anonymous namespace'::DocstringValidation`: VTable [0x00000000031D36A8, 0x0000000000000000 offset, 2 functions] `.?AVDocstringValidation@?A0x45b064fb@CSScript@@` -`class CSScript::`anonymous namespace'::IntegerValidation`: VTable [0x00000000031D36C8, 0x0000000000000000 offset, 2 functions] `.?AVIntegerValidation@?A0x45b064fb@CSScript@@` -`class CSScript::`anonymous namespace'::FloatValidation`: VTable [0x00000000031D36E8, 0x0000000000000000 offset, 2 functions] `.?AVFloatValidation@?A0x45b064fb@CSScript@@` -`class CSScript::`anonymous namespace'::NewScriptDlg`: VTable [0x00000000031D3708, 0x0000000000000000 offset, 2 functions] `.?AVNewScriptDlg@?A0x45b064fb@CSScript@@` -`class CSScript::`anonymous namespace'::ScriptRenameDialog`: VTable [0x00000000031D39B0, 0x0000000000000000 offset, 2 functions] `.?AVScriptRenameDialog@?A0x45b064fb@CSScript@@` -`struct BSScript::ILoader`: VTable [0x00000000031D41E0, 0x0000000000000000 offset, 4 functions] `.?AUILoader@BSScript@@` -`struct BSScript::IObjectHandlePolicy`: VTable [0x00000000031D4210, 0x0000000000000000 offset, 12 functions] `.?AUIObjectHandlePolicy@BSScript@@` -`class BSScript::ObjectBindPolicy`: VTable [0x00000000031D4290, 0x0000000000000000 offset, 13 functions] `.?AVObjectBindPolicy@BSScript@@` -`class BSScript::IFreezeQuery`: VTable [0x00000000031D4318, 0x0000000000000000 offset, 2 functions] `.?AVIFreezeQuery@BSScript@@` -`class BSScript::IStackCallbackSaveInterface`: VTable [0x00000000031D4338, 0x0000000000000000 offset, 3 functions] `.?AVIStackCallbackSaveInterface@BSScript@@` -`class BSScript::ISavePatcherInterface`: VTable [0x00000000031D4360, 0x0000000000000000 offset, 2 functions] `.?AVISavePatcherInterface@BSScript@@` -`class CSScript::Logger`: VTable [0x00000000031D4380, 0x0000000000000000 offset, 3 functions] `.?AVLogger@CSScript@@` -`class CSScript::HandlePolicy`: VTable [0x00000000031D43C8, 0x0000000000000000 offset, 12 functions] `.?AVHandlePolicy@CSScript@@` -`class CSScript::ObjectBindPolicy`: VTable [0x00000000031D4448, 0x0000000000000000 offset, 13 functions] `.?AVObjectBindPolicy@CSScript@@` -`class BSScript::IStore`: VTable [0x00000000031D44D0, 0x0000000000000000 offset, 12 functions] `.?AVIStore@BSScript@@` -`class CSScript::Store`: VTable [0x00000000031D4550, 0x0000000000000000 offset, 12 functions] `.?AVStore@CSScript@@` -`class ConstructionSetVM`: VTable [0x00000000031D45D0, 0x0000000000000000 offset, 2 functions] `.?AVConstructionSetVM@@` -`class ConstructionSetVM`: VTable [0x00000000031D45F0, 0x0000000000000008 offset, 3 functions] `.?AVConstructionSetVM@@` -`class std::_Func_base`: VTable [0x00000000031D4A30, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@_N$$V@std@@` -`class std::_Func_impl,class std::allocator,bool>`: VTable [0x00000000031D4A78, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@_N$$V@std@@` -`class CSScript::ChooseScriptDlg`: VTable [0x00000000031D4E98, 0x0000000000000000 offset, 2 functions] `.?AVChooseScriptDlg@CSScript@@` -`class BSResource::LocationTraverser`: VTable [0x00000000031D53D0, 0x0000000000000000 offset, 1 functions] `.?AVLocationTraverser@BSResource@@` -`class CSScript::CompileDlg`: VTable [0x00000000031D53E8, 0x0000000000000000 offset, 2 functions] `.?AVCompileDlg@CSScript@@` -`class CSScript::PickScriptsToCompileDlg`: VTable [0x00000000031D5408, 0x0000000000000000 offset, 2 functions] `.?AVPickScriptsToCompileDlg@CSScript@@` -`class CSScript::`anonymous namespace'::ObtainFilenames`: VTable [0x00000000031D5428, 0x0000000000000000 offset, 1 functions] `.?AVObtainFilenames@?A0xa5d0780a@CSScript@@` -`class CSScript::Internal::CompileScriptsThread`: VTable [0x00000000031D5440, 0x0000000000000000 offset, 3 functions] `.?AVCompileScriptsThread@Internal@CSScript@@` -`class CSScript::EditDlg`: VTable [0x00000000031D57E8, 0x0000000000000000 offset, 2 functions] `.?AVEditDlg@CSScript@@` -`class CSScript::ErrorDlg`: VTable [0x00000000031D5A30, 0x0000000000000000 offset, 2 functions] `.?AVErrorDlg@CSScript@@` -`class CSScript::IEditDlgUIHandler`: VTable [0x00000000031D6170, 0x0000000000000000 offset, 3 functions] `.?AVIEditDlgUIHandler@CSScript@@` -`class CSScript::FragmentDlg`: VTable [0x00000000031D6198, 0x0000000000000000 offset, 2 functions] `.?AVFragmentDlg@CSScript@@` -`class CSScript::`anonymous namespace'::EditDialogBase`: VTable [0x00000000031D61B8, 0x0000000000000000 offset, 9 functions] `.?AVEditDialogBase@?A0xb7f68ca3@CSScript@@` -`class CSScript::`anonymous namespace'::EditFragmentHandler`: VTable [0x00000000031D6218, 0x0000000000000000 offset, 3 functions] `.?AVEditFragmentHandler@?A0xb7f68ca3@CSScript@@` -`class CSScript::`anonymous namespace'::EditResultHandler`: VTable [0x00000000031D6240, 0x0000000000000000 offset, 3 functions] `.?AVEditResultHandler@?A0xb7f68ca3@CSScript@@` -`class CSScript::Internal::FragmentEditDlg`: VTable [0x00000000031D6268, 0x0000000000000000 offset, 9 functions] `.?AVFragmentEditDlg@Internal@CSScript@@` -`class CSScript::Internal::ResultScriptEditDlg`: VTable [0x00000000031D62F8, 0x0000000000000000 offset, 9 functions] `.?AVResultScriptEditDlg@Internal@CSScript@@` -`class CSScript::Internal::AdvancedFragmentDlg`: VTable [0x00000000031D6358, 0x0000000000000000 offset, 2 functions] `.?AVAdvancedFragmentDlg@Internal@CSScript@@` -`class CSScript::ListDlg`: VTable [0x00000000031D7160, 0x0000000000000000 offset, 2 functions] `.?AVListDlg@CSScript@@` -`class CSScript::`anonymous namespace'::ScriptUIHandler`: VTable [0x00000000031D71A0, 0x0000000000000000 offset, 3 functions] `.?AVScriptUIHandler@?A0x42d4c940@CSScript@@` -`class CSScript::ModelessDialog`: VTable [0x00000000031D7A90, 0x0000000000000000 offset, 2 functions] `.?AVModelessDialog@CSScript@@` -`class CSScript::Internal::ScriptManagerDlg`: VTable [0x00000000031D7AB0, 0x0000000000000000 offset, 2 functions] `.?AVScriptManagerDlg@Internal@CSScript@@` -`class CSScript::PropertiesDlg`: VTable [0x00000000031D9088, 0x0000000000000000 offset, 2 functions] `.?AVPropertiesDlg@CSScript@@` -`class CSScript::`anonymous namespace'::NewPropertyDlg`: VTable [0x00000000031D9100, 0x0000000000000000 offset, 2 functions] `.?AVNewPropertyDlg@?A0x55cf26b6@CSScript@@` -`class CSScript::PropDlgInternal::BoolEditPane`: VTable [0x00000000031D92C0, 0x0000000000000000 offset, 2 functions] `.?AVBoolEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::EditPaneBase`: VTable [0x00000000031D92E0, 0x0000000000000000 offset, 2 functions] `.?AVEditPaneBase@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::IntEditPane`: VTable [0x00000000031D9300, 0x0000000000000000 offset, 2 functions] `.?AVIntEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::FloatEditPane`: VTable [0x00000000031D9330, 0x0000000000000000 offset, 2 functions] `.?AVFloatEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::StringEditPane`: VTable [0x00000000031D9360, 0x0000000000000000 offset, 2 functions] `.?AVStringEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::ObjEditPane`: VTable [0x00000000031D9390, 0x0000000000000000 offset, 2 functions] `.?AVObjEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::AliasEditPane::ScriptFilterFunctor`: VTable [0x00000000031D93B0, 0x0000000000000000 offset, 2 functions] `.?AVScriptFilterFunctor@AliasEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::AliasEditPane`: VTable [0x00000000031D93D0, 0x0000000000000000 offset, 2 functions] `.?AVAliasEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::RefEditPane`: VTable [0x00000000031D93F0, 0x0000000000000000 offset, 2 functions] `.?AVRefEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::ArrayEditPane`: VTable [0x00000000031D9410, 0x0000000000000000 offset, 2 functions] `.?AVArrayEditPane@PropDlgInternal@CSScript@@` -`class CSScript::Internal::ScriptUseInfoDlg`: VTable [0x00000000031D9918, 0x0000000000000000 offset, 2 functions] `.?AVScriptUseInfoDlg@Internal@CSScript@@` -`class BSPerforce::IErrorLogger`: VTable [0x00000000031D9BE0, 0x0000000000000000 offset, 2 functions] `.?AVIErrorLogger@BSPerforce@@` -`class BSPerforce::ILoginInterface`: VTable [0x00000000031D9C00, 0x0000000000000000 offset, 3 functions] `.?AVILoginInterface@BSPerforce@@` -`class CSPerforce::PerforceInternal::ErrorLogger`: VTable [0x00000000031D9C28, 0x0000000000000000 offset, 2 functions] `.?AVErrorLogger@PerforceInternal@CSPerforce@@` -`class CSPerforce::PerforceInternal::LoginInterface`: VTable [0x00000000031D9C58, 0x0000000000000000 offset, 3 functions] `.?AVLoginInterface@PerforceInternal@CSPerforce@@` -`class CSPerforce::Perforce`: VTable [0x00000000031D9C80, 0x0000000000000000 offset, 1 functions] `.?AVPerforce@CSPerforce@@` -`class std::exception`: VTable [0x00000000031DC910, 0x0000000000000000 offset, 2 functions] `.?AVexception@std@@` -`class Json::CharReader::Factory`: VTable [0x00000000031DC948, 0x0000000000000000 offset, 2 functions] `.?AVFactory@CharReader@Json@@` -`class Json::CharReader`: VTable [0x00000000031DC968, 0x0000000000000000 offset, 2 functions] `.?AVCharReader@Json@@` -`class Json::CharReaderBuilder`: VTable [0x00000000031DC988, 0x0000000000000000 offset, 2 functions] `.?AVCharReaderBuilder@Json@@` -`class Json::StreamWriter::Factory`: VTable [0x00000000031DC9A8, 0x0000000000000000 offset, 2 functions] `.?AVFactory@StreamWriter@Json@@` -`class Json::StreamWriter`: VTable [0x00000000031DC9C8, 0x0000000000000000 offset, 2 functions] `.?AVStreamWriter@Json@@` -`class Json::StreamWriterBuilder`: VTable [0x00000000031DC9E8, 0x0000000000000000 offset, 2 functions] `.?AVStreamWriterBuilder@Json@@` -`class Json::Writer`: VTable [0x00000000031DCA08, 0x0000000000000000 offset, 2 functions] `.?AVWriter@Json@@` -`class Json::StyledWriter`: VTable [0x00000000031DCA28, 0x0000000000000000 offset, 2 functions] `.?AVStyledWriter@Json@@` -`class Json::OurCharReader`: VTable [0x00000000031DCEF0, 0x0000000000000000 offset, 2 functions] `.?AVOurCharReader@Json@@` -`class Json::Exception`: VTable [0x00000000031DD178, 0x0000000000000000 offset, 2 functions] `.?AVException@Json@@` -`class Json::RuntimeError`: VTable [0x00000000031DD198, 0x0000000000000000 offset, 2 functions] `.?AVRuntimeError@Json@@` -`class Json::LogicError`: VTable [0x00000000031DD1B8, 0x0000000000000000 offset, 2 functions] `.?AVLogicError@Json@@` -`struct Json::BuiltStyledStreamWriter`: VTable [0x00000000031DDAB8, 0x0000000000000000 offset, 2 functions] `.?AUBuiltStyledStreamWriter@Json@@` -`class hkaDefaultAnimationControl`: VTable [0x00000000031E1EF8, 0x0000000000000000 offset, 14 functions] `.?AVhkaDefaultAnimationControl@@` -`class hkaDefaultAnimationControlMapperData`: VTable [0x00000000031E1F88, 0x0000000000000000 offset, 3 functions] `.?AVhkaDefaultAnimationControlMapperData@@` -`class hkaFootPlacementIkSolver`: VTable [0x00000000031E2170, 0x0000000000000000 offset, 3 functions] `.?AVhkaFootPlacementIkSolver@@` -`class hkaAnimationControl`: VTable [0x00000000031E21B0, 0x0000000000000000 offset, 14 functions] `.?AVhkaAnimationControl@@` -`class hkaSkeletonMapper`: VTable [0x00000000031E2290, 0x0000000000000000 offset, 3 functions] `.?AVhkaSkeletonMapper@@` -`class hkMemoryAllocator`: VTable [0x00000000031E2590, 0x0000000000000000 offset, 11 functions] `.?AVhkMemoryAllocator@@` -`class hkLifoAllocator`: VTable [0x00000000031E2608, 0x0000000000000000 offset, 11 functions] `.?AVhkLifoAllocator@@` -`struct hkContainerTempAllocator::Allocator`: VTable [0x00000000031E2680, 0x0000000000000000 offset, 11 functions] `.?AUAllocator@hkContainerTempAllocator@@` -`struct hkContainerHeapAllocator::Allocator`: VTable [0x00000000031E26F8, 0x0000000000000000 offset, 11 functions] `.?AUAllocator@hkContainerHeapAllocator@@` -`struct hkContainerDebugAllocator::Allocator`: VTable [0x00000000031E2770, 0x0000000000000000 offset, 11 functions] `.?AUAllocator@hkContainerDebugAllocator@@` -`class hkReferencedObjectLock`: VTable [0x00000000031E2CE8, 0x0000000000000000 offset, 3 functions] `.?AVhkReferencedObjectLock@@` -`class hkErrStream`: VTable [0x00000000031E3718, 0x0000000000000000 offset, 3 functions] `.?AVhkErrStream@@` -`class hkOstream`: VTable [0x00000000031E3948, 0x0000000000000000 offset, 3 functions] `.?AVhkOstream@@` -`class hkMemoryTrackStreamWriter`: VTable [0x00000000031E3970, 0x0000000000000000 offset, 10 functions] `.?AVhkMemoryTrackStreamWriter@@` -`class hkArrayStreamWriter`: VTable [0x00000000031E39E0, 0x0000000000000000 offset, 10 functions] `.?AVhkArrayStreamWriter@@` -`class hkLocalFrame`: VTable [0x00000000031E7C40, 0x0000000000000000 offset, 15 functions] `.?AVhkLocalFrame@@` -`class hkLocalFrameGroup`: VTable [0x00000000031E7CE0, 0x0000000000000000 offset, 3 functions] `.?AVhkLocalFrameGroup@@` -`class hkSimpleLocalFrame`: VTable [0x00000000031E7D08, 0x0000000000000000 offset, 15 functions] `.?AVhkSimpleLocalFrame@@` -`class hkBufferedStreamReader`: VTable [0x00000000031E7F48, 0x0000000000000000 offset, 13 functions] `.?AVhkBufferedStreamReader@@` -`class hkBufferedStreamWriter`: VTable [0x00000000031E7FD0, 0x0000000000000000 offset, 9 functions] `.?AVhkBufferedStreamWriter@@` -`class hkSeekableStreamReader`: VTable [0x00000000031E8060, 0x0000000000000000 offset, 12 functions] `.?AVhkSeekableStreamReader@@` -`class hkStdioStreamReader`: VTable [0x00000000031E80E0, 0x0000000000000000 offset, 12 functions] `.?AVhkStdioStreamReader@@` -`class hkStdioStreamWriter`: VTable [0x00000000031E8160, 0x0000000000000000 offset, 10 functions] `.?AVhkStdioStreamWriter@@` -`class hkMemoryTrackStreamReader`: VTable [0x00000000031E81D0, 0x0000000000000000 offset, 12 functions] `.?AVhkMemoryTrackStreamReader@@` -`class hkCrcStreamWriter`: VTable [0x00000000031E82B8, 0x0000000000000000 offset, 9 functions] `.?AV?$hkCrcStreamWriter@I$0ONLIIDCA@@@` -`class hkCrc32StreamWriter`: VTable [0x00000000031E8318, 0x0000000000000000 offset, 9 functions] `.?AVhkCrc32StreamWriter@@` -`class hkStatisticsCollector`: VTable [0x00000000031E8378, 0x0000000000000000 offset, 8 functions] `.?AVhkStatisticsCollector@@` -`class hkStackTracer`: VTable [0x00000000031E8778, 0x0000000000000000 offset, 3 functions] `.?AVhkStackTracer@@` -`class hkDummySingleton`: VTable [0x00000000031E8CA0, 0x0000000000000000 offset, 4 functions] `.?AVhkDummySingleton@@` -`class hkTrackerSerializableScanSnapshot`: VTable [0x00000000031E8CE8, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerSerializableScanSnapshot@@` -`class hkTrackerTypeTreeTextCache`: VTable [0x00000000031E8D10, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerTypeTreeTextCache@@` -`class hkOArchive`: VTable [0x00000000031E8D38, 0x0000000000000000 offset, 3 functions] `.?AVhkOArchive@@` -`class hkDefaultError`: VTable [0x00000000031E8D60, 0x0000000000000000 offset, 10 functions] `.?AVhkDefaultError@@` -`class hkSocket::ReaderAdapter`: VTable [0x00000000031E8E08, 0x0000000000000000 offset, 12 functions] `.?AVReaderAdapter@hkSocket@@` -`class hkSocket::WriterAdapter`: VTable [0x00000000031E8E88, 0x0000000000000000 offset, 9 functions] `.?AVWriterAdapter@hkSocket@@` -`class hkSocket`: VTable [0x00000000031E8EE8, 0x0000000000000000 offset, 12 functions] `.?AVhkSocket@@` -`class hkTrackerScanSnapshot`: VTable [0x00000000031E8F68, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerScanSnapshot@@` -`class hkBsdSocket`: VTable [0x00000000031E9080, 0x0000000000000000 offset, 12 functions] `.?AVhkBsdSocket@@` -`class hkTrackerTypeTreeCache`: VTable [0x00000000031E9258, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerTypeTreeCache@@` -`class hkMemoryTracker`: VTable [0x00000000031E95D8, 0x0000000000000000 offset, 9 functions] `.?AVhkMemoryTracker@@` -`class hkDefaultMemoryTracker`: VTable [0x00000000031E9638, 0x0000000000000000 offset, 9 functions] `.?AVhkDefaultMemoryTracker@@` -`class hkMemorySystem`: VTable [0x00000000031E96B8, 0x0000000000000000 offset, 23 functions] `.?AVhkMemorySystem@@` -`class hkDummyMemoryTrackerImpl`: VTable [0x00000000031E97E8, 0x0000000000000000 offset, 9 functions] `.?AVhkDummyMemoryTrackerImpl@@` -`class hkTrackerTypeLayout`: VTable [0x00000000031E9848, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerTypeLayout@@` -`class hkTrackerLayoutHandler`: VTable [0x00000000031E9870, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerLayoutHandler@@` -`class hkTrackerLayoutCalculator`: VTable [0x00000000031E98B8, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerLayoutCalculator@@` -`class hkTrackerArrayLayoutHandler`: VTable [0x00000000031E98E0, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerArrayLayoutHandler@@` -`class hkTrackerRefPtrLayoutHandler`: VTable [0x00000000031E9928, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerRefPtrLayoutHandler@@` -`class hkTrackerStringPtrLayoutHandler`: VTable [0x00000000031E9970, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerStringPtrLayoutHandler@@` -`class hkTrackerCachedHashMapLayoutHandler`: VTable [0x00000000031E99B8, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerCachedHashMapLayoutHandler@@` -`class hkTrackerStringMapLayoutHandler`: VTable [0x00000000031E9A00, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerStringMapLayoutHandler@@` -`class hkbRagdollDriver`: VTable [0x00000000031E9B70, 0x0000000000000000 offset, 3 functions] `.?AVhkbRagdollDriver@@` -`class hkbBindable`: VTable [0x00000000031E9B98, 0x0000000000000000 offset, 4 functions] `.?AVhkbBindable@@` -`class hkbNode`: VTable [0x00000000031E9BC8, 0x0000000000000000 offset, 23 functions] `.?AVhkbNode@@` -`class hkbGenerator`: VTable [0x00000000031E9CB0, 0x0000000000000000 offset, 28 functions] `.?AVhkbGenerator@@` -`class hkbVariableValueSet`: VTable [0x00000000031E9DC8, 0x0000000000000000 offset, 3 functions] `.?AVhkbVariableValueSet@@` -`class hkbBehaviorGraph::GlobalTransitionData`: VTable [0x00000000031E9DF0, 0x0000000000000000 offset, 3 functions] `.?AVGlobalTransitionData@hkbBehaviorGraph@@` -`class hkbBehaviorGraph`: VTable [0x00000000031E9E18, 0x0000000000000000 offset, 28 functions] `.?AVhkbBehaviorGraph@@` -`class hkbNodeInternalStateInfo`: VTable [0x00000000031E9F30, 0x0000000000000000 offset, 3 functions] `.?AVhkbNodeInternalStateInfo@@` -`class hkbAnimationBindingSet`: VTable [0x00000000031EA3F8, 0x0000000000000000 offset, 3 functions] `.?AVhkbAnimationBindingSet@@` -`class hkbCharacter`: VTable [0x00000000031EA420, 0x0000000000000000 offset, 5 functions] `.?AVhkbCharacter@@` -`class hkpAllCdPointCollector`: VTable [0x00000000031EA460, 0x0000000000000000 offset, 3 functions] `.?AVhkpAllCdPointCollector@@` -`class hkbBindableCollector`: VTable [0x00000000031EA4A8, 0x0000000000000000 offset, 2 functions] `.?AVhkbBindableCollector@@` -`class hkbBindable::CacheBindablesCollector`: VTable [0x00000000031EA4C8, 0x0000000000000000 offset, 2 functions] `.?AVCacheBindablesCollector@hkbBindable@@` -`class hkbNode::BoundVariablesCollector`: VTable [0x00000000031EA4E8, 0x0000000000000000 offset, 2 functions] `.?AVBoundVariablesCollector@hkbNode@@` -`class hkbAttachmentSetup`: VTable [0x000000000320BA08, 0x0000000000000000 offset, 3 functions] `.?AVhkbAttachmentSetup@@` -`class hkbEventPayload`: VTable [0x000000000320BA90, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventPayload@@` -`class hkbRealEventPayload`: VTable [0x000000000320BAB8, 0x0000000000000000 offset, 3 functions] `.?AVhkbRealEventPayload@@` -`class hkbIntEventPayload`: VTable [0x000000000320BAE0, 0x0000000000000000 offset, 3 functions] `.?AVhkbIntEventPayload@@` -`class hkbStringEventPayload`: VTable [0x000000000320BB08, 0x0000000000000000 offset, 3 functions] `.?AVhkbStringEventPayload@@` -`class hkbNamedEventPayload`: VTable [0x000000000320BB30, 0x0000000000000000 offset, 3 functions] `.?AVhkbNamedEventPayload@@` -`class hkbNamedRealEventPayload`: VTable [0x000000000320BB58, 0x0000000000000000 offset, 3 functions] `.?AVhkbNamedRealEventPayload@@` -`class hkbNamedIntEventPayload`: VTable [0x000000000320BB80, 0x0000000000000000 offset, 3 functions] `.?AVhkbNamedIntEventPayload@@` -`class hkbNamedStringEventPayload`: VTable [0x000000000320BBA8, 0x0000000000000000 offset, 3 functions] `.?AVhkbNamedStringEventPayload@@` -`class hkbEventPayloadList`: VTable [0x000000000320BBD0, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventPayloadList@@` -`class hkbVariableBindingSet`: VTable [0x000000000320BBF8, 0x0000000000000000 offset, 3 functions] `.?AVhkbVariableBindingSet@@` -`class hkbHandle`: VTable [0x000000000320BC20, 0x0000000000000000 offset, 3 functions] `.?AVhkbHandle@@` -`class hkbTransitionEffect`: VTable [0x000000000320BC48, 0x0000000000000000 offset, 33 functions] `.?AVhkbTransitionEffect@@` -`class hkbProjectStringData`: VTable [0x000000000320BD90, 0x0000000000000000 offset, 3 functions] `.?AVhkbProjectStringData@@` -`class hkbBehaviorGraphStringData`: VTable [0x000000000320BFA0, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorGraphStringData@@` -`class hkbBehaviorGraphData`: VTable [0x000000000320BFC8, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorGraphData@@` -`class hkbBehaviorGraphInternalState`: VTable [0x000000000320C030, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorGraphInternalState@@` -`class hkbBoneIndexArray`: VTable [0x000000000320C130, 0x0000000000000000 offset, 4 functions] `.?AVhkbBoneIndexArray@@` -`class hkbBoneWeightArray`: VTable [0x000000000320C190, 0x0000000000000000 offset, 4 functions] `.?AVhkbBoneWeightArray@@` -`class hkbCharacterStringData`: VTable [0x000000000320C210, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterStringData@@` -`class hkbFootIkDriverInfo`: VTable [0x000000000320C238, 0x0000000000000000 offset, 3 functions] `.?AVhkbFootIkDriverInfo@@` -`class hkbHandIkDriverInfo`: VTable [0x000000000320C260, 0x0000000000000000 offset, 3 functions] `.?AVhkbHandIkDriverInfo@@` -`class hkbMirroredSkeletonInfo`: VTable [0x000000000320C288, 0x0000000000000000 offset, 3 functions] `.?AVhkbMirroredSkeletonInfo@@` -`class hkbCondition`: VTable [0x000000000320C3F8, 0x0000000000000000 offset, 4 functions] `.?AVhkbCondition@@` -`class hkbCompiledExpressionSet`: VTable [0x000000000320C428, 0x0000000000000000 offset, 3 functions] `.?AVhkbCompiledExpressionSet@@` -`class hkbExpressionCondition`: VTable [0x000000000320C450, 0x0000000000000000 offset, 4 functions] `.?AVhkbExpressionCondition@@` -`class hkbStringCondition`: VTable [0x000000000320C4C0, 0x0000000000000000 offset, 4 functions] `.?AVhkbStringCondition@@` -`class hkbBehaviorReferenceGenerator`: VTable [0x000000000320C8E8, 0x0000000000000000 offset, 28 functions] `.?AVhkbBehaviorReferenceGenerator@@` -`class hkbBlenderGeneratorChild`: VTable [0x000000000320CA50, 0x0000000000000000 offset, 4 functions] `.?AVhkbBlenderGeneratorChild@@` -`class hkbBlenderGenerator`: VTable [0x000000000320CA80, 0x0000000000000000 offset, 28 functions] `.?AVhkbBlenderGenerator@@` -`class hkbBlenderGeneratorInternalState`: VTable [0x000000000320CC78, 0x0000000000000000 offset, 3 functions] `.?AVhkbBlenderGeneratorInternalState@@` -`class hkbClipTriggerArray`: VTable [0x000000000320CCF0, 0x0000000000000000 offset, 3 functions] `.?AVhkbClipTriggerArray@@` -`class hkbClipGeneratorInternalState`: VTable [0x000000000320CE68, 0x0000000000000000 offset, 3 functions] `.?AVhkbClipGeneratorInternalState@@` -`class hkbRegisteredGenerator`: VTable [0x000000000320CEE0, 0x0000000000000000 offset, 4 functions] `.?AVhkbRegisteredGenerator@@` -`class hkbManualSelectorGenerator`: VTable [0x000000000320CF50, 0x0000000000000000 offset, 28 functions] `.?AVhkbManualSelectorGenerator@@` -`class hkbManualSelectorGeneratorInternalState`: VTable [0x000000000320D0B0, 0x0000000000000000 offset, 3 functions] `.?AVhkbManualSelectorGeneratorInternalState@@` -`class hkbModifier`: VTable [0x000000000320D140, 0x0000000000000000 offset, 25 functions] `.?AVhkbModifier@@` -`class hkbModifierGenerator`: VTable [0x000000000320D240, 0x0000000000000000 offset, 28 functions] `.?AVhkbModifierGenerator@@` -`class hkbPoseMatchingGenerator`: VTable [0x000000000320D398, 0x0000000000000000 offset, 28 functions] `.?AVhkbPoseMatchingGenerator@@` -`class hkbPoseMatchingGeneratorInternalState`: VTable [0x000000000320D508, 0x0000000000000000 offset, 3 functions] `.?AVhkbPoseMatchingGeneratorInternalState@@` -`class hkbReferencePoseGenerator`: VTable [0x000000000320D590, 0x0000000000000000 offset, 28 functions] `.?AVhkbReferencePoseGenerator@@` -`class hkbAttachmentModifier`: VTable [0x000000000320D7A8, 0x0000000000000000 offset, 25 functions] `.?AVhkbAttachmentModifier@@` -`class hkbAttributeModifier`: VTable [0x000000000320D8E8, 0x0000000000000000 offset, 25 functions] `.?AVhkbAttributeModifier@@` -`class hkbCharacterControllerModifier`: VTable [0x000000000320DAD0, 0x0000000000000000 offset, 25 functions] `.?AVhkbCharacterControllerModifier@@` -`class hkbCharacterControllerModifierInternalState`: VTable [0x000000000320DC78, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterControllerModifierInternalState@@` -`class hkbCombineTransformsModifier`: VTable [0x000000000320DD10, 0x0000000000000000 offset, 25 functions] `.?AVhkbCombineTransformsModifier@@` -`class hkbCombineTransformsModifierInternalState`: VTable [0x000000000320DE60, 0x0000000000000000 offset, 3 functions] `.?AVhkbCombineTransformsModifierInternalState@@` -`class hkbComputeDirectionModifier`: VTable [0x000000000320DEF8, 0x0000000000000000 offset, 25 functions] `.?AVhkbComputeDirectionModifier@@` -`class hkbComputeDirectionModifierInternalState`: VTable [0x000000000320E048, 0x0000000000000000 offset, 3 functions] `.?AVhkbComputeDirectionModifierInternalState@@` -`class hkbComputeRotationFromAxisAngleModifier`: VTable [0x000000000320E0E0, 0x0000000000000000 offset, 25 functions] `.?AVhkbComputeRotationFromAxisAngleModifier@@` -`class hkbComputeRotationFromAxisAngleModifierInternalState`: VTable [0x000000000320E248, 0x0000000000000000 offset, 3 functions] `.?AVhkbComputeRotationFromAxisAngleModifierInternalState@@` -`class hkbComputeRotationToTargetModifier`: VTable [0x000000000320E2F0, 0x0000000000000000 offset, 25 functions] `.?AVhkbComputeRotationToTargetModifier@@` -`class hkbComputeRotationToTargetModifierInternalState`: VTable [0x000000000320E450, 0x0000000000000000 offset, 3 functions] `.?AVhkbComputeRotationToTargetModifierInternalState@@` -`class hkbDampingModifier`: VTable [0x000000000320E4F8, 0x0000000000000000 offset, 25 functions] `.?AVhkbDampingModifier@@` -`class hkbDampingModifierInternalState`: VTable [0x000000000320E628, 0x0000000000000000 offset, 3 functions] `.?AVhkbDampingModifierInternalState@@` -`class hkbModifierWrapper`: VTable [0x000000000320E6A0, 0x0000000000000000 offset, 25 functions] `.?AVhkbModifierWrapper@@` -`class hkbDelayedModifier`: VTable [0x000000000320E7A0, 0x0000000000000000 offset, 25 functions] `.?AVhkbDelayedModifier@@` -`class hkbDelayedModifierInternalState`: VTable [0x000000000320E8D0, 0x0000000000000000 offset, 3 functions] `.?AVhkbDelayedModifierInternalState@@` -`class hkbDetectCloseToGroundModifier`: VTable [0x000000000320E948, 0x0000000000000000 offset, 25 functions] `.?AVhkbDetectCloseToGroundModifier@@` -`class hkbDetectCloseToGroundModifierInternalState`: VTable [0x000000000320EA98, 0x0000000000000000 offset, 3 functions] `.?AVhkbDetectCloseToGroundModifierInternalState@@` -`class hkbExpressionDataArray`: VTable [0x000000000320EB30, 0x0000000000000000 offset, 3 functions] `.?AVhkbExpressionDataArray@@` -`class hkbEvaluateExpressionModifier`: VTable [0x000000000320EB58, 0x0000000000000000 offset, 25 functions] `.?AVhkbEvaluateExpressionModifier@@` -`class hkbEvaluateExpressionModifierInternalState`: VTable [0x000000000320EDA0, 0x0000000000000000 offset, 3 functions] `.?AVhkbEvaluateExpressionModifierInternalState@@` -`class hkbEvaluateHandleModifier`: VTable [0x000000000320EE38, 0x0000000000000000 offset, 25 functions] `.?AVhkbEvaluateHandleModifier@@` -`class hkbEventDrivenModifier`: VTable [0x000000000320EFD8, 0x0000000000000000 offset, 25 functions] `.?AVhkbEventDrivenModifier@@` -`class hkbEventDrivenModifierInternalState`: VTable [0x000000000320F118, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventDrivenModifierInternalState@@` -`class hkbEventRangeDataArray`: VTable [0x000000000320F1A0, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventRangeDataArray@@` -`class hkbEventsFromRangeModifier`: VTable [0x000000000320F1C8, 0x0000000000000000 offset, 25 functions] `.?AVhkbEventsFromRangeModifier@@` -`class hkbEventsFromRangeModifierInternalState`: VTable [0x000000000320F380, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventsFromRangeModifierInternalState@@` -`class hkbFootIkControlsModifier`: VTable [0x000000000320F450, 0x0000000000000000 offset, 25 functions] `.?AVhkbFootIkControlsModifier@@` -`class hkbFootIkModifier`: VTable [0x000000000320F610, 0x0000000000000000 offset, 25 functions] `.?AVhkbFootIkModifier@@` -`class hkbGetHandleOnBoneModifier`: VTable [0x000000000320F838, 0x0000000000000000 offset, 25 functions] `.?AVhkbGetHandleOnBoneModifier@@` -`class hkbGetUpModifier`: VTable [0x000000000320F980, 0x0000000000000000 offset, 25 functions] `.?AVhkbGetUpModifier@@` -`class hkbGetUpModifierInternalState`: VTable [0x000000000320FAB0, 0x0000000000000000 offset, 3 functions] `.?AVhkbGetUpModifierInternalState@@` -`class hkbGetWorldFromModelModifier`: VTable [0x000000000320FB28, 0x0000000000000000 offset, 25 functions] `.?AVhkbGetWorldFromModelModifier@@` -`class hkbGetWorldFromModelModifierInternalState`: VTable [0x000000000320FC78, 0x0000000000000000 offset, 3 functions] `.?AVhkbGetWorldFromModelModifierInternalState@@` -`class hkbHandIkControlsModifier`: VTable [0x000000000320FD58, 0x0000000000000000 offset, 25 functions] `.?AVhkbHandIkControlsModifier@@` -`class hkbHandIkModifier`: VTable [0x000000000320FEE8, 0x0000000000000000 offset, 25 functions] `.?AVhkbHandIkModifier@@` -`class hkbModifierList`: VTable [0x0000000003210070, 0x0000000000000000 offset, 25 functions] `.?AVhkbModifierList@@` -`class hkbLookAtModifier`: VTable [0x00000000032101A0, 0x0000000000000000 offset, 25 functions] `.?AVhkbLookAtModifier@@` -`class hkbLookAtModifierInternalState`: VTable [0x00000000032102D0, 0x0000000000000000 offset, 3 functions] `.?AVhkbLookAtModifierInternalState@@` -`class hkbMirrorModifier`: VTable [0x0000000003210348, 0x0000000000000000 offset, 25 functions] `.?AVhkbMirrorModifier@@` -`class hkbMoveCharacterModifier`: VTable [0x0000000003210478, 0x0000000000000000 offset, 25 functions] `.?AVhkbMoveCharacterModifier@@` -`class hkbMoveCharacterModifierInternalState`: VTable [0x00000000032105B8, 0x0000000000000000 offset, 3 functions] `.?AVhkbMoveCharacterModifierInternalState@@` -`class hkbProxyModifier`: VTable [0x0000000003210640, 0x0000000000000000 offset, 25 functions] `.?AVhkbProxyModifier@@` -`class hkbExtractRagdollPoseModifier`: VTable [0x0000000003210918, 0x0000000000000000 offset, 25 functions] `.?AVhkbExtractRagdollPoseModifier@@` -`class hkbKeyframeBonesModifier`: VTable [0x0000000003210A68, 0x0000000000000000 offset, 25 functions] `.?AVhkbKeyframeBonesModifier@@` -`class hkbPoweredRagdollControlsModifier`: VTable [0x0000000003210C58, 0x0000000000000000 offset, 25 functions] `.?AVhkbPoweredRagdollControlsModifier@@` -`class hkbRigidBodyRagdollControlsModifier`: VTable [0x0000000003210E00, 0x0000000000000000 offset, 25 functions] `.?AVhkbRigidBodyRagdollControlsModifier@@` -`class hkbRotateCharacterModifier`: VTable [0x0000000003210FA0, 0x0000000000000000 offset, 25 functions] `.?AVhkbRotateCharacterModifier@@` -`class hkbRotateCharacterModifierInternalState`: VTable [0x00000000032110E8, 0x0000000000000000 offset, 3 functions] `.?AVhkbRotateCharacterModifierInternalState@@` -`class hkbSenseHandleModifier`: VTable [0x0000000003211178, 0x0000000000000000 offset, 25 functions] `.?AVhkbSenseHandleModifier@@` -`class hkbSetWorldFromModelModifier`: VTable [0x0000000003211390, 0x0000000000000000 offset, 25 functions] `.?AVhkbSetWorldFromModelModifier@@` -`class hkbTimerModifier`: VTable [0x00000000032114E0, 0x0000000000000000 offset, 25 functions] `.?AVhkbTimerModifier@@` -`class hkbTimerModifierInternalState`: VTable [0x0000000003211610, 0x0000000000000000 offset, 3 functions] `.?AVhkbTimerModifierInternalState@@` -`class hkbTransformVectorModifier`: VTable [0x0000000003211688, 0x0000000000000000 offset, 25 functions] `.?AVhkbTransformVectorModifier@@` -`class hkbTransformVectorModifierInternalState`: VTable [0x00000000032117D0, 0x0000000000000000 offset, 3 functions] `.?AVhkbTransformVectorModifierInternalState@@` -`class hkbTwistModifier`: VTable [0x0000000003211860, 0x0000000000000000 offset, 25 functions] `.?AVhkbTwistModifier@@` -`class hkbSequenceStringData`: VTable [0x0000000003211AE0, 0x0000000000000000 offset, 3 functions] `.?AVhkbSequenceStringData@@` -`class hkbSequence`: VTable [0x0000000003211B08, 0x0000000000000000 offset, 25 functions] `.?AVhkbSequence@@` -`class hkbSequenceInternalState`: VTable [0x0000000003211C28, 0x0000000000000000 offset, 3 functions] `.?AVhkbSequenceInternalState@@` -`class hkbSequencedData`: VTable [0x0000000003211CD0, 0x0000000000000000 offset, 4 functions] `.?AVhkbSequencedData@@` -`class hkbEventSequencedData`: VTable [0x0000000003211D00, 0x0000000000000000 offset, 4 functions] `.?AVhkbEventSequencedData@@` -`class hkbRealVariableSequencedData`: VTable [0x0000000003211D30, 0x0000000000000000 offset, 4 functions] `.?AVhkbRealVariableSequencedData@@` -`class hkbBoolVariableSequencedData`: VTable [0x0000000003211D60, 0x0000000000000000 offset, 4 functions] `.?AVhkbBoolVariableSequencedData@@` -`class hkbIntVariableSequencedData`: VTable [0x0000000003211D90, 0x0000000000000000 offset, 4 functions] `.?AVhkbIntVariableSequencedData@@` -`class hkbStateListener`: VTable [0x0000000003212098, 0x0000000000000000 offset, 7 functions] `.?AVhkbStateListener@@` -`class hkbStateMachine::TransitionInfoArray`: VTable [0x0000000003212118, 0x0000000000000000 offset, 3 functions] `.?AVTransitionInfoArray@hkbStateMachine@@` -`class hkbStateMachine::EventPropertyArray`: VTable [0x0000000003212140, 0x0000000000000000 offset, 3 functions] `.?AVEventPropertyArray@hkbStateMachine@@` -`class hkbStateMachine::StateInfo`: VTable [0x0000000003212168, 0x0000000000000000 offset, 4 functions] `.?AVStateInfo@hkbStateMachine@@` -`class hkbStateMachineInternalState`: VTable [0x00000000032125C8, 0x0000000000000000 offset, 3 functions] `.?AVhkbStateMachineInternalState@@` -`class hkbBlendingTransitionEffect`: VTable [0x0000000003212640, 0x0000000000000000 offset, 39 functions] `.?AVhkbBlendingTransitionEffect@@` -`class hkbBlendingTransitionEffectInternalState`: VTable [0x0000000003212830, 0x0000000000000000 offset, 3 functions] `.?AVhkbBlendingTransitionEffectInternalState@@` -`class hkbGeneratorTransitionEffect`: VTable [0x00000000032128C8, 0x0000000000000000 offset, 33 functions] `.?AVhkbGeneratorTransitionEffect@@` -`class hkbGeneratorTransitionEffectInternalState`: VTable [0x0000000003212A60, 0x0000000000000000 offset, 3 functions] `.?AVhkbGeneratorTransitionEffectInternalState@@` -`class hkbClipGenerator`: VTable [0x0000000003212E00, 0x0000000000000000 offset, 28 functions] `.?AVhkbClipGenerator@@` -`class hkbStateMachine`: VTable [0x0000000003213288, 0x0000000000000000 offset, 28 functions] `.?AVhkbStateMachine@@` -`class hkbAnimationBindingWithTriggers`: VTable [0x0000000003213848, 0x0000000000000000 offset, 3 functions] `.?AVhkbAnimationBindingWithTriggers@@` -`class hkbFootIkDriver`: VTable [0x00000000032138A0, 0x0000000000000000 offset, 3 functions] `.?AVhkbFootIkDriver@@` -`class hkbHandIkDriver`: VTable [0x0000000003213960, 0x0000000000000000 offset, 3 functions] `.?AVhkbHandIkDriver@@` -`class hkbWorld`: VTable [0x00000000032139C0, 0x0000000000000000 offset, 3 functions] `.?AVhkbWorld@@` -`class hkbSceneModifier`: VTable [0x00000000032139E8, 0x0000000000000000 offset, 4 functions] `.?AVhkbSceneModifier@@` -`class hkbFootIkSceneModifier`: VTable [0x0000000003213A18, 0x0000000000000000 offset, 4 functions] `.?AVhkbFootIkSceneModifier@@` -`class hkbHandIkSceneModifier`: VTable [0x0000000003213A48, 0x0000000000000000 offset, 4 functions] `.?AVhkbHandIkSceneModifier@@` -`class hkbHandIkFixupSceneModifier`: VTable [0x0000000003213A78, 0x0000000000000000 offset, 4 functions] `.?AVhkbHandIkFixupSceneModifier@@` -`class hkbCharacterSetup`: VTable [0x0000000003213B60, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterSetup@@` -`class hkbProjectData`: VTable [0x0000000003213B88, 0x0000000000000000 offset, 3 functions] `.?AVhkbProjectData@@` -`class hkbCharacterData`: VTable [0x0000000003213BD0, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterData@@` -`class hkpCharacterControllerCinfo`: VTable [0x00000000032148B0, 0x0000000000000000 offset, 3 functions] `.?AVhkpCharacterControllerCinfo@@` -`class hkpCharacterProxyCinfo`: VTable [0x00000000032148D8, 0x0000000000000000 offset, 3 functions] `.?AVhkpCharacterProxyCinfo@@` -`class hkbAttachmentSceneModifier`: VTable [0x0000000003215100, 0x0000000000000000 offset, 4 functions] `.?AVhkbAttachmentSceneModifier@@` -`class hkbAttachmentFixupSceneModifier`: VTable [0x0000000003215130, 0x0000000000000000 offset, 4 functions] `.?AVhkbAttachmentFixupSceneModifier@@` -`class hkbRagdollSceneModifier`: VTable [0x0000000003215160, 0x0000000000000000 offset, 4 functions] `.?AVhkbRagdollSceneModifier@@` -`class hkbCharacterControllerSceneModifier`: VTable [0x0000000003215190, 0x0000000000000000 offset, 4 functions] `.?AVhkbCharacterControllerSceneModifier@@` -`class hkLocalFrameCollector`: VTable [0x0000000003215730, 0x0000000000000000 offset, 4 functions] `.?AVhkLocalFrameCollector@@` -`class hkbClosestLocalFrameCollector`: VTable [0x0000000003215760, 0x0000000000000000 offset, 4 functions] `.?AVhkbClosestLocalFrameCollector@@` -`class hkbDefaultRaycastInterface`: VTable [0x0000000003215920, 0x0000000000000000 offset, 3 functions] `.?AVhkbDefaultRaycastInterface@@` -`class hkbDefaultRaycastInterface`: VTable [0x0000000003215948, 0x0000000000000010 offset, 3 functions] `.?AVhkbDefaultRaycastInterface@@` -`class hkbSymbolIdMap`: VTable [0x0000000003215980, 0x0000000000000000 offset, 3 functions] `.?AVhkbSymbolIdMap@@` -`class hkgpConvexHull`: VTable [0x0000000003215A50, 0x0000000000000000 offset, 3 functions] `.?AVhkgpConvexHull@@` -`class hkgpAbstractMesh`: VTable [0x0000000003215A78, 0x0000000000000000 offset, 4 functions] `.?AV?$hkgpAbstractMesh@UEdge@hkgpConvexHullImpl@@UVertex@2@UTriangle@2@UhkContainerHeapAllocator@@@@` -`class hkAabbTree`: VTable [0x0000000003215F10, 0x0000000000000000 offset, 1 functions] `.?AV?$hkAabbTree@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::Collector`: VTable [0x0000000003215F28, 0x0000000000000000 offset, 2 functions] `.?AUCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::ClosestPointCollector`: VTable [0x0000000003215F48, 0x0000000000000000 offset, 2 functions] `.?AUClosestPointCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkGeometryProcessingInternals::NearestFeaturePolicy`: VTable [0x0000000003215F68, 0x0000000000000000 offset, 2 functions] `.?AUNearestFeaturePolicy@hkGeometryProcessingInternals@@` -`struct hkGeometryProcessing::IFunction`: VTable [0x0000000003215FC0, 0x0000000000000000 offset, 2 functions] `.?AU?$IFunction@VhkVector4@@M@hkGeometryProcessing@@` -`struct hkGeometryProcessing::ConstFunction >`: VTable [0x0000000003215FE0, 0x0000000000000000 offset, 2 functions] `.?AU?$ConstFunction@U?$IFunction@VhkVector4@@M@hkGeometryProcessing@@@hkGeometryProcessing@@` -`class hkAabbTree`: VTable [0x0000000003216020, 0x0000000000000000 offset, 1 functions] `.?AV?$hkAabbTree@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`class hkAabbTree`: VTable [0x0000000003216038, 0x0000000000000000 offset, 1 functions] `.?AV?$hkAabbTree@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`class hkAabbTree`: VTable [0x0000000003216050, 0x0000000000000000 offset, 1 functions] `.?AV?$hkAabbTree@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::TreeTreeCollector`: VTable [0x0000000003216080, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::Collector`: VTable [0x00000000032160A0, 0x0000000000000000 offset, 2 functions] `.?AUCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::ClosestPointCollector`: VTable [0x00000000032160C0, 0x0000000000000000 offset, 2 functions] `.?AUClosestPointCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::TreeTreeNodePairCollector`: VTable [0x00000000032160E0, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeNodePairCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::AllHitsCollector`: VTable [0x0000000003216100, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::AllHitsNodeCollector`: VTable [0x0000000003216120, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsNodeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::TreeTreeCollector`: VTable [0x0000000003216140, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::Collector`: VTable [0x0000000003216160, 0x0000000000000000 offset, 2 functions] `.?AUCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::ClosestPointCollector`: VTable [0x0000000003216180, 0x0000000000000000 offset, 2 functions] `.?AUClosestPointCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::TreeTreeNodePairCollector`: VTable [0x00000000032161A0, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeNodePairCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::AllHitsCollector`: VTable [0x00000000032161C0, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::AllHitsNodeCollector`: VTable [0x00000000032161E0, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsNodeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::TreeTreeCollector`: VTable [0x0000000003216200, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::TreeTreeNodePairCollector`: VTable [0x0000000003216220, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeNodePairCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::AllHitsCollector`: VTable [0x0000000003216240, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::AllHitsNodeCollector`: VTable [0x0000000003216260, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsNodeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::TreeTreeCollector`: VTable [0x0000000003216280, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::Collector`: VTable [0x00000000032162A0, 0x0000000000000000 offset, 2 functions] `.?AUCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::ClosestPointCollector`: VTable [0x00000000032162C0, 0x0000000000000000 offset, 2 functions] `.?AUClosestPointCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::TreeTreeNodePairCollector`: VTable [0x00000000032162E0, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeNodePairCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::AllHitsCollector`: VTable [0x0000000003216300, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::AllHitsNodeCollector`: VTable [0x0000000003216320, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsNodeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`class hkgpTriangulatorBase`: VTable [0x0000000003216370, 0x0000000000000000 offset, 3 functions] `.?AVhkgpTriangulatorBase@@` -`struct hkgpJobQueue::IJob`: VTable [0x0000000003216398, 0x0000000000000000 offset, 2 functions] `.?AUIJob@hkgpJobQueue@@` -`class hkgpAbstractMesh`: VTable [0x00000000032163B8, 0x0000000000000000 offset, 4 functions] `.?AV?$hkgpAbstractMesh@UEdge@hkgpMeshBase@@UVertex@2@UTriangle@2@UhkContainerHeapAllocator@@@@` -`class hkgpMesh::IConvexOverlap::IConvexShape`: VTable [0x00000000032163E8, 0x0000000000000000 offset, 4 functions] `.?AVIConvexShape@IConvexOverlap@hkgpMesh@@` -`class hkgpMesh::IConvexOverlap`: VTable [0x0000000003216418, 0x0000000000000000 offset, 3 functions] `.?AVIConvexOverlap@hkgpMesh@@` -`struct hkgpMesh::TriangleShape`: VTable [0x0000000003216440, 0x0000000000000000 offset, 4 functions] `.?AUTriangleShape@hkgpMesh@@` -`struct hkgpMesh::ExternShape`: VTable [0x0000000003216470, 0x0000000000000000 offset, 4 functions] `.?AUExternShape@hkgpMesh@@` -`struct hkgpMesh::CollideShapeTriangle`: VTable [0x00000000032164A0, 0x0000000000000000 offset, 2 functions] `.?AUCollideShapeTriangle@hkgpMesh@@` -`struct hkgpMesh::NearestFeaturePolicy`: VTable [0x00000000032164C0, 0x0000000000000000 offset, 2 functions] `.?AUNearestFeaturePolicy@hkgpMesh@@` -`class hkgpMesh`: VTable [0x00000000032164E0, 0x0000000000000000 offset, 4 functions] `.?AVhkgpMesh@@` -`struct hkGskShape`: VTable [0x00000000032165C0, 0x0000000000000000 offset, 3 functions] `.?AUhkGskShape@@` -`class hkgpAbstractMesh,struct hkgpTriangulatorBase::SparseEdgeDataPolicy,struct hkContainerHeapAllocator>,-1,4,15,0>::Edge,struct hkgpTriangulatorType,struct hkgpTriangulatorBase::SparseEdgeDataPolicy,struct hkContainerHeapAllocator>,-1,4,15,0>::Vertex,struct hkgpTriangulatorType,struct hkgpTriangulatorBase::SparseEdgeDataPolicy,struct hkContainerHeapAllocator>,-1,4,15,0>::Triangle,struct hkContainerHeapAllocator>`: VTable [0x0000000003216698, 0x0000000000000000 offset, 4 functions] `.?AV?$hkgpAbstractMesh@UEdge@?$hkgpTriangulatorType@UhkContainerHeapAllocator@@UVertexBase@hkgpTriangulatorBase@@UTriangleBase@3@U?$DefaultEdgeData@UhkContainerHeapAllocator@@@3@U?$SparseEdgeDataPolicy@U?$DefaultEdgeData@UhkContainerHeapAllocator@@@hkgpTriangulatorBase@@UhkContainerHeapAllocator@@@3@$0?0$03$0P@$0A@@@UVertex@2@UTriangle@2@UhkContainerHeapAllocator@@@@` -`class hkgpTriangulatorType,struct hkgpTriangulatorBase::SparseEdgeDataPolicy,struct hkContainerHeapAllocator>,-1,4,15,0>`: VTable [0x00000000032166C8, 0x0000000000000000 offset, 3 functions] `.?AV?$hkgpTriangulatorType@UhkContainerHeapAllocator@@UVertexBase@hkgpTriangulatorBase@@UTriangleBase@3@U?$DefaultEdgeData@UhkContainerHeapAllocator@@@3@U?$SparseEdgeDataPolicy@U?$DefaultEdgeData@UhkContainerHeapAllocator@@@hkgpTriangulatorBase@@UhkContainerHeapAllocator@@@3@$0?0$03$0P@$0A@@@` -`struct hkgpMeshInternals::SimpleCollector`: VTable [0x00000000032166F0, 0x0000000000000000 offset, 2 functions] `.?AUSimpleCollector@hkgpMeshInternals@@` -`struct hkgpMeshInternals::TriangleOverlap`: VTable [0x0000000003216710, 0x0000000000000000 offset, 2 functions] `.?AUTriangleOverlap@hkgpMeshInternals@@` -`struct hkgpMeshInternals::RayCaster`: VTable [0x0000000003216730, 0x0000000000000000 offset, 2 functions] `.?AURayCaster@hkgpMeshInternals@@` -`struct IConvexOverlapImpl::ShapeBridge`: VTable [0x0000000003216750, 0x0000000000000000 offset, 3 functions] `.?AUShapeBridge@IConvexOverlapImpl@@` -`struct IConvexOverlapImpl`: VTable [0x0000000003216778, 0x0000000000000000 offset, 3 functions] `.?AUIConvexOverlapImpl@@` -`struct hkgpJobQueue::Box`: VTable [0x0000000003216A40, 0x0000000000000000 offset, 2 functions] `.?AU?$Box@UHandle@ConcaveEdgeJob@hkgpMeshInternals@@@hkgpJobQueue@@` -`class hkVtableClassRegistry`: VTable [0x0000000003216CB8, 0x0000000000000000 offset, 6 functions] `.?AVhkVtableClassRegistry@@` -`class hkDynamicClassNameRegistry`: VTable [0x0000000003216D00, 0x0000000000000000 offset, 11 functions] `.?AVhkDynamicClassNameRegistry@@` -`class hkDefaultBuiltinTypeRegistry`: VTable [0x0000000003216D90, 0x0000000000000000 offset, 8 functions] `.?AVhkDefaultBuiltinTypeRegistry@@` -`class hkDefaultClassNameRegistry`: VTable [0x0000000003216E08, 0x0000000000000000 offset, 11 functions] `.?AVhkDefaultClassNameRegistry@@` -`class hkBuiltinTypeRegistry`: VTable [0x0000000003216E98, 0x0000000000000000 offset, 8 functions] `.?AVhkBuiltinTypeRegistry@@` -`class hkClassNameRegistry`: VTable [0x0000000003216EF0, 0x0000000000000000 offset, 6 functions] `.?AVhkClassNameRegistry@@` -`class hkTypeInfoRegistry`: VTable [0x0000000003216F38, 0x0000000000000000 offset, 8 functions] `.?AVhkTypeInfoRegistry@@` -`class hkObjectCopier`: VTable [0x0000000003217B98, 0x0000000000000000 offset, 6 functions] `.?AVhkObjectCopier@@` -`class hkStaticClassNameRegistry`: VTable [0x0000000003217D20, 0x0000000000000000 offset, 6 functions] `.?AVhkStaticClassNameRegistry@@` -`class hkResourceBase`: VTable [0x0000000003217D68, 0x0000000000000000 offset, 5 functions] `.?AVhkResourceBase@@` -`class hkResourceHandle`: VTable [0x0000000003217DA8, 0x0000000000000000 offset, 14 functions] `.?AVhkResourceHandle@@` -`class hkResourceContainer`: VTable [0x0000000003217E38, 0x0000000000000000 offset, 16 functions] `.?AVhkResourceContainer@@` -`class hkResourceMap`: VTable [0x0000000003217EE0, 0x0000000000000000 offset, 2 functions] `.?AVhkResourceMap@@` -`class hkMemoryResourceHandle`: VTable [0x0000000003217F00, 0x0000000000000000 offset, 14 functions] `.?AVhkMemoryResourceHandle@@` -`class hkMemoryResourceContainer`: VTable [0x0000000003217F90, 0x0000000000000000 offset, 16 functions] `.?AVhkMemoryResourceContainer@@` -`class hkContainerResourceMap`: VTable [0x0000000003218038, 0x0000000000000000 offset, 2 functions] `.?AVhkContainerResourceMap@@` -`class hkDebugDisplay`: VTable [0x0000000003218160, 0x0000000000000000 offset, 3 functions] `.?AVhkDebugDisplay@@` -`class hkpShapeContainer`: VTable [0x0000000003218358, 0x0000000000000000 offset, 7 functions] `.?AVhkpShapeContainer@@` -`class hkpSingleShapeContainer`: VTable [0x00000000032183A8, 0x0000000000000000 offset, 7 functions] `.?AVhkpSingleShapeContainer@@` -`class hkpBvShape`: VTable [0x00000000032183F8, 0x0000000000000000 offset, 11 functions] `.?AVhkpBvShape@@` -`class hkpSphereRepShape`: VTable [0x0000000003218660, 0x0000000000000000 offset, 13 functions] `.?AVhkpSphereRepShape@@` -`class hkpConvexShape`: VTable [0x00000000032186E8, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexShape@@` -`class hkpSphereShape`: VTable [0x00000000032187A0, 0x0000000000000000 offset, 18 functions] `.?AVhkpSphereShape@@` -`class hkpCapsuleShape`: VTable [0x00000000032188A0, 0x0000000000000000 offset, 18 functions] `.?AVhkpCapsuleShape@@` -`class hkpCollidableCollidableFilter`: VTable [0x0000000003218968, 0x0000000000000000 offset, 2 functions] `.?AVhkpCollidableCollidableFilter@@` -`class hkpRayCollidableFilter`: VTable [0x0000000003218988, 0x0000000000000000 offset, 2 functions] `.?AVhkpRayCollidableFilter@@` -`class hkpShapeCollectionFilter`: VTable [0x00000000032189A8, 0x0000000000000000 offset, 4 functions] `.?AVhkpShapeCollectionFilter@@` -`class hkpRayShapeCollectionFilter`: VTable [0x00000000032189D8, 0x0000000000000000 offset, 2 functions] `.?AVhkpRayShapeCollectionFilter@@` -`class hkpGroupFilter`: VTable [0x00000000032189F8, 0x0000000000000000 offset, 5 functions] `.?AVhkpGroupFilter@@` -`class hkpGroupFilter`: VTable [0x0000000003218A38, 0x0000000000000010 offset, 2 functions] `.?AVhkpGroupFilter@@` -`class hkpGroupFilter`: VTable [0x0000000003218A58, 0x0000000000000018 offset, 4 functions] `.?AVhkpGroupFilter@@` -`class hkpGroupFilter`: VTable [0x0000000003218A88, 0x0000000000000020 offset, 2 functions] `.?AVhkpGroupFilter@@` -`class hkpGroupFilter`: VTable [0x0000000003218AA8, 0x0000000000000028 offset, 2 functions] `.?AVhkpGroupFilter@@` -`class hkpConvexListFilter`: VTable [0x000000000321B208, 0x0000000000000000 offset, 4 functions] `.?AVhkpConvexListFilter@@` -`class hkpDefaultConvexListFilter`: VTable [0x000000000321B238, 0x0000000000000000 offset, 4 functions] `.?AVhkpDefaultConvexListFilter@@` -`class hkpCollisionFilter`: VTable [0x000000000321B2B0, 0x0000000000000000 offset, 4 functions] `.?AVhkpCollisionFilter@@` -`class hkpCollisionFilter`: VTable [0x000000000321B2E0, 0x0000000000000010 offset, 2 functions] `.?AVhkpCollisionFilter@@` -`class hkpCollisionFilter`: VTable [0x000000000321B300, 0x0000000000000018 offset, 4 functions] `.?AVhkpCollisionFilter@@` -`class hkpCollisionFilter`: VTable [0x000000000321B330, 0x0000000000000020 offset, 2 functions] `.?AVhkpCollisionFilter@@` -`class hkpCollisionFilter`: VTable [0x000000000321B350, 0x0000000000000028 offset, 2 functions] `.?AVhkpCollisionFilter@@` -`class hkpCollisionFilterList`: VTable [0x000000000321B3A0, 0x0000000000000000 offset, 4 functions] `.?AVhkpCollisionFilterList@@` -`class hkpCollisionFilterList`: VTable [0x000000000321B3D0, 0x0000000000000010 offset, 2 functions] `.?AVhkpCollisionFilterList@@` -`class hkpCollisionFilterList`: VTable [0x000000000321B3F0, 0x0000000000000018 offset, 4 functions] `.?AVhkpCollisionFilterList@@` -`class hkpCollisionFilterList`: VTable [0x000000000321B420, 0x0000000000000020 offset, 2 functions] `.?AVhkpCollisionFilterList@@` -`class hkpCollisionFilterList`: VTable [0x000000000321B440, 0x0000000000000028 offset, 2 functions] `.?AVhkpCollisionFilterList@@` -`class hkpNullCollisionFilter`: VTable [0x000000000321B4A0, 0x0000000000000000 offset, 4 functions] `.?AVhkpNullCollisionFilter@@` -`class hkpNullCollisionFilter`: VTable [0x000000000321B4D0, 0x0000000000000010 offset, 2 functions] `.?AVhkpNullCollisionFilter@@` -`class hkpNullCollisionFilter`: VTable [0x000000000321B4F0, 0x0000000000000018 offset, 4 functions] `.?AVhkpNullCollisionFilter@@` -`class hkpNullCollisionFilter`: VTable [0x000000000321B520, 0x0000000000000020 offset, 2 functions] `.?AVhkpNullCollisionFilter@@` -`class hkpNullCollisionFilter`: VTable [0x000000000321B540, 0x0000000000000028 offset, 2 functions] `.?AVhkpNullCollisionFilter@@` -`class hkpMoppModifier`: VTable [0x000000000321B730, 0x0000000000000000 offset, 3 functions] `.?AVhkpMoppModifier@@` -`class hkpRemoveTerminalsMoppModifier`: VTable [0x000000000321B758, 0x0000000000000000 offset, 3 functions] `.?AVhkpRemoveTerminalsMoppModifier@@` -`class hkpRemoveTerminalsMoppModifier`: VTable [0x000000000321B780, 0x0000000000000010 offset, 3 functions] `.?AVhkpRemoveTerminalsMoppModifier@@` -`class hkpBvTreeShape`: VTable [0x000000000321B7F8, 0x0000000000000000 offset, 13 functions] `.?AVhkpBvTreeShape@@` -`class hkMoppBvTreeShapeBase`: VTable [0x000000000321B880, 0x0000000000000000 offset, 14 functions] `.?AVhkMoppBvTreeShapeBase@@` -`class hkpMoppBvTreeShape`: VTable [0x000000000321B910, 0x0000000000000000 offset, 14 functions] `.?AVhkpMoppBvTreeShape@@` -`class hkpConvexTransformShapeBase`: VTable [0x000000000321BA08, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexTransformShapeBase@@` -`class hkpBoxShape`: VTable [0x000000000321BAC0, 0x0000000000000000 offset, 18 functions] `.?AVhkpBoxShape@@` -`class hkpConvexTransformShape`: VTable [0x000000000321BBC8, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexTransformShape@@` -`class hkpConvexTranslateShape`: VTable [0x000000000321BCC0, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexTranslateShape@@` -`class hkpConvexVerticesConnectivity`: VTable [0x000000000321BDB8, 0x0000000000000000 offset, 4 functions] `.?AVhkpConvexVerticesConnectivity@@` -`class hkpTriangleShape`: VTable [0x000000000321BE98, 0x0000000000000000 offset, 18 functions] `.?AVhkpTriangleShape@@` -`class hkpConvexListShape`: VTable [0x000000000321BFF0, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexListShape@@` -`class hkpConvexListShape`: VTable [0x000000000321C0A8, 0x0000000000000028 offset, 7 functions] `.?AVhkpConvexListShape@@` -`class hkpMultiSphereShape`: VTable [0x000000000321C128, 0x0000000000000000 offset, 13 functions] `.?AVhkpMultiSphereShape@@` -`class hkpMultiRayShape`: VTable [0x000000000321C220, 0x0000000000000000 offset, 11 functions] `.?AVhkpMultiRayShape@@` -`class hkpTransformShape`: VTable [0x000000000321C320, 0x0000000000000000 offset, 11 functions] `.?AVhkpTransformShape@@` -`class hkpShapeInfo`: VTable [0x000000000321C470, 0x0000000000000000 offset, 3 functions] `.?AVhkpShapeInfo@@` -`class hkpShapeCollection`: VTable [0x000000000321C4E8, 0x0000000000000000 offset, 13 functions] `.?AVhkpShapeCollection@@` -`class hkpShapeCollection`: VTable [0x000000000321C570, 0x0000000000000020 offset, 7 functions] `.?AVhkpShapeCollection@@` -`class hkpListShape`: VTable [0x000000000321C5C0, 0x0000000000000000 offset, 13 functions] `.?AVhkpListShape@@` -`class hkpListShape`: VTable [0x000000000321C648, 0x0000000000000020 offset, 7 functions] `.?AVhkpListShape@@` -`class hkpRemoveTerminalsMoppModifier2`: VTable [0x000000000321C6D0, 0x0000000000000000 offset, 3 functions] `.?AVhkpRemoveTerminalsMoppModifier2@@` -`class hkpRemoveTerminalsMoppModifier2`: VTable [0x000000000321C6F8, 0x0000000000000010 offset, 3 functions] `.?AVhkpRemoveTerminalsMoppModifier2@@` -`class hkpCylinderShape`: VTable [0x000000000321C878, 0x0000000000000000 offset, 18 functions] `.?AVhkpCylinderShape@@` -`class hkpContactMgrFactory`: VTable [0x000000000321CA78, 0x0000000000000000 offset, 4 functions] `.?AVhkpContactMgrFactory@@` -`class hkpContactMgr`: VTable [0x000000000321CAC8, 0x0000000000000000 offset, 10 functions] `.?AVhkpContactMgr@@` -`class hkpNullContactMgr`: VTable [0x000000000321CB38, 0x0000000000000000 offset, 10 functions] `.?AVhkpNullContactMgr@@` -`class hkpNullContactMgrFactory`: VTable [0x000000000321CBA8, 0x0000000000000000 offset, 4 functions] `.?AVhkpNullContactMgrFactory@@` -`class hkpBroadPhaseListener`: VTable [0x000000000321CBD8, 0x0000000000000000 offset, 3 functions] `.?AVhkpBroadPhaseListener@@` -`class hkpSimpleWorldRayCaster`: VTable [0x000000000321CC00, 0x0000000000000000 offset, 2 functions] `.?AVhkpSimpleWorldRayCaster@@` -`class hkpWorldLinearCaster`: VTable [0x000000000321CC20, 0x0000000000000000 offset, 2 functions] `.?AVhkpWorldLinearCaster@@` -`class hkpWorld`: VTable [0x000000000321CC40, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorld@@` -`class hkpPhantomBroadPhaseListener`: VTable [0x000000000321CC68, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhantomBroadPhaseListener@@` -`class hkpPhantomBroadPhaseListener`: VTable [0x000000000321CC90, 0x0000000000000010 offset, 3 functions] `.?AVhkpPhantomBroadPhaseListener@@` -`class hkpBroadPhaseBorderListener`: VTable [0x000000000321CCB8, 0x0000000000000000 offset, 3 functions] `.?AVhkpBroadPhaseBorderListener@@` -`class hkpBroadPhaseBorderListener`: VTable [0x000000000321CCE0, 0x0000000000000010 offset, 3 functions] `.?AVhkpBroadPhaseBorderListener@@` -`class hkpWorldPostSimulationListener`: VTable [0x000000000321CD08, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldPostSimulationListener@@` -`class hkpConstraintListener`: VTable [0x000000000321CD30, 0x0000000000000000 offset, 7 functions] `.?AVhkpConstraintListener@@` -`class hkpCollisionCallbackUtil`: VTable [0x000000000321CD80, 0x0000000000000000 offset, 5 functions] `.?AVhkpCollisionCallbackUtil@@` -`class hkpCollisionCallbackUtil`: VTable [0x000000000321CDC0, 0x0000000000000020 offset, 7 functions] `.?AVhkpCollisionCallbackUtil@@` -`class hkpWorldObject`: VTable [0x000000000321D4F0, 0x0000000000000000 offset, 6 functions] `.?AVhkpWorldObject@@` -`class hkpMotion`: VTable [0x000000000321D538, 0x0000000000000000 offset, 26 functions] `.?AVhkpMotion@@` -`class hkpKeyframedRigidMotion`: VTable [0x000000000321D640, 0x0000000000000000 offset, 28 functions] `.?AVhkpKeyframedRigidMotion@@` -`class hkpMaxSizeMotion`: VTable [0x000000000321D758, 0x0000000000000000 offset, 28 functions] `.?AVhkpMaxSizeMotion@@` -`class hkpEntity`: VTable [0x000000000321D870, 0x0000000000000000 offset, 7 functions] `.?AVhkpEntity@@` -`class hkpFixedRigidMotion`: VTable [0x000000000321D8C0, 0x0000000000000000 offset, 29 functions] `.?AVhkpFixedRigidMotion@@` -`class hkpSphereMotion`: VTable [0x000000000321D9E0, 0x0000000000000000 offset, 26 functions] `.?AVhkpSphereMotion@@` -`class hkpBoxMotion`: VTable [0x000000000321DAE8, 0x0000000000000000 offset, 26 functions] `.?AVhkpBoxMotion@@` -`class hkpThinBoxMotion`: VTable [0x000000000321DBF0, 0x0000000000000000 offset, 26 functions] `.?AVhkpThinBoxMotion@@` -`class hkpCharacterMotion`: VTable [0x000000000321DCF8, 0x0000000000000000 offset, 26 functions] `.?AVhkpCharacterMotion@@` -`class hkpRigidBody`: VTable [0x000000000321DED0, 0x0000000000000000 offset, 8 functions] `.?AVhkpRigidBody@@` -`class hkpPhantom`: VTable [0x000000000321DF28, 0x0000000000000000 offset, 15 functions] `.?AVhkpPhantom@@` -`class hkpAabbPhantom`: VTable [0x000000000321DFC8, 0x0000000000000000 offset, 15 functions] `.?AVhkpAabbPhantom@@` -`class hkpConstraintInstance`: VTable [0x000000000321E0E0, 0x0000000000000000 offset, 7 functions] `.?AVhkpConstraintInstance@@` -`class hkpConstraintData`: VTable [0x000000000321E130, 0x0000000000000000 offset, 19 functions] `.?AVhkpConstraintData@@` -`class hkpLimitedHingeConstraintData`: VTable [0x000000000321E1F0, 0x0000000000000000 offset, 19 functions] `.?AVhkpLimitedHingeConstraintData@@` -`class hkpRagdollConstraintData`: VTable [0x000000000321E2B0, 0x0000000000000000 offset, 19 functions] `.?AVhkpRagdollConstraintData@@` -`class hkpAction`: VTable [0x0000000003225B68, 0x0000000000000000 offset, 8 functions] `.?AVhkpAction@@` -`class hkWorldMemoryAvailableWatchDog`: VTable [0x0000000003225C20, 0x0000000000000000 offset, 6 functions] `.?AVhkWorldMemoryAvailableWatchDog@@` -`class hkpPairCollisionFilter`: VTable [0x0000000003225C80, 0x0000000000000000 offset, 4 functions] `.?AVhkpPairCollisionFilter@@` -`class hkpPairCollisionFilter`: VTable [0x0000000003225CB0, 0x0000000000000010 offset, 2 functions] `.?AVhkpPairCollisionFilter@@` -`class hkpPairCollisionFilter`: VTable [0x0000000003225CD0, 0x0000000000000018 offset, 4 functions] `.?AVhkpPairCollisionFilter@@` -`class hkpPairCollisionFilter`: VTable [0x0000000003225D00, 0x0000000000000020 offset, 2 functions] `.?AVhkpPairCollisionFilter@@` -`class hkpPairCollisionFilter`: VTable [0x0000000003225D20, 0x0000000000000028 offset, 2 functions] `.?AVhkpPairCollisionFilter@@` -`class hkpConstraintCollisionFilter`: VTable [0x0000000003225D40, 0x0000000000000000 offset, 4 functions] `.?AVhkpConstraintCollisionFilter@@` -`class hkpConstraintCollisionFilter`: VTable [0x0000000003225D70, 0x0000000000000010 offset, 2 functions] `.?AVhkpConstraintCollisionFilter@@` -`class hkpConstraintCollisionFilter`: VTable [0x0000000003225D90, 0x0000000000000018 offset, 4 functions] `.?AVhkpConstraintCollisionFilter@@` -`class hkpConstraintCollisionFilter`: VTable [0x0000000003225DC0, 0x0000000000000020 offset, 2 functions] `.?AVhkpConstraintCollisionFilter@@` -`class hkpConstraintCollisionFilter`: VTable [0x0000000003225DE0, 0x0000000000000028 offset, 2 functions] `.?AVhkpConstraintCollisionFilter@@` -`class hkpConstraintCollisionFilter`: VTable [0x0000000003225E00, 0x0000000000000060 offset, 7 functions] `.?AVhkpConstraintCollisionFilter@@` -`class hkpBallAndSocketConstraintData`: VTable [0x0000000003225FF0, 0x0000000000000000 offset, 19 functions] `.?AVhkpBallAndSocketConstraintData@@` -`class hkpCogWheelConstraintData`: VTable [0x0000000003226160, 0x0000000000000000 offset, 19 functions] `.?AVhkpCogWheelConstraintData@@` -`class hkpHingeConstraintData`: VTable [0x00000000032262B0, 0x0000000000000000 offset, 19 functions] `.?AVhkpHingeConstraintData@@` -`class hkpParametricCurve`: VTable [0x00000000032264B0, 0x0000000000000000 offset, 14 functions] `.?AVhkpParametricCurve@@` -`class hkpLinearParametricCurve`: VTable [0x0000000003226540, 0x0000000000000000 offset, 14 functions] `.?AVhkpLinearParametricCurve@@` -`class hkpPointToPathConstraintData`: VTable [0x0000000003226628, 0x0000000000000000 offset, 19 functions] `.?AVhkpPointToPathConstraintData@@` -`class hkpPointToPlaneConstraintData`: VTable [0x0000000003226750, 0x0000000000000000 offset, 19 functions] `.?AVhkpPointToPlaneConstraintData@@` -`class hkpPrismaticConstraintData`: VTable [0x00000000032268C0, 0x0000000000000000 offset, 19 functions] `.?AVhkpPrismaticConstraintData@@` -`class hkpRackAndPinionConstraintData`: VTable [0x0000000003226A20, 0x0000000000000000 offset, 19 functions] `.?AVhkpRackAndPinionConstraintData@@` -`class hkpStiffSpringConstraintData`: VTable [0x0000000003226C20, 0x0000000000000000 offset, 19 functions] `.?AVhkpStiffSpringConstraintData@@` -`class hkpWheelConstraintData`: VTable [0x0000000003226D88, 0x0000000000000000 offset, 19 functions] `.?AVhkpWheelConstraintData@@` -`class hkpRotationalConstraintData`: VTable [0x0000000003226ED8, 0x0000000000000000 offset, 19 functions] `.?AVhkpRotationalConstraintData@@` -`class hkpHingeLimitsData`: VTable [0x0000000003227128, 0x0000000000000000 offset, 19 functions] `.?AVhkpHingeLimitsData@@` -`class hkpRagdollLimitsData`: VTable [0x0000000003227258, 0x0000000000000000 offset, 19 functions] `.?AVhkpRagdollLimitsData@@` -`class hkpConstraintChainInstance`: VTable [0x0000000003227468, 0x0000000000000000 offset, 7 functions] `.?AVhkpConstraintChainInstance@@` -`class hkpConstraintChainInstanceAction`: VTable [0x0000000003227500, 0x0000000000000000 offset, 8 functions] `.?AVhkpConstraintChainInstanceAction@@` -`class hkpConstraintMotor`: VTable [0x00000000032276F8, 0x0000000000000000 offset, 4 functions] `.?AVhkpConstraintMotor@@` -`class hkpLimitedForceConstraintMotor`: VTable [0x0000000003227728, 0x0000000000000000 offset, 4 functions] `.?AVhkpLimitedForceConstraintMotor@@` -`class hkpCallbackConstraintMotor`: VTable [0x0000000003227758, 0x0000000000000000 offset, 4 functions] `.?AVhkpCallbackConstraintMotor@@` -`class hkpPositionConstraintMotor`: VTable [0x0000000003227800, 0x0000000000000000 offset, 4 functions] `.?AVhkpPositionConstraintMotor@@` -`class hkpSpringDamperConstraintMotor`: VTable [0x0000000003227878, 0x0000000000000000 offset, 4 functions] `.?AVhkpSpringDamperConstraintMotor@@` -`class hkpVelocityConstraintMotor`: VTable [0x00000000032278F8, 0x0000000000000000 offset, 4 functions] `.?AVhkpVelocityConstraintMotor@@` -`class hkpPulleyConstraintData`: VTable [0x00000000032279B0, 0x0000000000000000 offset, 19 functions] `.?AVhkpPulleyConstraintData@@` -`class hkpShapePhantom`: VTable [0x0000000003227FE8, 0x0000000000000000 offset, 19 functions] `.?AVhkpShapePhantom@@` -`class hkpCachingShapePhantom`: VTable [0x00000000032280A8, 0x0000000000000000 offset, 19 functions] `.?AVhkpCachingShapePhantom@@` -`class hkpSimpleShapePhantom`: VTable [0x00000000032281D0, 0x0000000000000000 offset, 19 functions] `.?AVhkpSimpleShapePhantom@@` -`class hkpDefaultWorldMemoryWatchDog`: VTable [0x0000000003228330, 0x0000000000000000 offset, 6 functions] `.?AVhkpDefaultWorldMemoryWatchDog@@` -`class hkpSimulation`: VTable [0x00000000032283F0, 0x0000000000000000 offset, 19 functions] `.?AVhkpSimulation@@` -`class hkpPhysicsSystem`: VTable [0x0000000003228560, 0x0000000000000000 offset, 5 functions] `.?AVhkpPhysicsSystem@@` -`class hkpConstraintOwner`: VTable [0x0000000003228938, 0x0000000000000000 offset, 7 functions] `.?AVhkpConstraintOwner@@` -`class hkpEntityEntityBroadPhaseListener`: VTable [0x0000000003228A10, 0x0000000000000000 offset, 3 functions] `.?AVhkpEntityEntityBroadPhaseListener@@` -`class hkpEntityEntityBroadPhaseListener`: VTable [0x0000000003228A38, 0x0000000000000010 offset, 3 functions] `.?AVhkpEntityEntityBroadPhaseListener@@` -`class hkpSimulationIsland`: VTable [0x0000000003228A60, 0x0000000000000000 offset, 7 functions] `.?AVhkpSimulationIsland@@` -`class hkpPhantomOverlapListener`: VTable [0x0000000003228B58, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhantomOverlapListener@@` -`class hkpWorldDeletionListener`: VTable [0x0000000003228B80, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldDeletionListener@@` -`class hkpBroadPhaseBorder`: VTable [0x0000000003228BA8, 0x0000000000000000 offset, 5 functions] `.?AVhkpBroadPhaseBorder@@` -`class hkpBroadPhaseBorder`: VTable [0x0000000003228BE8, 0x0000000000000010 offset, 3 functions] `.?AVhkpBroadPhaseBorder@@` -`class hkpBroadPhaseBorder`: VTable [0x0000000003228C10, 0x0000000000000018 offset, 3 functions] `.?AVhkpBroadPhaseBorder@@` -`class hkpBroadPhaseBorder`: VTable [0x0000000003228C38, 0x0000000000000020 offset, 3 functions] `.?AVhkpBroadPhaseBorder@@` -`class hkpDynamicsContactMgr`: VTable [0x0000000003228C60, 0x0000000000000000 offset, 19 functions] `.?AVhkpDynamicsContactMgr@@` -`class hkpSimpleContactConstraintData`: VTable [0x0000000003228D20, 0x0000000000000000 offset, 21 functions] `.?AVhkpSimpleContactConstraintData@@` -`class hkpSimpleConstraintContactMgr::Factory`: VTable [0x0000000003228DF8, 0x0000000000000000 offset, 4 functions] `.?AVFactory@hkpSimpleConstraintContactMgr@@` -`class hkpSimpleConstraintContactMgr`: VTable [0x0000000003228E28, 0x0000000000000000 offset, 20 functions] `.?AVhkpSimpleConstraintContactMgr@@` -`class hkpReportContactMgr::Factory`: VTable [0x0000000003228FF8, 0x0000000000000000 offset, 4 functions] `.?AVFactory@hkpReportContactMgr@@` -`class hkpReportContactMgr`: VTable [0x0000000003229028, 0x0000000000000000 offset, 19 functions] `.?AVhkpReportContactMgr@@` -`class hkpWorldMaintenanceMgr`: VTable [0x00000000032293C0, 0x0000000000000000 offset, 6 functions] `.?AVhkpWorldMaintenanceMgr@@` -`class hkpDefaultWorldMaintenanceMgr`: VTable [0x0000000003229408, 0x0000000000000000 offset, 6 functions] `.?AVhkpDefaultWorldMaintenanceMgr@@` -`class hkpWorldExtension`: VTable [0x0000000003229480, 0x0000000000000000 offset, 5 functions] `.?AVhkpWorldExtension@@` -`class hkpEndOfStepCallbackUtil`: VTable [0x00000000032294C0, 0x0000000000000000 offset, 3 functions] `.?AVhkpEndOfStepCallbackUtil@@` -`class hkpEndOfStepCallbackUtil`: VTable [0x00000000032294E8, 0x0000000000000010 offset, 3 functions] `.?AVhkpEndOfStepCallbackUtil@@` -`class hkpClosestCdPointCollector`: VTable [0x00000000032295F8, 0x0000000000000000 offset, 3 functions] `.?AVhkpClosestCdPointCollector@@` -`class hkpMalleableConstraintData`: VTable [0x0000000003229628, 0x0000000000000000 offset, 19 functions] `.?AVhkpMalleableConstraintData@@` -`class hkpBreakableConstraintData`: VTable [0x00000000032296E8, 0x0000000000000000 offset, 19 functions] `.?AVhkpBreakableConstraintData@@` -`class hkpConstraintChainData`: VTable [0x00000000032297A8, 0x0000000000000000 offset, 20 functions] `.?AVhkpConstraintChainData@@` -`class hkpBallSocketChainData`: VTable [0x0000000003229878, 0x0000000000000000 offset, 20 functions] `.?AVhkpBallSocketChainData@@` -`class hkpStiffSpringChainData`: VTable [0x0000000003229948, 0x0000000000000000 offset, 20 functions] `.?AVhkpStiffSpringChainData@@` -`class hkpGenericConstraintData`: VTable [0x0000000003229A18, 0x0000000000000000 offset, 19 functions] `.?AVhkpGenericConstraintData@@` -`class hkpConvexPieceStreamData`: VTable [0x0000000003229DE0, 0x0000000000000000 offset, 3 functions] `.?AVhkpConvexPieceStreamData@@` -`class hkpMouseSpringAction`: VTable [0x0000000003229FB0, 0x0000000000000000 offset, 8 functions] `.?AVhkpMouseSpringAction@@` -`class hkpBinaryAction`: VTable [0x000000000322DEE8, 0x0000000000000000 offset, 8 functions] `.?AVhkpBinaryAction@@` -`class hkpAngularDashpotAction`: VTable [0x000000000322DF40, 0x0000000000000000 offset, 8 functions] `.?AVhkpAngularDashpotAction@@` -`class hkpDashpotAction`: VTable [0x000000000322DFD8, 0x0000000000000000 offset, 8 functions] `.?AVhkpDashpotAction@@` -`class hkpUnaryAction`: VTable [0x000000000322E060, 0x0000000000000000 offset, 8 functions] `.?AVhkpUnaryAction@@` -`class hkpMotorAction`: VTable [0x000000000322E0B8, 0x0000000000000000 offset, 8 functions] `.?AVhkpMotorAction@@` -`class hkpReorientAction`: VTable [0x000000000322E180, 0x0000000000000000 offset, 8 functions] `.?AVhkpReorientAction@@` -`class hkpSpringAction`: VTable [0x000000000322E208, 0x0000000000000000 offset, 8 functions] `.?AVhkpSpringAction@@` -`struct hkpCharacterRigidBodyCinfo`: VTable [0x000000000322E318, 0x0000000000000000 offset, 3 functions] `.?AUhkpCharacterRigidBodyCinfo@@` -`class hkpPoweredChainMapper`: VTable [0x000000000322E450, 0x0000000000000000 offset, 3 functions] `.?AVhkpPoweredChainMapper@@` -`class hkpConstrainedSystemFilter`: VTable [0x000000000322E558, 0x0000000000000000 offset, 4 functions] `.?AVhkpConstrainedSystemFilter@@` -`class hkpConstrainedSystemFilter`: VTable [0x000000000322E588, 0x0000000000000010 offset, 2 functions] `.?AVhkpConstrainedSystemFilter@@` -`class hkpConstrainedSystemFilter`: VTable [0x000000000322E5A8, 0x0000000000000018 offset, 4 functions] `.?AVhkpConstrainedSystemFilter@@` -`class hkpConstrainedSystemFilter`: VTable [0x000000000322E5D8, 0x0000000000000020 offset, 2 functions] `.?AVhkpConstrainedSystemFilter@@` -`class hkpConstrainedSystemFilter`: VTable [0x000000000322E5F8, 0x0000000000000028 offset, 2 functions] `.?AVhkpConstrainedSystemFilter@@` -`class hkpConstrainedSystemFilter`: VTable [0x000000000322E618, 0x0000000000000048 offset, 7 functions] `.?AVhkpConstrainedSystemFilter@@` -`class hkpDisableEntityCollisionFilter`: VTable [0x000000000322E6B0, 0x0000000000000000 offset, 4 functions] `.?AVhkpDisableEntityCollisionFilter@@` -`class hkpDisableEntityCollisionFilter`: VTable [0x000000000322E6E0, 0x0000000000000010 offset, 2 functions] `.?AVhkpDisableEntityCollisionFilter@@` -`class hkpDisableEntityCollisionFilter`: VTable [0x000000000322E700, 0x0000000000000018 offset, 4 functions] `.?AVhkpDisableEntityCollisionFilter@@` -`class hkpDisableEntityCollisionFilter`: VTable [0x000000000322E730, 0x0000000000000020 offset, 2 functions] `.?AVhkpDisableEntityCollisionFilter@@` -`class hkpDisableEntityCollisionFilter`: VTable [0x000000000322E750, 0x0000000000000028 offset, 2 functions] `.?AVhkpDisableEntityCollisionFilter@@` -`class hkpDisableEntityCollisionFilter`: VTable [0x000000000322E770, 0x0000000000000048 offset, 6 functions] `.?AVhkpDisableEntityCollisionFilter@@` -`class hkpGroupCollisionFilter`: VTable [0x000000000322E808, 0x0000000000000000 offset, 4 functions] `.?AVhkpGroupCollisionFilter@@` -`class hkpGroupCollisionFilter`: VTable [0x000000000322E838, 0x0000000000000010 offset, 2 functions] `.?AVhkpGroupCollisionFilter@@` -`class hkpGroupCollisionFilter`: VTable [0x000000000322E858, 0x0000000000000018 offset, 4 functions] `.?AVhkpGroupCollisionFilter@@` -`class hkpGroupCollisionFilter`: VTable [0x000000000322E888, 0x0000000000000020 offset, 2 functions] `.?AVhkpGroupCollisionFilter@@` -`class hkpGroupCollisionFilter`: VTable [0x000000000322E8A8, 0x0000000000000028 offset, 2 functions] `.?AVhkpGroupCollisionFilter@@` -`class hkpPhysicsSystemWithContacts`: VTable [0x000000000322E908, 0x0000000000000000 offset, 5 functions] `.?AVhkpPhysicsSystemWithContacts@@` -`struct hkpSerializedAgentNnEntry`: VTable [0x000000000322E998, 0x0000000000000000 offset, 3 functions] `.?AUhkpSerializedAgentNnEntry@@` -`class hkpSerializedDisplayMarker`: VTable [0x000000000322EB08, 0x0000000000000000 offset, 3 functions] `.?AVhkpSerializedDisplayMarker@@` -`class hkpSerializedDisplayMarkerList`: VTable [0x000000000322EB78, 0x0000000000000000 offset, 3 functions] `.?AVhkpSerializedDisplayMarkerList@@` -`class hkpSerializedDisplayRbTransforms`: VTable [0x000000000322EBF0, 0x0000000000000000 offset, 3 functions] `.?AVhkpSerializedDisplayRbTransforms@@` -`struct hkpDisplayBindingData::RigidBody`: VTable [0x000000000322ECF0, 0x0000000000000000 offset, 3 functions] `.?AURigidBody@hkpDisplayBindingData@@` -`struct hkpDisplayBindingData::PhysicsSystem`: VTable [0x000000000322ED18, 0x0000000000000000 offset, 3 functions] `.?AUPhysicsSystem@hkpDisplayBindingData@@` -`struct hkpDisplayBindingData`: VTable [0x000000000322ED40, 0x0000000000000000 offset, 3 functions] `.?AUhkpDisplayBindingData@@` -`class hkpPhysicsData`: VTable [0x000000000322EE58, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhysicsData@@` -`class hkpCharacterProxy`: VTable [0x000000000322F0A8, 0x0000000000000000 offset, 5 functions] `.?AVhkpCharacterProxy@@` -`class hkpCharacterProxy`: VTable [0x000000000322F0E8, 0x0000000000000010 offset, 6 functions] `.?AVhkpCharacterProxy@@` -`class hkpCharacterProxy`: VTable [0x000000000322F130, 0x0000000000000018 offset, 5 functions] `.?AVhkpCharacterProxy@@` -`class hkpContactListener`: VTable [0x000000000322F260, 0x0000000000000000 offset, 7 functions] `.?AVhkpContactListener@@` -`class hkpTriggerVolume`: VTable [0x000000000322F2B0, 0x0000000000000000 offset, 5 functions] `.?AVhkpTriggerVolume@@` -`class hkpTriggerVolume`: VTable [0x000000000322F2F0, 0x0000000000000010 offset, 7 functions] `.?AVhkpTriggerVolume@@` -`class hkpTriggerVolume`: VTable [0x000000000322F340, 0x0000000000000018 offset, 3 functions] `.?AVhkpTriggerVolume@@` -`class hkpTriggerVolume`: VTable [0x000000000322F368, 0x0000000000000020 offset, 6 functions] `.?AVhkpTriggerVolume@@` -`class hkpFirstPersonGun`: VTable [0x000000000322F5B0, 0x0000000000000000 offset, 9 functions] `.?AVhkpFirstPersonGun@@` -`class hkpBallGun`: VTable [0x000000000322F610, 0x0000000000000000 offset, 9 functions] `.?AVhkpBallGun@@` -`class hkpGravityGun`: VTable [0x000000000322F6A0, 0x0000000000000000 offset, 9 functions] `.?AVhkpGravityGun@@` -`class hkpMountedBallGun`: VTable [0x000000000322F750, 0x0000000000000000 offset, 9 functions] `.?AVhkpMountedBallGun@@` -`class hkpGunProjectile`: VTable [0x000000000322F7E0, 0x0000000000000000 offset, 6 functions] `.?AVhkpGunProjectile@@` -`class hkpGunProjectile`: VTable [0x000000000322F828, 0x0000000000000010 offset, 7 functions] `.?AVhkpGunProjectile@@` -`class hkpProjectileGun`: VTable [0x000000000322F878, 0x0000000000000000 offset, 11 functions] `.?AVhkpProjectileGun@@` -`class hkpSaveContactPointsUtil::EntitySelector`: VTable [0x000000000322FC50, 0x0000000000000000 offset, 2 functions] `.?AVEntitySelector@hkpSaveContactPointsUtil@@` -`class `anonymous namespace'::hkEntitySelectorAll`: VTable [0x000000000322FC70, 0x0000000000000000 offset, 2 functions] `.?AVhkEntitySelectorAll@?A0x7ce6448c@@` -`class `anonymous namespace'::hkEntitySelectorListed`: VTable [0x000000000322FC90, 0x0000000000000000 offset, 2 functions] `.?AVhkEntitySelectorListed@?A0x7ce6448c@@` -`class BSLimbIKModifierCastInfo`: VTable [0x000000000322FCB0, 0x0000000000000000 offset, 1 functions] `.?AVBSLimbIKModifierCastInfo@@` -`class BSILimbIKModifierSingleton`: VTable [0x000000000322FCC8, 0x0000000000000000 offset, 4 functions] `.?AVBSILimbIKModifierSingleton@@` -`class BGSGamebryoSequenceGenerator`: VTable [0x000000000322FCF8, 0x0000000000000000 offset, 28 functions] `.?AVBGSGamebryoSequenceGenerator@@` -`class BSIStateManagerModifier::BSIStateManagerStateListener`: VTable [0x0000000003235418, 0x0000000000000000 offset, 7 functions] `.?AVBSIStateManagerStateListener@BSIStateManagerModifier@@` -`class BSIStateManagerModifier`: VTable [0x00000000032388C0, 0x0000000000000000 offset, 25 functions] `.?AVBSIStateManagerModifier@@` -`class BSBoneSwitchGenerator`: VTable [0x0000000003238B00, 0x0000000000000000 offset, 28 functions] `.?AVBSBoneSwitchGenerator@@` -`class BSBoneSwitchGeneratorBoneData`: VTable [0x0000000003238D28, 0x0000000000000000 offset, 4 functions] `.?AVBSBoneSwitchGeneratorBoneData@@` -`class BSCyclicBlendTransitionGenerator`: VTable [0x0000000003238D58, 0x0000000000000000 offset, 28 functions] `.?AVBSCyclicBlendTransitionGenerator@@` -`class BSOffsetAnimationGenerator`: VTable [0x0000000003239198, 0x0000000000000000 offset, 28 functions] `.?AVBSOffsetAnimationGenerator@@` -`class BSiStateTaggingGenerator`: VTable [0x00000000032394B0, 0x0000000000000000 offset, 28 functions] `.?AVBSiStateTaggingGenerator@@` -`class BSSynchronizedClipGenerator::hkbDefaultSynchronizedScene`: VTable [0x00000000032395F8, 0x0000000000000000 offset, 10 functions] `.?AVhkbDefaultSynchronizedScene@BSSynchronizedClipGenerator@@` -`class BSSynchronizedClipGenerator`: VTable [0x0000000003239668, 0x0000000000000000 offset, 28 functions] `.?AVBSSynchronizedClipGenerator@@` -`class BSComputeAddBoneAnimModifier`: VTable [0x00000000032398A8, 0x0000000000000000 offset, 25 functions] `.?AVBSComputeAddBoneAnimModifier@@` -`class BSDecomposeVectorModifier`: VTable [0x0000000003239A50, 0x0000000000000000 offset, 25 functions] `.?AVBSDecomposeVectorModifier@@` -`class BSDirectAtModifier`: VTable [0x0000000003239B50, 0x0000000000000000 offset, 25 functions] `.?AVBSDirectAtModifier@@` -`class BSDistTriggerModifier`: VTable [0x0000000003239C70, 0x0000000000000000 offset, 25 functions] `.?AVBSDistTriggerModifier@@` -`class BSEventEveryNEventsModifier`: VTable [0x0000000003239D90, 0x0000000000000000 offset, 25 functions] `.?AVBSEventEveryNEventsModifier@@` -`class BSEventOnDeactivateModifier`: VTable [0x0000000003239FF0, 0x0000000000000000 offset, 25 functions] `.?AVBSEventOnDeactivateModifier@@` -`class BSEventOnFalseToTrueModifier`: VTable [0x000000000323A128, 0x0000000000000000 offset, 25 functions] `.?AVBSEventOnFalseToTrueModifier@@` -`class BSGetTimeStepModifier`: VTable [0x000000000323A258, 0x0000000000000000 offset, 25 functions] `.?AVBSGetTimeStepModifier@@` -`class BSInterpValueModifier`: VTable [0x000000000323A358, 0x0000000000000000 offset, 25 functions] `.?AVBSInterpValueModifier@@` -`class BSIsActiveModifier`: VTable [0x000000000323A458, 0x0000000000000000 offset, 25 functions] `.?AVBSIsActiveModifier@@` -`class BSLimbIKModifier`: VTable [0x000000000323A558, 0x0000000000000000 offset, 25 functions] `.?AVBSLimbIKModifier@@` -`class BSLookAtModifier`: VTable [0x000000000323A740, 0x0000000000000000 offset, 25 functions] `.?AVBSLookAtModifier@@` -`class BSModifyOnceModifier`: VTable [0x000000000323AA30, 0x0000000000000000 offset, 25 functions] `.?AVBSModifyOnceModifier@@` -`class BSPassByTargetTriggerModifier`: VTable [0x000000000323AB70, 0x0000000000000000 offset, 25 functions] `.?AVBSPassByTargetTriggerModifier@@` -`class BSRagdollContactListenerModifier`: VTable [0x000000000323AC98, 0x0000000000000000 offset, 25 functions] `.?AVBSRagdollContactListenerModifier@@` -`class BSRagdollContactListenerModifier`: VTable [0x000000000323AD98, 0x0000000000000050 offset, 7 functions] `.?AVBSRagdollContactListenerModifier@@` -`class BSSpeedSamplerModifier`: VTable [0x000000000323AE10, 0x0000000000000000 offset, 25 functions] `.?AVBSSpeedSamplerModifier@@` -`class BSTimerModifier`: VTable [0x000000000323AF30, 0x0000000000000000 offset, 25 functions] `.?AVBSTimerModifier@@` -`class BSTweenerModifier`: VTable [0x000000000323B030, 0x0000000000000000 offset, 25 functions] `.?AVBSTweenerModifier@@` -`class hkaAnimationBinding`: VTable [0x000000000323B148, 0x0000000000000000 offset, 3 functions] `.?AVhkaAnimationBinding@@` -`class BSSynchronizedClipGeneratorUtils::FindEventFunctor`: VTable [0x000000000323B170, 0x0000000000000000 offset, 2 functions] `.?AVFindEventFunctor@BSSynchronizedClipGeneratorUtils@@` -`class BSIDirectAtModifierSingleton`: VTable [0x000000000323B190, 0x0000000000000000 offset, 2 functions] `.?AVBSIDirectAtModifierSingleton@@` -`class BSIPassByTargetTriggerModifierSingleton`: VTable [0x000000000323B2C0, 0x0000000000000000 offset, 4 functions] `.?AVBSIPassByTargetTriggerModifierSingleton@@` -`class BSIRagdollContactListenerModifierSingleton`: VTable [0x000000000323B2F0, 0x0000000000000000 offset, 2 functions] `.?AVBSIRagdollContactListenerModifierSingleton@@` -`class BShkbUtils::GraphInspectionFunctor`: VTable [0x00000000032494E8, 0x0000000000000000 offset, 7 functions] `.?AVGraphInspectionFunctor@BShkbUtils@@` -`class hkbAssetLoader`: VTable [0x0000000003249578, 0x0000000000000000 offset, 5 functions] `.?AVhkbAssetLoader@@` -`class `anonymous namespace'::BSResourceAssetLoader`: VTable [0x00000000032495F0, 0x0000000000000000 offset, 5 functions] `.?AVBSResourceAssetLoader@?A0xfb1fecfb@@` -`class `anonymous namespace'::NullAssetLoader`: VTable [0x0000000003249630, 0x0000000000000000 offset, 5 functions] `.?AVNullAssetLoader@?A0xfb1fecfb@@` -`class `anonymous namespace'::MapEventFindFunctor`: VTable [0x0000000003249670, 0x0000000000000000 offset, 2 functions] `.?AVMapEventFindFunctor@?A0xfb1fecfb@@` -`class `anonymous namespace'::ClipAddingFunctor`: VTable [0x0000000003249690, 0x0000000000000000 offset, 7 functions] `.?AVClipAddingFunctor@?A0xfb1fecfb@@` -`class BShkbUtils::ProspectiveEventClipAddingFunctor`: VTable [0x0000000003249B50, 0x0000000000000000 offset, 7 functions] `.?AVProspectiveEventClipAddingFunctor@BShkbUtils@@` -`class `anonymous namespace'::CompileExpressionFunctor`: VTable [0x000000000324A340, 0x0000000000000000 offset, 7 functions] `.?AVCompileExpressionFunctor@?A0xfb1fecfb@@` -`class hkLoader`: VTable [0x000000000324AF38, 0x0000000000000000 offset, 11 functions] `.?AVhkLoader@@` -`class BShkbHkxDB::DBData`: VTable [0x000000000324AFB0, 0x0000000000000000 offset, 15 functions] `.?AVDBData@BShkbHkxDB@@` -`class BSResource::EntryDB`: VTable [0x000000000324B050, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BShkbHkxDB@@@BSResource@@` -`class BShkbHkxDB::ProjectDBData`: VTable [0x000000000324B098, 0x0000000000000000 offset, 15 functions] `.?AVProjectDBData@BShkbHkxDB@@` -`class BSQueuedResourceCollection,2>`: VTable [0x000000000324B138, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BShkbHkxDB@@@BSResource@@$01@@` -`class BSQueuedResourceCollection,2>`: VTable [0x000000000324B208, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BShkbHkxDB@@@BSResource@@$01@@` -`class BShkbHkxDB::QueuedHandles`: VTable [0x000000000324B230, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHandles@BShkbHkxDB@@` -`class BShkbHkxDB::QueuedHandles`: VTable [0x000000000324B300, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHandles@BShkbHkxDB@@` -`class BShkbHkxDB::StreamAdaptor`: VTable [0x000000000324B350, 0x0000000000000000 offset, 13 functions] `.?AVStreamAdaptor@BShkbHkxDB@@` -`class hkaSkeleton`: VTable [0x000000000324D5A8, 0x0000000000000000 offset, 3 functions] `.?AVhkaSkeleton@@` -`class BSIRagdollDriver`: VTable [0x000000000324D5D0, 0x0000000000000000 offset, 14 functions] `.?AVBSIRagdollDriver@@` -`class BSAnimationGraphLoadScrapper`: VTable [0x000000000324D660, 0x0000000000000000 offset, 2 functions] `.?AVBSAnimationGraphLoadScrapper@@` -`class bhkIWorldStepListener`: VTable [0x000000000324D680, 0x0000000000000000 offset, 3 functions] `.?AVbhkIWorldStepListener@@` -`class BShkbAnimationGraph`: VTable [0x000000000324D6A8, 0x0000000000000000 offset, 14 functions] `.?AVBShkbAnimationGraph@@` -`class `anonymous namespace'::GraphPhysicsStepListener`: VTable [0x000000000324D950, 0x0000000000000000 offset, 3 functions] `.?AVGraphPhysicsStepListener@?A0xaa791821@@` -`class `anonymous namespace'::SynchronizedClipNameVisitor`: VTable [0x000000000324D9A0, 0x0000000000000000 offset, 2 functions] `.?AVSynchronizedClipNameVisitor@?A0xaa791821@@` -`class `anonymous namespace'::BSHashMapEventFindFunctor`: VTable [0x000000000324E640, 0x0000000000000000 offset, 2 functions] `.?AVBSHashMapEventFindFunctor@?A0xaa791821@@` -`class `anonymous namespace'::BShkbAnimationGraphLoadScrapper`: VTable [0x000000000324F448, 0x0000000000000000 offset, 2 functions] `.?AVBShkbAnimationGraphLoadScrapper@?A0xaa791821@@` -`class AutoRegisterFactory >`: VTable [0x000000000324F468, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterFactory@VBShkbAnimationGraphLoadScrapper@?A0xaa791821@@V?$BSTFactoryManager@VBSFixedString@@VBSAnimationGraphLoadScrapper@@$01VBSTSingletonImplicit@@@@@@` -`class BSAnimationGraphManager`: VTable [0x0000000003250460, 0x0000000000000000 offset, 2 functions] `.?AVBSAnimationGraphManager@@` -`class IPostAnimationChannelUpdateFunctor`: VTable [0x0000000003250480, 0x0000000000000000 offset, 2 functions] `.?AVIPostAnimationChannelUpdateFunctor@@` -`class BSTMessageQueue >`: VTable [0x0000000003250500, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@V?$BSTSmartPointer@VBSAnimationGraphManager@@UBSTSmartPointerIntrusiveRefCount@@@@@@` -`class BSTCommonMessageQueue >`: VTable [0x0000000003250540, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@V?$BSTSmartPointer@VBSAnimationGraphManager@@UBSTSmartPointerIntrusiveRefCount@@@@@@` -`class BSTCommonStaticMessageQueue,128>`: VTable [0x0000000003250590, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonStaticMessageQueue@V?$BSTSmartPointer@VBSAnimationGraphManager@@UBSTSmartPointerIntrusiveRefCount@@@@$0IA@@@` -`class `anonymous namespace'::DeferredUpdate`: VTable [0x00000000032505E0, 0x0000000000000000 offset, 7 functions] `.?AVDeferredUpdate@?A0xf6a65297@@` -`class BSISpeedSamplerDB`: VTable [0x0000000003250FE0, 0x0000000000000000 offset, 2 functions] `.?AVBSISpeedSamplerDB@@` -`class BSSpeedSamplerDBManager`: VTable [0x0000000003251000, 0x0000000000000000 offset, 2 functions] `.?AVBSSpeedSamplerDBManager@@` -`class BShkNonTransformController`: VTable [0x0000000003251260, 0x0000000000000000 offset, 4 functions] `.?AVBShkNonTransformController@@` -`class BShkFloatController`: VTable [0x0000000003251290, 0x0000000000000000 offset, 4 functions] `.?AVBShkFloatController@@` -`class BShkVisibilityController`: VTable [0x00000000032512C0, 0x0000000000000000 offset, 4 functions] `.?AVBShkVisibilityController@@` -`struct IBSTCreator`: VTable [0x00000000032512F0, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBShkNonTransformController@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000003251318, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBShkVisibilityController@@VBShkNonTransformController@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003251340, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBShkVisibilityController@@VBShkNonTransformController@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VBShkNonTransformController@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003251368, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBShkVisibilityController@@V?$BSTCreateFactoryManager@VBSFixedString@@VBShkNonTransformController@@$0CA@@@@@` -`class hkaMirroredSkeleton`: VTable [0x0000000003251450, 0x0000000000000000 offset, 3 functions] `.?AVhkaMirroredSkeleton@@` -`class hkaRagdollInstance`: VTable [0x0000000003251730, 0x0000000000000000 offset, 4 functions] `.?AVhkaRagdollInstance@@` -`class hkaAnimatedReferenceFrame`: VTable [0x0000000003253308, 0x0000000000000000 offset, 6 functions] `.?AVhkaAnimatedReferenceFrame@@` -`class hkaAnimation`: VTable [0x0000000003253350, 0x0000000000000000 offset, 16 functions] `.?AVhkaAnimation@@` -`class hkaInterleavedUncompressedAnimation`: VTable [0x00000000032534F0, 0x0000000000000000 offset, 16 functions] `.?AVhkaInterleavedUncompressedAnimation@@` -`class hkaQuantizedAnimation`: VTable [0x00000000032535F8, 0x0000000000000000 offset, 16 functions] `.?AVhkaQuantizedAnimation@@` -`class hkaSplineCompressedAnimation`: VTable [0x0000000003253750, 0x0000000000000000 offset, 16 functions] `.?AVhkaSplineCompressedAnimation@@` -`class hkaAnimationPreviewColorContainer`: VTable [0x00000000032539C0, 0x0000000000000000 offset, 3 functions] `.?AVhkaAnimationPreviewColorContainer@@` -`class hkaDefaultAnimatedReferenceFrame`: VTable [0x0000000003253CF0, 0x0000000000000000 offset, 6 functions] `.?AVhkaDefaultAnimatedReferenceFrame@@` -`class hkaFootstepAnalysisInfoContainer`: VTable [0x0000000003253DA8, 0x0000000000000000 offset, 3 functions] `.?AVhkaFootstepAnalysisInfoContainer@@` -`class hkaBoneAttachment`: VTable [0x0000000003253E80, 0x0000000000000000 offset, 3 functions] `.?AVhkaBoneAttachment@@` -`class hkaAnimationContainer`: VTable [0x0000000003253F48, 0x0000000000000000 offset, 3 functions] `.?AVhkaAnimationContainer@@` -`class hkpCollisionDispatcher`: VTable [0x0000000003255930, 0x0000000000000000 offset, 3 functions] `.?AVhkpCollisionDispatcher@@` -`class hkpNullBroadPhaseListener`: VTable [0x0000000003255B40, 0x0000000000000000 offset, 3 functions] `.?AVhkpNullBroadPhaseListener@@` -`class hkpNullBroadPhaseListener`: VTable [0x0000000003255B68, 0x0000000000000010 offset, 3 functions] `.?AVhkpNullBroadPhaseListener@@` -`class hkpCollisionAgent`: VTable [0x0000000003255B90, 0x0000000000000000 offset, 14 functions] `.?AVhkpCollisionAgent@@` -`class hkpNullAgent`: VTable [0x0000000003255C20, 0x0000000000000000 offset, 14 functions] `.?AVhkpNullAgent@@` -`class hkp3AxisSweep`: VTable [0x0000000003255D68, 0x0000000000000000 offset, 31 functions] `.?AVhkp3AxisSweep@@` -`class hkpBroadPhase`: VTable [0x0000000003258B70, 0x0000000000000000 offset, 31 functions] `.?AVhkpBroadPhase@@` -`class hkTraceStream`: VTable [0x0000000003258D70, 0x0000000000000000 offset, 3 functions] `.?AVhkTraceStream@@` -`class hkpPoweredChainData`: VTable [0x00000000032592F0, 0x0000000000000000 offset, 20 functions] `.?AVhkpPoweredChainData@@` -`class hkpMapPointsToSubShapeContactMgr`: VTable [0x0000000003259438, 0x0000000000000000 offset, 10 functions] `.?AVhkpMapPointsToSubShapeContactMgr@@` -`class hkpConvexVerticesShape`: VTable [0x00000000032596E8, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexVerticesShape@@` -`class BSiStateTaggingUtils::BSiStateTaggingStateListener`: VTable [0x0000000003259EA0, 0x0000000000000000 offset, 7 functions] `.?AVBSiStateTaggingStateListener@BSiStateTaggingUtils@@` -`class `anonymous namespace'::iStateTaggingFunctor`: VTable [0x0000000003259EF0, 0x0000000000000000 offset, 7 functions] `.?AViStateTaggingFunctor@?A0xc039d693@@` -`class hkResource`: VTable [0x0000000003259F60, 0x0000000000000000 offset, 8 functions] `.?AVhkResource@@` -`struct `anonymous namespace'::hkNativeResource`: VTable [0x0000000003259FB8, 0x0000000000000000 offset, 8 functions] `.?AUhkNativeResource@?A0xfb16bef9@@` -`class BShkbUtils::SaveDataRestoreFunctor`: VTable [0x000000000325A8F0, 0x0000000000000000 offset, 7 functions] `.?AVSaveDataRestoreFunctor@BShkbUtils@@` -`struct hkpConstraintUtils::CollectConstraintsFilter`: VTable [0x000000000325AFC8, 0x0000000000000000 offset, 2 functions] `.?AUCollectConstraintsFilter@hkpConstraintUtils@@` -`struct hkpEaseConstraintsAction::CollectSupportedConstraints`: VTable [0x000000000325AFE8, 0x0000000000000000 offset, 2 functions] `.?AUCollectSupportedConstraints@hkpEaseConstraintsAction@@` -`class hkpEaseConstraintsAction`: VTable [0x000000000325B008, 0x0000000000000000 offset, 8 functions] `.?AVhkpEaseConstraintsAction@@` -`class hkpEasePenetrationAction`: VTable [0x000000000325B298, 0x0000000000000000 offset, 8 functions] `.?AVhkpEasePenetrationAction@@` -`class hkxAnimatedFloat`: VTable [0x000000000325E058, 0x0000000000000000 offset, 3 functions] `.?AVhkxAnimatedFloat@@` -`class hkxAnimatedMatrix`: VTable [0x000000000325E0B0, 0x0000000000000000 offset, 3 functions] `.?AVhkxAnimatedMatrix@@` -`class hkxAnimatedQuaternion`: VTable [0x000000000325E108, 0x0000000000000000 offset, 3 functions] `.?AVhkxAnimatedQuaternion@@` -`class hkxAnimatedVector`: VTable [0x000000000325E170, 0x0000000000000000 offset, 3 functions] `.?AVhkxAnimatedVector@@` -`class hkxSparselyAnimatedBool`: VTable [0x000000000325E1E8, 0x0000000000000000 offset, 3 functions] `.?AVhkxSparselyAnimatedBool@@` -`class hkxSparselyAnimatedInt`: VTable [0x000000000325E210, 0x0000000000000000 offset, 3 functions] `.?AVhkxSparselyAnimatedInt@@` -`class hkxEnum`: VTable [0x000000000325E238, 0x0000000000000000 offset, 3 functions] `.?AVhkxEnum@@` -`class hkxSparselyAnimatedEnum`: VTable [0x000000000325E260, 0x0000000000000000 offset, 3 functions] `.?AVhkxSparselyAnimatedEnum@@` -`class hkxSparselyAnimatedString`: VTable [0x000000000325E288, 0x0000000000000000 offset, 3 functions] `.?AVhkxSparselyAnimatedString@@` -`class hkxAttributeHolder`: VTable [0x000000000325E2E0, 0x0000000000000000 offset, 3 functions] `.?AVhkxAttributeHolder@@` -`class hkxCamera`: VTable [0x000000000325E480, 0x0000000000000000 offset, 3 functions] `.?AVhkxCamera@@` -`class hkxNode`: VTable [0x000000000325E538, 0x0000000000000000 offset, 3 functions] `.?AVhkxNode@@` -`class hkxLight`: VTable [0x000000000325E5C0, 0x0000000000000000 offset, 3 functions] `.?AVhkxLight@@` -`class hkxMaterial`: VTable [0x000000000325E610, 0x0000000000000000 offset, 3 functions] `.?AVhkxMaterial@@` -`class hkxMaterialEffect`: VTable [0x000000000325E6E0, 0x0000000000000000 offset, 3 functions] `.?AVhkxMaterialEffect@@` -`class hkxMaterialShader`: VTable [0x000000000325E738, 0x0000000000000000 offset, 3 functions] `.?AVhkxMaterialShader@@` -`class hkxTextureFile`: VTable [0x000000000325E810, 0x0000000000000000 offset, 3 functions] `.?AVhkxTextureFile@@` -`class hkxTextureInplace`: VTable [0x000000000325E868, 0x0000000000000000 offset, 3 functions] `.?AVhkxTextureInplace@@` -`class hkxEdgeSelectionChannel`: VTable [0x000000000325E8C0, 0x0000000000000000 offset, 3 functions] `.?AVhkxEdgeSelectionChannel@@` -`class hkxTriangleSelectionChannel`: VTable [0x000000000325E928, 0x0000000000000000 offset, 3 functions] `.?AVhkxTriangleSelectionChannel@@` -`class hkxVertexFloatDataChannel`: VTable [0x000000000325E9A0, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexFloatDataChannel@@` -`class hkxVertexIntDataChannel`: VTable [0x000000000325EA08, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexIntDataChannel@@` -`class hkxVertexSelectionChannel`: VTable [0x000000000325EA70, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexSelectionChannel@@` -`class hkxVertexVectorDataChannel`: VTable [0x000000000325EAD8, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexVectorDataChannel@@` -`class hkxIndexBuffer`: VTable [0x000000000325EB48, 0x0000000000000000 offset, 3 functions] `.?AVhkxIndexBuffer@@` -`class hkxMeshSection`: VTable [0x000000000325EBD8, 0x0000000000000000 offset, 3 functions] `.?AVhkxMeshSection@@` -`class hkxMesh::UserChannelInfo`: VTable [0x000000000325EC00, 0x0000000000000000 offset, 3 functions] `.?AVUserChannelInfo@hkxMesh@@` -`class hkxNodeSelectionSet`: VTable [0x000000000325EDF0, 0x0000000000000000 offset, 3 functions] `.?AVhkxNodeSelectionSet@@` -`class hkxSkinBinding`: VTable [0x000000000325EE18, 0x0000000000000000 offset, 3 functions] `.?AVhkxSkinBinding@@` -`class hkxScene`: VTable [0x000000000325EE40, 0x0000000000000000 offset, 3 functions] `.?AVhkxScene@@` -`class hkaMeshBinding`: VTable [0x000000000325F3E0, 0x0000000000000000 offset, 3 functions] `.?AVhkaMeshBinding@@` -`class hkaFootstepAnalysisInfo`: VTable [0x000000000325F568, 0x0000000000000000 offset, 3 functions] `.?AVhkaFootstepAnalysisInfo@@` -`class hkpPredGskfAgent`: VTable [0x0000000003260668, 0x0000000000000000 offset, 14 functions] `.?AVhkpPredGskfAgent@@` -`class hkpIterativeLinearCastAgent`: VTable [0x0000000003260700, 0x0000000000000000 offset, 14 functions] `.?AVhkpIterativeLinearCastAgent@@` -`class hkpBoxBoxAgent`: VTable [0x0000000003260790, 0x0000000000000000 offset, 14 functions] `.?AVhkpBoxBoxAgent@@` -`class hkpSymmetricAgentFlipCollector`: VTable [0x0000000003260830, 0x0000000000000000 offset, 3 functions] `.?AVhkpSymmetricAgentFlipCollector@@` -`class hkpSymmetricAgentFlipCastCollector`: VTable [0x0000000003260858, 0x0000000000000000 offset, 3 functions] `.?AVhkpSymmetricAgentFlipCastCollector@@` -`class hkpSymmetricAgentFlipBodyCollector`: VTable [0x0000000003260880, 0x0000000000000000 offset, 3 functions] `.?AVhkpSymmetricAgentFlipBodyCollector@@` -`class hkpBvAgent`: VTable [0x00000000032608A8, 0x0000000000000000 offset, 14 functions] `.?AVhkpBvAgent@@` -`class hkpFlagCdBodyPairCollector`: VTable [0x0000000003260938, 0x0000000000000000 offset, 3 functions] `.?AVhkpFlagCdBodyPairCollector@@` -`class hkpSimpleClosestContactCollector`: VTable [0x0000000003260960, 0x0000000000000000 offset, 3 functions] `.?AVhkpSimpleClosestContactCollector@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003260988, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpBvAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003260A18, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpBvAgent@@@@` -`class hkpBvTreeAgent`: VTable [0x0000000003260AE0, 0x0000000000000000 offset, 14 functions] `.?AVhkpBvTreeAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003260B70, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpBvTreeAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003260C00, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpBvTreeAgent@@@@` -`class hkpBvTreeStreamAgent`: VTable [0x0000000003260CC8, 0x0000000000000000 offset, 14 functions] `.?AVhkpBvTreeStreamAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003260D58, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpBvTreeStreamAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003260DE8, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpBvTreeStreamAgent@@@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003260E78, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpShapeCollectionAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003260F08, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpShapeCollectionAgent@@@@` -`class hkpMoppAgent`: VTable [0x0000000003260F98, 0x0000000000000000 offset, 14 functions] `.?AVhkpMoppAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003261028, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpMoppAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x00000000032610B8, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpMoppAgent@@@@` -`class hkpPhantomAgent`: VTable [0x0000000003261150, 0x0000000000000000 offset, 14 functions] `.?AVhkpPhantomAgent@@` -`class hkpSphereSphereAgent`: VTable [0x00000000032611E0, 0x0000000000000000 offset, 14 functions] `.?AVhkpSphereSphereAgent@@` -`class hkpSphereCapsuleAgent`: VTable [0x0000000003261288, 0x0000000000000000 offset, 14 functions] `.?AVhkpSphereCapsuleAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003261318, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpSphereCapsuleAgent@@@@` -`class hkpSphereTriangleAgent`: VTable [0x00000000032613C0, 0x0000000000000000 offset, 14 functions] `.?AVhkpSphereTriangleAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003261450, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpSphereTriangleAgent@@@@` -`class hkpCapsuleCapsuleAgent`: VTable [0x00000000032614F0, 0x0000000000000000 offset, 14 functions] `.?AVhkpCapsuleCapsuleAgent@@` -`class hkpCapsuleTriangleAgent`: VTable [0x0000000003261590, 0x0000000000000000 offset, 14 functions] `.?AVhkpCapsuleTriangleAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003261620, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpCapsuleTriangleAgent@@@@` -`class hkpSphereBoxAgent`: VTable [0x00000000032616D8, 0x0000000000000000 offset, 14 functions] `.?AVhkpSphereBoxAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003261768, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpSphereBoxAgent@@@@` -`class hkpMultiSphereTriangleAgent`: VTable [0x0000000003261808, 0x0000000000000000 offset, 14 functions] `.?AVhkpMultiSphereTriangleAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003261898, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpMultiSphereTriangleAgent@@@@` -`class hkpMultiRayConvexAgent`: VTable [0x0000000003261960, 0x0000000000000000 offset, 14 functions] `.?AVhkpMultiRayConvexAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x00000000032619F0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpMultiRayConvexAgent@@@@` -`class hkpTransformAgent`: VTable [0x0000000003261AB8, 0x0000000000000000 offset, 14 functions] `.?AVhkpTransformAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003261B48, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpTransformAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003261BD8, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpTransformAgent@@@@` -`class hkpListAgent`: VTable [0x0000000003261C88, 0x0000000000000000 offset, 14 functions] `.?AVhkpListAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003261D18, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpListAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003261DA8, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpListAgent@@@@` -`class hkpConvexListAgent`: VTable [0x0000000003261E38, 0x0000000000000000 offset, 14 functions] `.?AVhkpConvexListAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003261EC8, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpConvexListAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003261F58, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpConvexListAgent@@@@` -`class hkpShapeCollectionAgent`: VTable [0x0000000003262038, 0x0000000000000000 offset, 14 functions] `.?AVhkpShapeCollectionAgent@@` -`class hkpMultiSphereAgent`: VTable [0x00000000032620E0, 0x0000000000000000 offset, 14 functions] `.?AVhkpMultiSphereAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003262170, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpMultiSphereAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003262200, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpMultiSphereAgent@@@@` -`class hkIstream`: VTable [0x0000000003262470, 0x0000000000000000 offset, 3 functions] `.?AVhkIstream@@` -`class hkTagfileWriter::AddDataObjectListener`: VTable [0x0000000003262498, 0x0000000000000000 offset, 4 functions] `.?AVAddDataObjectListener@hkTagfileWriter@@` -`class hkTagfileWriter`: VTable [0x00000000032624C8, 0x0000000000000000 offset, 4 functions] `.?AVhkTagfileWriter@@` -`class hkTagfileReader`: VTable [0x00000000032624F8, 0x0000000000000000 offset, 4 functions] `.?AVhkTagfileReader@@` -`class hkBinaryTagfileWriter`: VTable [0x0000000003262528, 0x0000000000000000 offset, 4 functions] `.?AVhkBinaryTagfileWriter@@` -`class hkXmlTagfileReader`: VTable [0x0000000003262558, 0x0000000000000000 offset, 4 functions] `.?AVhkXmlTagfileReader@@` -`class hkXmlTagfileWriter`: VTable [0x0000000003262588, 0x0000000000000000 offset, 4 functions] `.?AVhkXmlTagfileWriter@@` -`class `anonymous namespace'::ForwardingPackfileListerer`: VTable [0x0000000003262710, 0x0000000000000000 offset, 4 functions] `.?AVForwardingPackfileListerer@?A0x4076b7e2@@` -`class hkpArrayAction`: VTable [0x00000000032628C0, 0x0000000000000000 offset, 8 functions] `.?AVhkpArrayAction@@` -`class hkAlignSceneToNodeOptions`: VTable [0x0000000003262918, 0x0000000000000000 offset, 3 functions] `.?AVhkAlignSceneToNodeOptions@@` -`class hkxEnvironment`: VTable [0x0000000003262940, 0x0000000000000000 offset, 3 functions] `.?AVhkxEnvironment@@` -`class hkxMaterialShaderSet`: VTable [0x0000000003262C98, 0x0000000000000000 offset, 3 functions] `.?AVhkxMaterialShaderSet@@` -`class hkxVertexBuffer`: VTable [0x0000000003262CC0, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexBuffer@@` -`class hkxMesh`: VTable [0x0000000003262CE8, 0x0000000000000000 offset, 3 functions] `.?AVhkxMesh@@` -`class hkpGskBaseAgent`: VTable [0x0000000003263130, 0x0000000000000000 offset, 14 functions] `.?AVhkpGskBaseAgent@@` -`class hkpGskfAgent`: VTable [0x00000000032631E0, 0x0000000000000000 offset, 14 functions] `.?AVhkpGskfAgent@@` -`class hkMemoryStreamReader`: VTable [0x0000000003263290, 0x0000000000000000 offset, 12 functions] `.?AVhkMemoryStreamReader@@` -`class hkPackfileWriter`: VTable [0x0000000003263330, 0x0000000000000000 offset, 11 functions] `.?AVhkPackfileWriter@@` -`class `anonymous namespace'::InternedStringRefCounted`: VTable [0x0000000003263618, 0x0000000000000000 offset, 3 functions] `.?AVInternedStringRefCounted@?A0x860cb2af@@` -`class hkDataWorld`: VTable [0x0000000003263640, 0x0000000000000000 offset, 23 functions] `.?AVhkDataWorld@@` -`class hkDataWorldDict`: VTable [0x0000000003263728, 0x0000000000000000 offset, 23 functions] `.?AVhkDataWorldDict@@` -`class hkDataRefCounted`: VTable [0x0000000003263810, 0x0000000000000000 offset, 1 functions] `.?AVhkDataRefCounted@@` -`class hkDataArrayImpl`: VTable [0x0000000003263828, 0x0000000000000000 offset, 37 functions] `.?AVhkDataArrayImpl@@` -`class hkDataClassImpl`: VTable [0x0000000003263998, 0x0000000000000000 offset, 12 functions] `.?AVhkDataClassImpl@@` -`class hkDataObjectImpl`: VTable [0x0000000003263A18, 0x0000000000000000 offset, 25 functions] `.?AVhkDataObjectImpl@@` -`class hkDataClassDict`: VTable [0x0000000003263B18, 0x0000000000000000 offset, 12 functions] `.?AVhkDataClassDict@@` -`class hkDataObjectDict`: VTable [0x0000000003263B98, 0x0000000000000000 offset, 25 functions] `.?AVhkDataObjectDict@@` -`struct VariableIntArrayImplementation`: VTable [0x0000000003263C98, 0x0000000000000000 offset, 38 functions] `.?AUVariableIntArrayImplementation@@` -`struct BasicArrayImplementation`: VTable [0x0000000003263EB8, 0x0000000000000000 offset, 37 functions] `.?AU?$BasicArrayImplementation@E$00@@` -`struct ByteArrayImplementation`: VTable [0x0000000003264028, 0x0000000000000000 offset, 37 functions] `.?AUByteArrayImplementation@@` -`struct ArrayOfTuplesImplementation::View`: VTable [0x0000000003264198, 0x0000000000000000 offset, 37 functions] `.?AUView@ArrayOfTuplesImplementation@@` -`struct ArrayOfTuplesImplementation`: VTable [0x0000000003264308, 0x0000000000000000 offset, 37 functions] `.?AUArrayOfTuplesImplementation@@` -`struct BasicArrayImplementation`: VTable [0x0000000003264478, 0x0000000000000000 offset, 37 functions] `.?AU?$BasicArrayImplementation@M$02@@` -`struct RealArrayImplementation`: VTable [0x00000000032645E8, 0x0000000000000000 offset, 37 functions] `.?AURealArrayImplementation@@` -`struct VecArrayImplementation`: VTable [0x0000000003264758, 0x0000000000000000 offset, 37 functions] `.?AUVecArrayImplementation@@` -`struct BasicArrayImplementation`: VTable [0x00000000032648C8, 0x0000000000000000 offset, 37 functions] `.?AU?$BasicArrayImplementation@PEAVhkDataObjectImpl@@$07@@` -`struct PointerArrayImplementation`: VTable [0x0000000003264A38, 0x0000000000000000 offset, 37 functions] `.?AUPointerArrayImplementation@@` -`struct BasicArrayImplementation`: VTable [0x0000000003264BA8, 0x0000000000000000 offset, 37 functions] `.?AU?$BasicArrayImplementation@PEAD$09@@` -`struct CstringArrayImplementation`: VTable [0x0000000003264D18, 0x0000000000000000 offset, 37 functions] `.?AUCstringArrayImplementation@@` -`struct StructArrayImplementation::Object`: VTable [0x0000000003264E88, 0x0000000000000000 offset, 31 functions] `.?AUObject@StructArrayImplementation@@` -`struct StructArrayImplementation`: VTable [0x0000000003264FC0, 0x0000000000000000 offset, 37 functions] `.?AUStructArrayImplementation@@` -`class hkDataWorldNative`: VTable [0x0000000003265238, 0x0000000000000000 offset, 23 functions] `.?AVhkDataWorldNative@@` -`class hkDataClassNative`: VTable [0x00000000032653D0, 0x0000000000000000 offset, 12 functions] `.?AVhkDataClassNative@@` -`class hkDataArrayNative`: VTable [0x0000000003265450, 0x0000000000000000 offset, 37 functions] `.?AVhkDataArrayNative@@` -`class hkDataObjectNative`: VTable [0x00000000032655C0, 0x0000000000000000 offset, 25 functions] `.?AVhkDataObjectNative@@` -`class hkBinaryTagfileReader`: VTable [0x00000000032657F8, 0x0000000000000000 offset, 4 functions] `.?AVhkBinaryTagfileReader@@` -`class hkVersionPatchManager`: VTable [0x0000000003265CD0, 0x0000000000000000 offset, 3 functions] `.?AVhkVersionPatchManager@@` -`class hkSubStreamWriter`: VTable [0x0000000003265EE0, 0x0000000000000000 offset, 9 functions] `.?AVhkSubStreamWriter@@` -`class hkBinaryPackfileWriter`: VTable [0x0000000003265F40, 0x0000000000000000 offset, 11 functions] `.?AVhkBinaryPackfileWriter@@` -`class hkPooledAllocator`: VTable [0x0000000003265FB8, 0x0000000000000000 offset, 11 functions] `.?AVhkPooledAllocator@@` -`class hkTempDetectAllocator`: VTable [0x0000000003266030, 0x0000000000000000 offset, 11 functions] `.?AVhkTempDetectAllocator@@` -`class hkSerializeDeprecated`: VTable [0x00000000032663A0, 0x0000000000000000 offset, 7 functions] `.?AVhkSerializeDeprecated@@` -`class hkOffsetOnlyStreamWriter`: VTable [0x0000000003266688, 0x0000000000000000 offset, 9 functions] `.?AVhkOffsetOnlyStreamWriter@@` -`class hkObjectWriter`: VTable [0x00000000032666E8, 0x0000000000000000 offset, 5 functions] `.?AVhkObjectWriter@@` -`class hkPlatformObjectWriter::Cache`: VTable [0x0000000003266728, 0x0000000000000000 offset, 3 functions] `.?AVCache@hkPlatformObjectWriter@@` -`class hkPlatformObjectWriter`: VTable [0x0000000003266750, 0x0000000000000000 offset, 5 functions] `.?AVhkPlatformObjectWriter@@` -`class hkPackfileData`: VTable [0x0000000003266790, 0x0000000000000000 offset, 8 functions] `.?AVhkPackfileData@@` -`class hkObjectResource`: VTable [0x0000000003266818, 0x0000000000000000 offset, 9 functions] `.?AVhkObjectResource@@` -`class hkIArchive`: VTable [0x0000000003266878, 0x0000000000000000 offset, 3 functions] `.?AVhkIArchive@@` -`class hkParserBuffer`: VTable [0x000000000326A620, 0x0000000000000000 offset, 3 functions] `.?AVhkParserBuffer@@` -`class hkXmlStreamParser`: VTable [0x000000000326A648, 0x0000000000000000 offset, 3 functions] `.?AVhkXmlStreamParser@@` -`class hkXmlLexAnalyzer`: VTable [0x000000000326A870, 0x0000000000000000 offset, 3 functions] `.?AVhkXmlLexAnalyzer@@` -`class `anonymous namespace'::AudioLoadTask`: VTable [0x000000000326BF20, 0x0000000000000000 offset, 13 functions] `.?AVAudioLoadTask@?A0xe657e1a9@@` -`class AudioLoadForPlaybackTask`: VTable [0x000000000326C070, 0x0000000000000000 offset, 13 functions] `.?AVAudioLoadForPlaybackTask@@` -`class AudioLoadToCacheTask`: VTable [0x000000000326C0F8, 0x0000000000000000 offset, 13 functions] `.?AVAudioLoadToCacheTask@@` -`class BSAudioManagerThread`: VTable [0x000000000326C180, 0x0000000000000000 offset, 3 functions] `.?AVBSAudioManagerThread@@` -`class BSAudio`: VTable [0x000000000326C628, 0x0000000000000000 offset, 12 functions] `.?AVBSAudio@@` -`class BSGameSound`: VTable [0x000000000326C708, 0x0000000000000000 offset, 25 functions] `.?AVBSGameSound@@` -`class BSNullImplAudio`: VTable [0x000000000326CA58, 0x0000000000000000 offset, 12 functions] `.?AVBSNullImplAudio@@` -`struct IBSTCreator`: VTable [0x000000000326CAD8, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSAudio@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000326CB00, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBSNullImplAudio@@VBSAudio@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000326CB28, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBSNullImplAudio@@VBSAudio@@@@V?$BSTCreateFactoryManager@VBSFixedStringCI@@VBSAudio@@$03@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000326CB50, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBSNullImplAudio@@V?$BSTCreateFactoryManager@VBSFixedStringCI@@VBSAudio@@$03@@@@` -`class BSAudioListener`: VTable [0x000000000326CD40, 0x0000000000000000 offset, 6 functions] `.?AVBSAudioListener@@` -`class BSNullImplAudioListener`: VTable [0x000000000326CD88, 0x0000000000000000 offset, 6 functions] `.?AVBSNullImplAudioListener@@` -`class BSNullImplGameSound`: VTable [0x000000000326CDD0, 0x0000000000000000 offset, 25 functions] `.?AVBSNullImplGameSound@@` -`class BSXAudio2Audio`: VTable [0x000000000326D1E8, 0x0000000000000000 offset, 12 functions] `.?AVBSXAudio2Audio@@` -`struct `anonymous namespace'::ReverbModCallback`: VTable [0x000000000326D2B0, 0x0000000000000000 offset, 3 functions] `.?AUReverbModCallback@?A0x23794dae@@` -`class `anonymous namespace'::MonitorAPO`: VTable [0x000000000326D348, 0x0000000000000000 offset, 15 functions] `.?AVMonitorAPO@?A0x23794dae@@` -`struct BSTDerivedCreator`: VTable [0x000000000326D440, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBSXAudio2Audio@@VBSAudio@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000326D468, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBSXAudio2Audio@@VBSAudio@@@@V?$BSTCreateFactoryManager@VBSFixedStringCI@@VBSAudio@@$03@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000326D490, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBSXAudio2Audio@@V?$BSTCreateFactoryManager@VBSFixedStringCI@@VBSAudio@@$03@@@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x000000000326D590, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0IA@@@@@` -`class BSXAudio2AudioListener`: VTable [0x000000000326D5E8, 0x0000000000000000 offset, 7 functions] `.?AVBSXAudio2AudioListener@@` -`class BSXAudio2GameSound`: VTable [0x000000000326D8E8, 0x0000000000000000 offset, 25 functions] `.?AVBSXAudio2GameSound@@` -`class BSXAudio2GameSound`: VTable [0x000000000326D9E8, 0x00000000000000D0 offset, 7 functions] `.?AVBSXAudio2GameSound@@` -`class BSAudioDataSrc`: VTable [0x000000000326E298, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAudioDataSrc@VBSXAudio2DataSrc@@@@` -`class BSXAudio2DataSrc`: VTable [0x000000000326E2B0, 0x0000000000000000 offset, 1 functions] `.?AVBSXAudio2DataSrc@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x000000000326E638, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0CE@@@@@` -`class BSCoreMessage`: VTable [0x000000000326E8F0, 0x0000000000000000 offset, 5 functions] `.?AVBSCoreMessage@@` -`class IMemoryTracker`: VTable [0x000000000326EF68, 0x0000000000000000 offset, 8 functions] `.?AVIMemoryTracker@@` -`class IMemoryManagerFile`: VTable [0x000000000326EFC0, 0x0000000000000000 offset, 5 functions] `.?AVIMemoryManagerFile@@` -`class IMemoryManagerFileFactory`: VTable [0x000000000326F000, 0x0000000000000000 offset, 4 functions] `.?AVIMemoryManagerFileFactory@@` -`class NullMemoryTracker`: VTable [0x000000000326F030, 0x0000000000000000 offset, 8 functions] `.?AVNullMemoryTracker@@` -`class MemoryHeap`: VTable [0x000000000326FE78, 0x0000000000000000 offset, 34 functions] `.?AVMemoryHeap@@` -`class UnitTestMemoryHeap`: VTable [0x000000000326FFC8, 0x0000000000000000 offset, 34 functions] `.?AVUnitTestMemoryHeap@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000032703C8, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0M@@@@@` -`class ScrapHeap`: VTable [0x0000000003270498, 0x0000000000000000 offset, 17 functions] `.?AVScrapHeap@@` -`class BSThread`: VTable [0x0000000003270B20, 0x0000000000000000 offset, 3 functions] `.?AVBSThread@@` -`class CompactingStore::MoveCallback`: VTable [0x0000000003270F68, 0x0000000000000000 offset, 2 functions] `.?AVMoveCallback@CompactingStore@@` -`class CompactingStore::Store`: VTable [0x0000000003270F88, 0x0000000000000000 offset, 14 functions] `.?AVStore@CompactingStore@@` -`class CompactingStore::NoopMoveCallback`: VTable [0x0000000003271070, 0x0000000000000000 offset, 2 functions] `.?AVNoopMoveCallback@CompactingStore@@` -`class IMemoryHeap`: VTable [0x0000000003271848, 0x0000000000000000 offset, 28 functions] `.?AVIMemoryHeap@@` -`class ZeroOverheadHeap`: VTable [0x0000000003271960, 0x0000000000000000 offset, 28 functions] `.?AVZeroOverheadHeap@@` -`class UnitTestZeroOverheadHeap`: VTable [0x0000000003271A78, 0x0000000000000000 offset, 28 functions] `.?AVUnitTestZeroOverheadHeap@@` -`class IMemoryStoreBase::IBlockWalker`: VTable [0x0000000003271C88, 0x0000000000000000 offset, 6 functions] `.?AVIBlockWalker@IMemoryStoreBase@@` -`class IMemoryStoreBase`: VTable [0x0000000003271CD0, 0x0000000000000000 offset, 14 functions] `.?AVIMemoryStoreBase@@` -`class IMemoryStore`: VTable [0x0000000003271D60, 0x0000000000000000 offset, 17 functions] `.?AVIMemoryStore@@` -`class BSSmallBlockAllocatorUtil::UserPoolBase`: VTable [0x0000000003271FE0, 0x0000000000000000 offset, 3 functions] `.?AVUserPoolBase@BSSmallBlockAllocatorUtil@@` -`class BSSmallBlockAllocator`: VTable [0x0000000003272008, 0x0000000000000000 offset, 17 functions] `.?AVBSSmallBlockAllocator@@` -`class BSStepThread`: VTable [0x0000000003272970, 0x0000000000000000 offset, 4 functions] `.?AVBSStepThread@@` -`class BSThreadEvent::`anonymous namespace'::Source`: VTable [0x00000000032729A0, 0x0000000000000000 offset, 1 functions] `.?AVSource@?A0x6319d8d7@BSThreadEvent@@` -`class MemoryTrashing::TrashingEventSource`: VTable [0x0000000003272C78, 0x0000000000000000 offset, 1 functions] `.?AVTrashingEventSource@MemoryTrashing@@` -`class AbstractHeap`: VTable [0x0000000003273090, 0x0000000000000000 offset, 34 functions] `.?AVAbstractHeap@@` -`class BSWin32GamerProfile`: VTable [0x00000000032751D0, 0x0000000000000000 offset, 6 functions] `.?AVBSWin32GamerProfile@@` -`class BSTEventSink`: VTable [0x00000000032754B8, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@VBSSaveDataEvent@@@@` -`class BSGamerProfile`: VTable [0x00000000032754D8, 0x0000000000000000 offset, 6 functions] `.?AVBSGamerProfile@@` -`class InputEvent`: VTable [0x0000000003275EA8, 0x0000000000000000 offset, 3 functions] `.?AVInputEvent@@` -`class IDEvent`: VTable [0x0000000003275ED0, 0x0000000000000000 offset, 3 functions] `.?AVIDEvent@@` -`class ButtonEvent`: VTable [0x0000000003275EF8, 0x0000000000000000 offset, 3 functions] `.?AVButtonEvent@@` -`class MouseMoveEvent`: VTable [0x0000000003276280, 0x0000000000000000 offset, 3 functions] `.?AVMouseMoveEvent@@` -`class ThumbstickEvent`: VTable [0x00000000032762A8, 0x0000000000000000 offset, 3 functions] `.?AVThumbstickEvent@@` -`class CharEvent`: VTable [0x00000000032762D0, 0x0000000000000000 offset, 3 functions] `.?AVCharEvent@@` -`class DeviceConnectEvent`: VTable [0x00000000032762F8, 0x0000000000000000 offset, 3 functions] `.?AVDeviceConnectEvent@@` -`class KinectEvent`: VTable [0x0000000003276320, 0x0000000000000000 offset, 3 functions] `.?AVKinectEvent@@` -`class BSIInputDevice`: VTable [0x0000000003276990, 0x0000000000000000 offset, 9 functions] `.?AVBSIInputDevice@@` -`class BSInputDevice`: VTable [0x00000000032769F0, 0x0000000000000000 offset, 9 functions] `.?AVBSInputDevice@@` -`class BSWin32KeyboardDevice`: VTable [0x0000000003276A50, 0x0000000000000000 offset, 11 functions] `.?AVBSWin32KeyboardDevice@@` -`class BSWin32MouseDevice`: VTable [0x0000000003276AC8, 0x0000000000000000 offset, 10 functions] `.?AVBSWin32MouseDevice@@` -`class BSPCGamepadDeviceHandler`: VTable [0x0000000003276DF8, 0x0000000000000000 offset, 9 functions] `.?AVBSPCGamepadDeviceHandler@@` -`class BSPCGamepadDeviceDelegate`: VTable [0x0000000003276E58, 0x0000000000000000 offset, 15 functions] `.?AVBSPCGamepadDeviceDelegate@@` -`class BSWin32GamepadDevice`: VTable [0x0000000003276EF8, 0x0000000000000000 offset, 15 functions] `.?AVBSWin32GamepadDevice@@` -`class BSPCOrbisGamepadDevice`: VTable [0x0000000003276F98, 0x0000000000000000 offset, 15 functions] `.?AVBSPCOrbisGamepadDevice@@` -`class BSKeyboardDevice`: VTable [0x0000000003277178, 0x0000000000000000 offset, 11 functions] `.?AVBSKeyboardDevice@@` -`class BSWin32VirtualKeyboardDevice`: VTable [0x0000000003277248, 0x0000000000000000 offset, 14 functions] `.?AVBSWin32VirtualKeyboardDevice@@` -`class BSMouseDevice`: VTable [0x0000000003277398, 0x0000000000000000 offset, 10 functions] `.?AVBSMouseDevice@@` -`class BSGamepadDevice`: VTable [0x00000000032777A0, 0x0000000000000000 offset, 15 functions] `.?AVBSGamepadDevice@@` -`class BSVirtualKeyboardDevice`: VTable [0x0000000003277CB8, 0x0000000000000000 offset, 14 functions] `.?AVBSVirtualKeyboardDevice@@` -`class ICommandLineHandler`: VTable [0x0000000003278B48, 0x0000000000000000 offset, 2 functions] `.?AVICommandLineHandler@@` -`class StackTrace::StackTraceCapture`: VTable [0x0000000003278B68, 0x0000000000000000 offset, 1 functions] `.?AV?$StackTraceCapture@UPCPolicy@StackTrace@@@StackTrace@@` -`class `anonymous namespace'::MemoryTraceWriteCommandLineHandler`: VTable [0x0000000003278B80, 0x0000000000000000 offset, 2 functions] `.?AVMemoryTraceWriteCommandLineHandler@?A0xa4bafc96@@` -`class StackTrace::StackTraceRecorder`: VTable [0x0000000003278EC0, 0x0000000000000000 offset, 1 functions] `.?AVStackTraceRecorder@StackTrace@@` -`class BSWin32ExceptionHandler`: VTable [0x00000000032791F0, 0x0000000000000000 offset, 8 functions] `.?AVBSWin32ExceptionHandler@@` -`class `anonymous namespace'::StackWalker`: VTable [0x0000000003279268, 0x0000000000000000 offset, 6 functions] `.?AVStackWalker@?A0x26bb0d07@@` -`class BSTMessageQueue`: VTable [0x00000000032798C0, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@UStackFrameDatum@StackTrace@@@@` -`class BSTCommonMessageQueue`: VTable [0x0000000003279900, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@UStackFrameDatum@StackTrace@@@@` -`class BSTCommonStaticMessageQueue`: VTable [0x0000000003279950, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonStaticMessageQueue@UStackFrameDatum@StackTrace@@$0BAA@@@` -`class StackTrace::MemoryTraceWrite`: VTable [0x00000000032799A0, 0x0000000000000000 offset, 3 functions] `.?AVMemoryTraceWrite@StackTrace@@` -`class StackTrace::StackTraceTranslate`: VTable [0x0000000003279BF8, 0x0000000000000000 offset, 1 functions] `.?AVStackTraceTranslate@StackTrace@@` -`class StackTrace::MemoryTracker`: VTable [0x0000000003279E18, 0x0000000000000000 offset, 8 functions] `.?AVMemoryTracker@StackTrace@@` -`class BSTEventSink`: VTable [0x000000000327A028, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UTrashEvent@MemoryTrashing@@@@` -`class BSExceptionHandler`: VTable [0x000000000327A048, 0x0000000000000000 offset, 8 functions] `.?AVBSExceptionHandler@@` -`class `anonymous namespace'::AssertHandler`: VTable [0x000000000327A0F8, 0x0000000000000000 offset, 2 functions] `.?AVAssertHandler@?A0xdf07ec30@@` -`class bhkNiCollisionObject`: VTable [0x000000000327AE50, 0x0000000000000000 offset, 52 functions] `.?AVbhkNiCollisionObject@@` -`class bhkWindListener`: VTable [0x000000000327B218, 0x0000000000000000 offset, 11 functions] `.?AVbhkWindListener@@` -`class bhkWorldObject`: VTable [0x000000000327BA18, 0x0000000000000000 offset, 55 functions] `.?AVbhkWorldObject@@` -`class ahkpWorld`: VTable [0x000000000327D340, 0x0000000000000000 offset, 3 functions] `.?AVahkpWorld@@` -`struct bhkWorldCinfo`: VTable [0x000000000327D368, 0x0000000000000000 offset, 3 functions] `.?AUbhkWorldCinfo@@` -`class bhkWorld::bhkConstraintProjector`: VTable [0x000000000327D390, 0x0000000000000000 offset, 7 functions] `.?AVbhkConstraintProjector@bhkWorld@@` -`class bhkWorld`: VTable [0x000000000327D3E0, 0x0000000000000000 offset, 58 functions] `.?AVbhkWorld@@` -`class bhkAction`: VTable [0x000000000327D618, 0x0000000000000000 offset, 53 functions] `.?AVbhkAction@@` -`class bhkUnaryAction`: VTable [0x000000000327D820, 0x0000000000000000 offset, 53 functions] `.?AVbhkUnaryAction@@` -`class bhkMouseSpringAction`: VTable [0x000000000327DA28, 0x0000000000000000 offset, 53 functions] `.?AVbhkMouseSpringAction@@` -`class bhkTaskletManagerCallback`: VTable [0x000000000327DE20, 0x0000000000000000 offset, 2 functions] `.?AVbhkTaskletManagerCallback@@` -`class bhkOnStartupCallback`: VTable [0x000000000327DE50, 0x0000000000000000 offset, 2 functions] `.?AVbhkOnStartupCallback@@` -`class bhkOnExitCallback`: VTable [0x000000000327DE70, 0x0000000000000000 offset, 2 functions] `.?AVbhkOnExitCallback@@` -`class bhkRefObject`: VTable [0x000000000327E810, 0x0000000000000000 offset, 41 functions] `.?AVbhkRefObject@@` -`class bhkSphereShape`: VTable [0x000000000327FDF0, 0x0000000000000000 offset, 59 functions] `.?AVbhkSphereShape@@` -`class bhkAttachmentCollisionObject`: VTable [0x00000000032800C0, 0x0000000000000000 offset, 52 functions] `.?AVbhkAttachmentCollisionObject@@` -`struct hkConstraintCinfo`: VTable [0x00000000032809D0, 0x0000000000000000 offset, 6 functions] `.?AUhkConstraintCinfo@@` -`class bhkConstraint`: VTable [0x0000000003280A18, 0x0000000000000000 offset, 57 functions] `.?AVbhkConstraint@@` -`struct hkStiffSpringConstraintCinfo`: VTable [0x0000000003280C48, 0x0000000000000000 offset, 6 functions] `.?AUhkStiffSpringConstraintCinfo@@` -`class bhkStiffSpringConstraint`: VTable [0x0000000003280C90, 0x0000000000000000 offset, 57 functions] `.?AVbhkStiffSpringConstraint@@` -`struct hkBallAndSocketConstraintCinfo`: VTable [0x0000000003280EC0, 0x0000000000000000 offset, 6 functions] `.?AUhkBallAndSocketConstraintCinfo@@` -`struct hkGenericConstraintCinfo`: VTable [0x0000000003280F08, 0x0000000000000000 offset, 6 functions] `.?AUhkGenericConstraintCinfo@@` -`struct hkFixedConstraintCinfo`: VTable [0x0000000003280F50, 0x0000000000000000 offset, 6 functions] `.?AUhkFixedConstraintCinfo@@` -`class bhkBinaryAction`: VTable [0x00000000032812E8, 0x0000000000000000 offset, 56 functions] `.?AVbhkBinaryAction@@` -`class `anonymous namespace'::bhkConstraintDisabler`: VTable [0x0000000003281A00, 0x0000000000000000 offset, 7 functions] `.?AVbhkConstraintDisabler@?A0xb7f624ed@@` -`class bhkTransformShape`: VTable [0x0000000003281C90, 0x0000000000000000 offset, 59 functions] `.?AVbhkTransformShape@@` -`class bhkCapsuleShape`: VTable [0x0000000003282238, 0x0000000000000000 offset, 59 functions] `.?AVbhkCapsuleShape@@` -`struct hkLimitedHingeConstraintCinfo`: VTable [0x00000000032826A0, 0x0000000000000000 offset, 6 functions] `.?AUhkLimitedHingeConstraintCinfo@@` -`class bhkLimitedHingeConstraint`: VTable [0x00000000032826E8, 0x0000000000000000 offset, 57 functions] `.?AVbhkLimitedHingeConstraint@@` -`class ahkpMalleableConstraintData`: VTable [0x0000000003282C80, 0x0000000000000000 offset, 19 functions] `.?AVahkpMalleableConstraintData@@` -`struct hkMalleableConstraintCinfo`: VTable [0x0000000003282D40, 0x0000000000000000 offset, 6 functions] `.?AUhkMalleableConstraintCinfo@@` -`class bhkMalleableConstraint`: VTable [0x0000000003282D88, 0x0000000000000000 offset, 57 functions] `.?AVbhkMalleableConstraint@@` -`class bhkCollisionFilter`: VTable [0x00000000032834C8, 0x0000000000000000 offset, 4 functions] `.?AVbhkCollisionFilter@@` -`class bhkCollisionFilter`: VTable [0x00000000032834F8, 0x0000000000000010 offset, 2 functions] `.?AVbhkCollisionFilter@@` -`class bhkCollisionFilter`: VTable [0x0000000003283518, 0x0000000000000018 offset, 4 functions] `.?AVbhkCollisionFilter@@` -`class bhkCollisionFilter`: VTable [0x0000000003283548, 0x0000000000000020 offset, 2 functions] `.?AVbhkCollisionFilter@@` -`class bhkCollisionFilter`: VTable [0x0000000003283568, 0x0000000000000028 offset, 2 functions] `.?AVbhkCollisionFilter@@` -`class bhkRagdollShareData`: VTable [0x0000000003285248, 0x0000000000000000 offset, 39 functions] `.?AVbhkRagdollShareData@@` -`class bhkRagdollController`: VTable [0x00000000032853C8, 0x0000000000000000 offset, 3 functions] `.?AVbhkRagdollController@@` -`class bhkRigidBodyT`: VTable [0x0000000003286030, 0x0000000000000000 offset, 65 functions] `.?AVbhkRigidBodyT@@` -`class bhkWorldM`: VTable [0x00000000032863D0, 0x0000000000000000 offset, 58 functions] `.?AVbhkWorldM@@` -`class NiTLargeArray >`: VTable [0x0000000003286CD0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@VhkNiTriStripsData@@V?$NiTNewInterface@VhkNiTriStripsData@@@@@@` -`class NiTLargeObjectArray`: VTable [0x0000000003286CE8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeObjectArray@VhkNiTriStripsData@@@@` -`class hkNiTriStripsShape`: VTable [0x0000000003286D00, 0x0000000000000000 offset, 14 functions] `.?AVhkNiTriStripsShape@@` -`class hkNiTriStripsShape`: VTable [0x0000000003286D90, 0x0000000000000020 offset, 7 functions] `.?AVhkNiTriStripsShape@@` -`class hkNormalTriangleShape`: VTable [0x0000000003286DE0, 0x0000000000000000 offset, 19 functions] `.?AVhkNormalTriangleShape@@` -`class hkPackedNiTriStripsData`: VTable [0x0000000003287160, 0x0000000000000000 offset, 39 functions] `.?AVhkPackedNiTriStripsData@@` -`class hkPackedNiTriStripsShape`: VTable [0x00000000032872E0, 0x0000000000000000 offset, 14 functions] `.?AVhkPackedNiTriStripsShape@@` -`class hkPackedNiTriStripsShape`: VTable [0x0000000003287370, 0x0000000000000020 offset, 7 functions] `.?AVhkPackedNiTriStripsShape@@` -`class bhkShapeCollection`: VTable [0x00000000032877D8, 0x0000000000000000 offset, 60 functions] `.?AVbhkShapeCollection@@` -`class bhkNiTriStripsShape`: VTable [0x0000000003287A70, 0x0000000000000000 offset, 60 functions] `.?AVbhkNiTriStripsShape@@` -`class bhkPackedNiTriStripsShape`: VTable [0x0000000003288050, 0x0000000000000000 offset, 60 functions] `.?AVbhkPackedNiTriStripsShape@@` -`class NiTArray >`: VTable [0x00000000032882D8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@GV?$NiTMallocInterface@G@@@@` -`class NiTPrimitiveArray`: VTable [0x00000000032882F0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@G@@` -`class bhkBlendCollisionObject`: VTable [0x00000000032883D8, 0x0000000000000000 offset, 52 functions] `.?AVbhkBlendCollisionObject@@` -`class hkBSHeightFieldShape`: VTable [0x0000000003288840, 0x0000000000000000 offset, 15 functions] `.?AVhkBSHeightFieldShape@@` -`class hkProductFeatures`: VTable [0x000000000328B6D8, 0x0000000000000000 offset, 3 functions] `.?AVhkProductFeatures@@` -`class BSTEventSink`: VTable [0x000000000328B728, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UThreadEvent@BSThreadEvent@@@@` -`class `anonymous namespace'::HavokThreadMemorySink`: VTable [0x000000000328B748, 0x0000000000000000 offset, 2 functions] `.?AVHavokThreadMemorySink@?A0x27c658b1@@` -`class hkpCharacterState`: VTable [0x000000000328C410, 0x0000000000000000 offset, 8 functions] `.?AVhkpCharacterState@@` -`class bhkCharacterState`: VTable [0x000000000328C468, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterState@@` -`class BSBound`: VTable [0x000000000328C4C8, 0x0000000000000000 offset, 41 functions] `.?AVBSBound@@` -`class bhkCharacterControllerCinfo`: VTable [0x000000000328C660, 0x0000000000000000 offset, 6 functions] `.?AVbhkCharacterControllerCinfo@@` -`class bhkCharacterController`: VTable [0x000000000328C6A8, 0x0000000000000000 offset, 20 functions] `.?AVbhkCharacterController@@` -`class bhkICharOrientationController`: VTable [0x000000000328C778, 0x0000000000000000 offset, 11 functions] `.?AVbhkICharOrientationController@@` -`class bhkCharacterStateClimbing`: VTable [0x000000000328C7F0, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateClimbing@@` -`class bhkCharacterStateFlying`: VTable [0x000000000328C850, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateFlying@@` -`class bhkCollisionBox`: VTable [0x000000000328C8B0, 0x0000000000000000 offset, 56 functions] `.?AVbhkCollisionBox@@` -`class bhkListShape`: VTable [0x000000000328CAD8, 0x0000000000000000 offset, 60 functions] `.?AVbhkListShape@@` -`class bhkCachingShapePhantom`: VTable [0x000000000328DB18, 0x0000000000000000 offset, 55 functions] `.?AVbhkCachingShapePhantom@@` -`class hkpSafeEaseConstraintsAction`: VTable [0x000000000328DE00, 0x0000000000000000 offset, 8 functions] `.?AVhkpSafeEaseConstraintsAction@@` -`class hkpSafeEaseConstraintsAction`: VTable [0x000000000328DE58, 0x0000000000000068 offset, 7 functions] `.?AVhkpSafeEaseConstraintsAction@@` -`class hkVisualDebugger`: VTable [0x000000000328DEA8, 0x0000000000000000 offset, 5 functions] `.?AVhkVisualDebugger@@` -`class hkProcessContext`: VTable [0x000000000328E3B8, 0x0000000000000000 offset, 3 functions] `.?AVhkProcessContext@@` -`class hkpActionListener`: VTable [0x000000000328E3E0, 0x0000000000000000 offset, 3 functions] `.?AVhkpActionListener@@` -`class hkpPhysicsContext`: VTable [0x000000000328E408, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhysicsContext@@` -`class hkpPhysicsContext`: VTable [0x000000000328E430, 0x0000000000000010 offset, 3 functions] `.?AVhkpPhysicsContext@@` -`class hkpPhysicsContext`: VTable [0x000000000328E458, 0x00000000000000A0 offset, 3 functions] `.?AVhkpPhysicsContext@@` -`class hkpPhysicsContext`: VTable [0x000000000328E480, 0x00000000000000A8 offset, 6 functions] `.?AVhkpPhysicsContext@@` -`class hkpPhysicsContext`: VTable [0x000000000328E4C8, 0x00000000000000B0 offset, 5 functions] `.?AVhkpPhysicsContext@@` -`class hkpPhysicsContext`: VTable [0x000000000328E508, 0x00000000000000B8 offset, 7 functions] `.?AVhkpPhysicsContext@@` -`class hkpPhysicsContext`: VTable [0x000000000328E558, 0x00000000000000C0 offset, 3 functions] `.?AVhkpPhysicsContext@@` -`class bhkBipedOrientationController`: VTable [0x000000000328E7C0, 0x0000000000000000 offset, 11 functions] `.?AVbhkBipedOrientationController@@` -`class hkThreadMemory`: VTable [0x000000000328EA78, 0x0000000000000000 offset, 12 functions] `.?AVhkThreadMemory@@` -`class bhkMemorySystem`: VTable [0x000000000328EAF8, 0x0000000000000000 offset, 23 functions] `.?AVbhkMemorySystem@@` -`class `anonymous namespace'::bhkLifoAllocator`: VTable [0x000000000328EBF8, 0x0000000000000000 offset, 11 functions] `.?AVbhkLifoAllocator@?A0x5ebd44c2@@` -`class hkaRagdollRaycastInterface`: VTable [0x000000000328F9B8, 0x0000000000000000 offset, 2 functions] `.?AVhkaRagdollRaycastInterface@@` -`class bhkRagdollPenetrationUtil`: VTable [0x000000000328F9D8, 0x0000000000000000 offset, 2 functions] `.?AVbhkRagdollPenetrationUtil@@` -`class hkpIslandActivationListener`: VTable [0x000000000328FBE8, 0x0000000000000000 offset, 3 functions] `.?AVhkpIslandActivationListener@@` -`class hkpSuspendInactiveAgentsUtil`: VTable [0x000000000328FC10, 0x0000000000000000 offset, 3 functions] `.?AVhkpSuspendInactiveAgentsUtil@@` -`class hkpSuspendInactiveAgentsUtil`: VTable [0x000000000328FC38, 0x0000000000000010 offset, 3 functions] `.?AVhkpSuspendInactiveAgentsUtil@@` -`class hkpSuspendInactiveAgentsUtil`: VTable [0x000000000328FC60, 0x0000000000000018 offset, 3 functions] `.?AVhkpSuspendInactiveAgentsUtil@@` -`class `anonymous namespace'::NeverCollideFilter`: VTable [0x000000000328FC88, 0x0000000000000000 offset, 4 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` -`class `anonymous namespace'::NeverCollideFilter`: VTable [0x000000000328FCB8, 0x0000000000000010 offset, 2 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` -`class `anonymous namespace'::NeverCollideFilter`: VTable [0x000000000328FCD8, 0x0000000000000018 offset, 4 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` -`class `anonymous namespace'::NeverCollideFilter`: VTable [0x000000000328FD08, 0x0000000000000020 offset, 2 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` -`class `anonymous namespace'::NeverCollideFilter`: VTable [0x000000000328FD28, 0x0000000000000028 offset, 2 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` -`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x000000000328FD48, 0x0000000000000000 offset, 4 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` -`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x000000000328FD78, 0x0000000000000010 offset, 2 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` -`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x000000000328FD98, 0x0000000000000018 offset, 4 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` -`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x000000000328FDC8, 0x0000000000000020 offset, 2 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` -`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x000000000328FDE8, 0x0000000000000028 offset, 2 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` -`class hkPackfileWriter::AddObjectListener`: VTable [0x000000000328FE08, 0x0000000000000000 offset, 4 functions] `.?AVAddObjectListener@hkPackfileWriter@@` -`class hkpHavokSnapshot::ConvertListener`: VTable [0x000000000328FE38, 0x0000000000000000 offset, 4 functions] `.?AVConvertListener@hkpHavokSnapshot@@` -`class bhkCompressedMeshShapeData`: VTable [0x0000000003290658, 0x0000000000000000 offset, 39 functions] `.?AVbhkCompressedMeshShapeData@@` -`class bhkCompressedMeshShape`: VTable [0x00000000032907D8, 0x0000000000000000 offset, 60 functions] `.?AVbhkCompressedMeshShape@@` -`class `anonymous namespace'::hkpCompressedMeshShapeShared`: VTable [0x0000000003290B98, 0x0000000000000000 offset, 13 functions] `.?AVhkpCompressedMeshShapeShared@?A0x21846b8b@@` -`class `anonymous namespace'::hkpCompressedMeshShapeShared`: VTable [0x0000000003290C20, 0x0000000000000020 offset, 7 functions] `.?AVhkpCompressedMeshShapeShared@?A0x21846b8b@@` -`class bhkConvexSweepShape`: VTable [0x0000000003290F48, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexSweepShape@@` -`class bhkConvexTransformShape`: VTable [0x00000000032913B8, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexTransformShape@@` -`class bhkConvexTranslateShape`: VTable [0x0000000003291830, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexTranslateShape@@` -`class bhkConvexVerticesShape`: VTable [0x0000000003291D98, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexVerticesShape@@` -`class bhkCylinderShape`: VTable [0x0000000003292268, 0x0000000000000000 offset, 59 functions] `.?AVbhkCylinderShape@@` -`class bhkMultiSphereShape`: VTable [0x0000000003292740, 0x0000000000000000 offset, 59 functions] `.?AVbhkMultiSphereShape@@` -`class bhkHeightFieldShape`: VTable [0x0000000003292B78, 0x0000000000000000 offset, 59 functions] `.?AVbhkHeightFieldShape@@` -`class bhkPlaneShape`: VTable [0x0000000003292DB8, 0x0000000000000000 offset, 59 functions] `.?AVbhkPlaneShape@@` -`class bhkTriangleShape`: VTable [0x0000000003293358, 0x0000000000000000 offset, 59 functions] `.?AVbhkTriangleShape@@` -`class hkScaledMoppBvTreeShape`: VTable [0x0000000003293828, 0x0000000000000000 offset, 14 functions] `.?AVhkScaledMoppBvTreeShape@@` -`class bhkMoppBvTreeShape`: VTable [0x00000000032938B8, 0x0000000000000000 offset, 59 functions] `.?AVbhkMoppBvTreeShape@@` -`class bhkBallAndSocketConstraint`: VTable [0x0000000003294078, 0x0000000000000000 offset, 57 functions] `.?AVbhkBallAndSocketConstraint@@` -`struct hkConstraintChainCinfo`: VTable [0x00000000032944E0, 0x0000000000000000 offset, 6 functions] `.?AUhkConstraintChainCinfo@@` -`class bhkConstraintChain`: VTable [0x0000000003294528, 0x0000000000000000 offset, 58 functions] `.?AVbhkConstraintChain@@` -`struct hkBallSocketChainCinfo`: VTable [0x0000000003294760, 0x0000000000000000 offset, 6 functions] `.?AUhkBallSocketChainCinfo@@` -`class bhkBallSocketConstraintChain`: VTable [0x00000000032947A8, 0x0000000000000000 offset, 58 functions] `.?AVbhkBallSocketConstraintChain@@` -`class bhkGroupConstraint`: VTable [0x0000000003294B88, 0x0000000000000000 offset, 57 functions] `.?AVbhkGroupConstraint@@` -`struct hkHingeConstraintCinfo`: VTable [0x0000000003295008, 0x0000000000000000 offset, 6 functions] `.?AUhkHingeConstraintCinfo@@` -`class bhkHingeConstraint`: VTable [0x0000000003295050, 0x0000000000000000 offset, 57 functions] `.?AVbhkHingeConstraint@@` -`struct hkHingeLimitsConstraintCinfo`: VTable [0x00000000032954B0, 0x0000000000000000 offset, 6 functions] `.?AUhkHingeLimitsConstraintCinfo@@` -`class bhkHingeLimitsConstraint`: VTable [0x00000000032954F8, 0x0000000000000000 offset, 57 functions] `.?AVbhkHingeLimitsConstraint@@` -`class bhkGenericConstraint`: VTable [0x0000000003295990, 0x0000000000000000 offset, 57 functions] `.?AVbhkGenericConstraint@@` -`class bhkFixedConstraint`: VTable [0x0000000003295BC0, 0x0000000000000000 offset, 57 functions] `.?AVbhkFixedConstraint@@` -`struct hkPrismaticConstraintCinfo`: VTable [0x0000000003295FF0, 0x0000000000000000 offset, 6 functions] `.?AUhkPrismaticConstraintCinfo@@` -`class bhkPrismaticConstraint`: VTable [0x0000000003296038, 0x0000000000000000 offset, 57 functions] `.?AVbhkPrismaticConstraint@@` -`struct hkRagdollConstraintCinfo`: VTable [0x0000000003296498, 0x0000000000000000 offset, 6 functions] `.?AUhkRagdollConstraintCinfo@@` -`class bhkRagdollConstraint`: VTable [0x00000000032964E0, 0x0000000000000000 offset, 57 functions] `.?AVbhkRagdollConstraint@@` -`struct hkRagdollLimitsConstraintCinfo`: VTable [0x00000000032969D0, 0x0000000000000000 offset, 6 functions] `.?AUhkRagdollLimitsConstraintCinfo@@` -`class bhkRagdollLimitsConstraint`: VTable [0x0000000003296A18, 0x0000000000000000 offset, 57 functions] `.?AVbhkRagdollLimitsConstraint@@` -`struct hkWheelConstraintCinfo`: VTable [0x0000000003296FF8, 0x0000000000000000 offset, 6 functions] `.?AUhkWheelConstraintCinfo@@` -`class bhkWheelConstraint`: VTable [0x0000000003297040, 0x0000000000000000 offset, 57 functions] `.?AVbhkWheelConstraint@@` -`class ahkpBreakableConstraintData`: VTable [0x00000000032974D0, 0x0000000000000000 offset, 19 functions] `.?AVahkpBreakableConstraintData@@` -`struct hkBreakableConstraintCinfo`: VTable [0x0000000003297590, 0x0000000000000000 offset, 6 functions] `.?AUhkBreakableConstraintCinfo@@` -`class bhkBreakableConstraint`: VTable [0x00000000032975D8, 0x0000000000000000 offset, 57 functions] `.?AVbhkBreakableConstraint@@` -`class bhkAngularDashpotAction`: VTable [0x00000000032979F8, 0x0000000000000000 offset, 56 functions] `.?AVbhkAngularDashpotAction@@` -`class bhkDashpotAction`: VTable [0x0000000003297DC8, 0x0000000000000000 offset, 56 functions] `.?AVbhkDashpotAction@@` -`class bhkLiquidAction`: VTable [0x00000000032981F0, 0x0000000000000000 offset, 53 functions] `.?AVbhkLiquidAction@@` -`class bhkMotorAction`: VTable [0x00000000032985C0, 0x0000000000000000 offset, 53 functions] `.?AVbhkMotorAction@@` -`class bhkOrientHingedBodyAction`: VTable [0x00000000032989A8, 0x0000000000000000 offset, 54 functions] `.?AVbhkOrientHingedBodyAction@@` -`class bhkSpringAction`: VTable [0x0000000003298D90, 0x0000000000000000 offset, 56 functions] `.?AVbhkSpringAction@@` -`class bhkSPCollisionObject`: VTable [0x0000000003299060, 0x0000000000000000 offset, 52 functions] `.?AVbhkSPCollisionObject@@` -`class bhkBlendController`: VTable [0x0000000003299370, 0x0000000000000000 offset, 49 functions] `.?AVbhkBlendController@@` -`class bhkExtraData`: VTable [0x0000000003299850, 0x0000000000000000 offset, 41 functions] `.?AVbhkExtraData@@` -`class bhkRagdollTemplateData`: VTable [0x0000000003299F60, 0x0000000000000000 offset, 39 functions] `.?AVbhkRagdollTemplateData@@` -`class bhkRagdollTemplate`: VTable [0x000000000329A128, 0x0000000000000000 offset, 42 functions] `.?AVbhkRagdollTemplate@@` -`class bhkPoseArray`: VTable [0x000000000329A408, 0x0000000000000000 offset, 39 functions] `.?AVbhkPoseArray@@` -`struct hkPointToPathConstraintCinfo`: VTable [0x000000000329AB60, 0x0000000000000000 offset, 6 functions] `.?AUhkPointToPathConstraintCinfo@@` -`class bhkPositionConstraintMotor`: VTable [0x000000000329AD68, 0x0000000000000000 offset, 26 functions] `.?AVbhkPositionConstraintMotor@@` -`class bhkVelocityConstraintMotor`: VTable [0x000000000329AF18, 0x0000000000000000 offset, 26 functions] `.?AVbhkVelocityConstraintMotor@@` -`class bhkSpringDamperConstraintMotor`: VTable [0x000000000329B0C8, 0x0000000000000000 offset, 26 functions] `.?AVbhkSpringDamperConstraintMotor@@` -`class hkDisplayGeometry`: VTable [0x000000000329B228, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayGeometry@@` -`class hkDisplayCapsule`: VTable [0x000000000329B268, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayCapsule@@` -`class hkpTriSampledHeightFieldBvTreeShape`: VTable [0x000000000329B980, 0x0000000000000000 offset, 14 functions] `.?AVhkpTriSampledHeightFieldBvTreeShape@@` -`class hkpHeightFieldShape`: VTable [0x000000000329BA10, 0x0000000000000000 offset, 13 functions] `.?AVhkpHeightFieldShape@@` -`class hkpSampledHeightFieldShape`: VTable [0x000000000329BA98, 0x0000000000000000 offset, 15 functions] `.?AVhkpSampledHeightFieldShape@@` -`struct `anonymous namespace'::NearestHitCollector`: VTable [0x000000000329BB50, 0x0000000000000000 offset, 2 functions] `.?AUNearestHitCollector@?A0x498db440@@` -`struct `anonymous namespace'::RotateNormalHitCollector`: VTable [0x000000000329BB70, 0x0000000000000000 offset, 2 functions] `.?AURotateNormalHitCollector@?A0x498db440@@` -`class hkpTriSampledHeightFieldCollection`: VTable [0x000000000329BB90, 0x0000000000000000 offset, 13 functions] `.?AVhkpTriSampledHeightFieldCollection@@` -`class hkpTriSampledHeightFieldCollection`: VTable [0x000000000329BC18, 0x0000000000000020 offset, 7 functions] `.?AVhkpTriSampledHeightFieldCollection@@` -`class hkpCompressedSampledHeightFieldShape`: VTable [0x000000000329BC68, 0x0000000000000000 offset, 15 functions] `.?AVhkpCompressedSampledHeightFieldShape@@` -`struct hkMonitorStreamColorTable`: VTable [0x000000000329BF58, 0x0000000000000000 offset, 3 functions] `.?AUhkMonitorStreamColorTable@@` -`class hkpPlaneShape`: VTable [0x000000000329D180, 0x0000000000000000 offset, 13 functions] `.?AVhkpPlaneShape@@` -`class hkpStorageSampledHeightFieldShape`: VTable [0x000000000329D2A8, 0x0000000000000000 offset, 15 functions] `.?AVhkpStorageSampledHeightFieldShape@@` -`class hkpFastMeshShape`: VTable [0x000000000329D870, 0x0000000000000000 offset, 14 functions] `.?AVhkpFastMeshShape@@` -`class hkpFastMeshShape`: VTable [0x000000000329D900, 0x0000000000000020 offset, 7 functions] `.?AVhkpFastMeshShape@@` -`class hkbCameraShakeEventPayload`: VTable [0x000000000330A828, 0x0000000000000000 offset, 3 functions] `.?AVhkbCameraShakeEventPayload@@` -`class hkbParticleSystemEventPayload`: VTable [0x000000000330A878, 0x0000000000000000 offset, 3 functions] `.?AVhkbParticleSystemEventPayload@@` -`class hkbStateChooser`: VTable [0x000000000330A8C8, 0x0000000000000000 offset, 4 functions] `.?AVhkbStateChooser@@` -`class hkbTestStateChooser`: VTable [0x000000000330A8F8, 0x0000000000000000 offset, 4 functions] `.?AVhkbTestStateChooser@@` -`class hkbSimulationControlCommand`: VTable [0x000000000330A948, 0x0000000000000000 offset, 3 functions] `.?AVhkbSimulationControlCommand@@` -`class hkbCharacterControlCommand`: VTable [0x000000000330A970, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterControlCommand@@` -`class hkbRaiseEventCommand`: VTable [0x000000000330A998, 0x0000000000000000 offset, 3 functions] `.?AVhkbRaiseEventCommand@@` -`class hkbSetWordVariableCommand`: VTable [0x000000000330A9C0, 0x0000000000000000 offset, 3 functions] `.?AVhkbSetWordVariableCommand@@` -`class hkbSetLocalTimeOfClipGeneratorCommand`: VTable [0x000000000330A9E8, 0x0000000000000000 offset, 3 functions] `.?AVhkbSetLocalTimeOfClipGeneratorCommand@@` -`class hkbSetBehaviorCommand`: VTable [0x000000000330AA10, 0x0000000000000000 offset, 3 functions] `.?AVhkbSetBehaviorCommand@@` -`class hkbSetNodePropertyCommand`: VTable [0x000000000330AA38, 0x0000000000000000 offset, 3 functions] `.?AVhkbSetNodePropertyCommand@@` -`class hkbCharacterAddedInfo`: VTable [0x000000000330AA60, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterAddedInfo@@` -`class hkbCharacterInfo`: VTable [0x000000000330AA88, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterInfo@@` -`class hkbCharacterSteppedInfo`: VTable [0x000000000330AAB0, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterSteppedInfo@@` -`class hkbCharacterSkinInfo`: VTable [0x000000000330AAD8, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterSkinInfo@@` -`class hkbBehaviorInfo`: VTable [0x000000000330AB00, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorInfo@@` -`class hkbBehaviorEventsInfo`: VTable [0x000000000330AB28, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorEventsInfo@@` -`class hkbEventRaisedInfo`: VTable [0x000000000330AB50, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventRaisedInfo@@` -`class hkbSimulationStateInfo`: VTable [0x000000000330AB78, 0x0000000000000000 offset, 3 functions] `.?AVhkbSimulationStateInfo@@` -`class hkbLinkedSymbolInfo`: VTable [0x000000000330ABA0, 0x0000000000000000 offset, 3 functions] `.?AVhkbLinkedSymbolInfo@@` -`class hkbAuxiliaryNodeInfo`: VTable [0x000000000330ABC8, 0x0000000000000000 offset, 3 functions] `.?AVhkbAuxiliaryNodeInfo@@` -`class hkbBehaviorGraphInternalStateInfo`: VTable [0x000000000330ABF0, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorGraphInternalStateInfo@@` -`class hkClassPointerVtable::VtableRegistry`: VTable [0x000000000330AF78, 0x0000000000000000 offset, 6 functions] `.?AVVtableRegistry@hkClassPointerVtable@@` -`struct hkSerializeDeprecated2`: VTable [0x000000000330AFC0, 0x0000000000000000 offset, 7 functions] `.?AUhkSerializeDeprecated2@@` -`class hkpHeightFieldAgent`: VTable [0x000000000330B180, 0x0000000000000000 offset, 14 functions] `.?AVhkpHeightFieldAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x000000000330B210, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpHeightFieldAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x000000000330B2A0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpHeightFieldAgent@@@@` -`class hkHeightFieldRayForwardingCollector`: VTable [0x000000000330B3C8, 0x0000000000000000 offset, 2 functions] `.?AVhkHeightFieldRayForwardingCollector@@` -`class hkpContinuousSimulation`: VTable [0x000000000330B410, 0x0000000000000000 offset, 22 functions] `.?AVhkpContinuousSimulation@@` -`class hkpMultiThreadedSimulation::MtEntityEntityBroadPhaseListener`: VTable [0x000000000330B770, 0x0000000000000000 offset, 3 functions] `.?AVMtEntityEntityBroadPhaseListener@hkpMultiThreadedSimulation@@` -`class hkpMultiThreadedSimulation::MtPhantomBroadPhaseListener`: VTable [0x000000000330B798, 0x0000000000000000 offset, 3 functions] `.?AVMtPhantomBroadPhaseListener@hkpMultiThreadedSimulation@@` -`class hkpMultiThreadedSimulation::MtBroadPhaseBorderListener`: VTable [0x000000000330B7C0, 0x0000000000000000 offset, 3 functions] `.?AVMtBroadPhaseBorderListener@hkpMultiThreadedSimulation@@` -`class hkpMultiThreadedSimulation`: VTable [0x000000000330B7E8, 0x0000000000000000 offset, 22 functions] `.?AVhkpMultiThreadedSimulation@@` -`class hkpCharacterContext`: VTable [0x0000000003338B40, 0x0000000000000000 offset, 3 functions] `.?AVhkpCharacterContext@@` -`class hkpCharacterStateManager`: VTable [0x0000000003338B68, 0x0000000000000000 offset, 3 functions] `.?AVhkpCharacterStateManager@@` -`class bhkCharacterStateInAir`: VTable [0x0000000003338C20, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateInAir@@` -`class bhkCharacterStateJumping`: VTable [0x0000000003338CE0, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateJumping@@` -`class bhkCharacterStateOnGround`: VTable [0x0000000003338E90, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateOnGround@@` -`class bhkCharacterStateSwimming`: VTable [0x0000000003339008, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateSwimming@@` -`class hkCharControllerShape`: VTable [0x0000000003339130, 0x0000000000000000 offset, 19 functions] `.?AVhkCharControllerShape@@` -`class bhkCharControllerShape`: VTable [0x00000000033391F0, 0x0000000000000000 offset, 59 functions] `.?AVbhkCharControllerShape@@` -`class bhkQuadOrientationController`: VTable [0x00000000033395F8, 0x0000000000000000 offset, 11 functions] `.?AVbhkQuadOrientationController@@` -`class `anonymous namespace'::bhkClosestRBRayHitCollector`: VTable [0x0000000003339768, 0x0000000000000000 offset, 2 functions] `.?AVbhkClosestRBRayHitCollector@?A0xa769fd1d@@` -`class hkProcessFactory`: VTable [0x00000000033397F0, 0x0000000000000000 offset, 3 functions] `.?AVhkProcessFactory@@` -`class hkProcess`: VTable [0x0000000003339830, 0x0000000000000000 offset, 8 functions] `.?AVhkProcess@@` -`class hkCommandRouter`: VTable [0x0000000003339888, 0x0000000000000000 offset, 3 functions] `.?AVhkCommandRouter@@` -`class hkProcessHandler`: VTable [0x00000000033398B0, 0x0000000000000000 offset, 9 functions] `.?AVhkProcessHandler@@` -`class hkServerProcessHandler`: VTable [0x0000000003339910, 0x0000000000000000 offset, 3 functions] `.?AVhkServerProcessHandler@@` -`class hkServerProcessHandler`: VTable [0x0000000003339938, 0x0000000000000010 offset, 9 functions] `.?AVhkServerProcessHandler@@` -`class hkServerProcessHandler`: VTable [0x0000000003339998, 0x0000000000000018 offset, 8 functions] `.?AVhkServerProcessHandler@@` -`class hkDebugDisplayHandler`: VTable [0x0000000003339A18, 0x0000000000000000 offset, 27 functions] `.?AVhkDebugDisplayHandler@@` -`class hkDebugDisplayProcess`: VTable [0x0000000003339B28, 0x0000000000000000 offset, 3 functions] `.?AVhkDebugDisplayProcess@@` -`class hkDebugDisplayProcess`: VTable [0x0000000003339B50, 0x0000000000000010 offset, 8 functions] `.?AVhkDebugDisplayProcess@@` -`class hkDebugDisplayProcess`: VTable [0x0000000003339BA8, 0x0000000000000040 offset, 27 functions] `.?AVhkDebugDisplayProcess@@` -`class hkInspectProcess`: VTable [0x0000000003339CB8, 0x0000000000000000 offset, 3 functions] `.?AVhkInspectProcess@@` -`class hkInspectProcess`: VTable [0x0000000003339CE0, 0x0000000000000010 offset, 8 functions] `.?AVhkInspectProcess@@` -`class hkRemoteObjectProcess`: VTable [0x0000000003339D50, 0x0000000000000000 offset, 3 functions] `.?AVhkRemoteObjectProcess@@` -`class hkRemoteObjectProcess`: VTable [0x0000000003339D78, 0x0000000000000010 offset, 8 functions] `.?AVhkRemoteObjectProcess@@` -`class hkStatisticsProcess`: VTable [0x0000000003339DD0, 0x0000000000000000 offset, 3 functions] `.?AVhkStatisticsProcess@@` -`class hkStatisticsProcess`: VTable [0x0000000003339DF8, 0x0000000000000010 offset, 8 functions] `.?AVhkStatisticsProcess@@` -`class hkMemorySnapshotProcess`: VTable [0x0000000003339E50, 0x0000000000000000 offset, 3 functions] `.?AVhkMemorySnapshotProcess@@` -`class hkMemorySnapshotProcess`: VTable [0x0000000003339E78, 0x0000000000000010 offset, 8 functions] `.?AVhkMemorySnapshotProcess@@` -`class hkpBroadphaseViewer`: VTable [0x0000000003339EF0, 0x0000000000000000 offset, 3 functions] `.?AVhkpBroadphaseViewer@@` -`class hkpBroadphaseViewer`: VTable [0x0000000003339F18, 0x0000000000000010 offset, 8 functions] `.?AVhkpBroadphaseViewer@@` -`class hkpBroadphaseViewer`: VTable [0x0000000003339F70, 0x0000000000000040 offset, 3 functions] `.?AVhkpBroadphaseViewer@@` -`class hkpBroadphaseViewer`: VTable [0x0000000003339F98, 0x0000000000000050 offset, 3 functions] `.?AVhkpBroadphaseViewer@@` -`class hkpMidphaseViewer`: VTable [0x0000000003339FE0, 0x0000000000000000 offset, 3 functions] `.?AVhkpMidphaseViewer@@` -`class hkpMidphaseViewer`: VTable [0x000000000333A008, 0x0000000000000010 offset, 8 functions] `.?AVhkpMidphaseViewer@@` -`class hkpMidphaseViewer`: VTable [0x000000000333A060, 0x0000000000000040 offset, 3 functions] `.?AVhkpMidphaseViewer@@` -`class hkpMidphaseViewer`: VTable [0x000000000333A088, 0x0000000000000050 offset, 3 functions] `.?AVhkpMidphaseViewer@@` -`class hkpConstraintViewer`: VTable [0x000000000333A0D8, 0x0000000000000000 offset, 3 functions] `.?AVhkpConstraintViewer@@` -`class hkpConstraintViewer`: VTable [0x000000000333A100, 0x0000000000000010 offset, 8 functions] `.?AVhkpConstraintViewer@@` -`class hkpConstraintViewer`: VTable [0x000000000333A158, 0x0000000000000040 offset, 3 functions] `.?AVhkpConstraintViewer@@` -`class hkpConstraintViewer`: VTable [0x000000000333A180, 0x0000000000000050 offset, 3 functions] `.?AVhkpConstraintViewer@@` -`class hkpActiveContactPointViewer`: VTable [0x000000000333A1D0, 0x0000000000000000 offset, 4 functions] `.?AVhkpActiveContactPointViewer@@` -`class hkpActiveContactPointViewer`: VTable [0x000000000333A200, 0x0000000000000010 offset, 8 functions] `.?AVhkpActiveContactPointViewer@@` -`class hkpActiveContactPointViewer`: VTable [0x000000000333A258, 0x0000000000000040 offset, 3 functions] `.?AVhkpActiveContactPointViewer@@` -`class hkpActiveContactPointViewer`: VTable [0x000000000333A280, 0x0000000000000050 offset, 3 functions] `.?AVhkpActiveContactPointViewer@@` -`class hkpInactiveContactPointViewer`: VTable [0x000000000333A2A8, 0x0000000000000000 offset, 4 functions] `.?AVhkpInactiveContactPointViewer@@` -`class hkpInactiveContactPointViewer`: VTable [0x000000000333A2D8, 0x0000000000000010 offset, 8 functions] `.?AVhkpInactiveContactPointViewer@@` -`class hkpInactiveContactPointViewer`: VTable [0x000000000333A330, 0x0000000000000040 offset, 3 functions] `.?AVhkpInactiveContactPointViewer@@` -`class hkpInactiveContactPointViewer`: VTable [0x000000000333A358, 0x0000000000000050 offset, 3 functions] `.?AVhkpInactiveContactPointViewer@@` -`class hkpToiContactPointViewer`: VTable [0x000000000333A3A0, 0x0000000000000000 offset, 3 functions] `.?AVhkpToiContactPointViewer@@` -`class hkpToiContactPointViewer`: VTable [0x000000000333A3C8, 0x0000000000000010 offset, 8 functions] `.?AVhkpToiContactPointViewer@@` -`class hkpToiContactPointViewer`: VTable [0x000000000333A420, 0x0000000000000040 offset, 3 functions] `.?AVhkpToiContactPointViewer@@` -`class hkpToiContactPointViewer`: VTable [0x000000000333A448, 0x0000000000000050 offset, 7 functions] `.?AVhkpToiContactPointViewer@@` -`class hkpToiCountViewer`: VTable [0x000000000333A4D0, 0x0000000000000000 offset, 3 functions] `.?AVhkpToiCountViewer@@` -`class hkpToiCountViewer`: VTable [0x000000000333A4F8, 0x0000000000000010 offset, 8 functions] `.?AVhkpToiCountViewer@@` -`class hkpToiCountViewer`: VTable [0x000000000333A550, 0x0000000000000040 offset, 3 functions] `.?AVhkpToiCountViewer@@` -`class hkpToiCountViewer`: VTable [0x000000000333A578, 0x0000000000000050 offset, 7 functions] `.?AVhkpToiCountViewer@@` -`class hkpToiCountViewer`: VTable [0x000000000333A5C8, 0x0000000000000058 offset, 3 functions] `.?AVhkpToiCountViewer@@` -`class hkpToiCountViewer`: VTable [0x000000000333A5F0, 0x0000000000000060 offset, 6 functions] `.?AVhkpToiCountViewer@@` -`class hkpPhantomDisplayViewer`: VTable [0x000000000333A650, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhantomDisplayViewer@@` -`class hkpPhantomDisplayViewer`: VTable [0x000000000333A678, 0x0000000000000010 offset, 8 functions] `.?AVhkpPhantomDisplayViewer@@` -`class hkpPhantomDisplayViewer`: VTable [0x000000000333A6D0, 0x0000000000000040 offset, 3 functions] `.?AVhkpPhantomDisplayViewer@@` -`class hkpPhantomDisplayViewer`: VTable [0x000000000333A6F8, 0x0000000000000050 offset, 5 functions] `.?AVhkpPhantomDisplayViewer@@` -`class hkpPhantomDisplayViewer`: VTable [0x000000000333A738, 0x0000000000000058 offset, 3 functions] `.?AVhkpPhantomDisplayViewer@@` -`class hkpUserShapePhantomTypeIdentifier`: VTable [0x000000000333A760, 0x0000000000000000 offset, 3 functions] `.?AVhkpUserShapePhantomTypeIdentifier@@` -`class hkpRigidBodyCentreOfMassViewer`: VTable [0x000000000333A868, 0x0000000000000000 offset, 3 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` -`class hkpRigidBodyCentreOfMassViewer`: VTable [0x000000000333A890, 0x0000000000000010 offset, 8 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` -`class hkpRigidBodyCentreOfMassViewer`: VTable [0x000000000333A8E8, 0x0000000000000040 offset, 3 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` -`class hkpRigidBodyCentreOfMassViewer`: VTable [0x000000000333A910, 0x0000000000000050 offset, 6 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` -`class hkpRigidBodyCentreOfMassViewer`: VTable [0x000000000333A958, 0x0000000000000058 offset, 3 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` -`class hkpRigidBodyInertiaViewer`: VTable [0x000000000333A9F0, 0x0000000000000000 offset, 3 functions] `.?AVhkpRigidBodyInertiaViewer@@` -`class hkpRigidBodyInertiaViewer`: VTable [0x000000000333AA18, 0x0000000000000010 offset, 8 functions] `.?AVhkpRigidBodyInertiaViewer@@` -`class hkpRigidBodyInertiaViewer`: VTable [0x000000000333AA70, 0x0000000000000040 offset, 3 functions] `.?AVhkpRigidBodyInertiaViewer@@` -`class hkpRigidBodyInertiaViewer`: VTable [0x000000000333AA98, 0x0000000000000050 offset, 6 functions] `.?AVhkpRigidBodyInertiaViewer@@` -`class hkpRigidBodyInertiaViewer`: VTable [0x000000000333AAE0, 0x0000000000000058 offset, 3 functions] `.?AVhkpRigidBodyInertiaViewer@@` -`class hkpShapeDisplayViewer`: VTable [0x000000000333AB68, 0x0000000000000000 offset, 5 functions] `.?AVhkpShapeDisplayViewer@@` -`class hkpShapeDisplayViewer`: VTable [0x000000000333ABA8, 0x0000000000000010 offset, 8 functions] `.?AVhkpShapeDisplayViewer@@` -`class hkpShapeDisplayViewer`: VTable [0x000000000333AC00, 0x0000000000000040 offset, 3 functions] `.?AVhkpShapeDisplayViewer@@` -`class hkpShapeDisplayViewer`: VTable [0x000000000333AC28, 0x0000000000000050 offset, 6 functions] `.?AVhkpShapeDisplayViewer@@` -`class hkpShapeDisplayViewer`: VTable [0x000000000333AC70, 0x0000000000000058 offset, 3 functions] `.?AVhkpShapeDisplayViewer@@` -`class hkCrcStreamWriter`: VTable [0x000000000333ACB8, 0x0000000000000000 offset, 9 functions] `.?AV?$hkCrcStreamWriter@_K$0?DGJDKIGKCIHIPALO@@@` -`class hkCrc64StreamWriter`: VTable [0x000000000333AD18, 0x0000000000000000 offset, 9 functions] `.?AVhkCrc64StreamWriter@@` -`class hkpConvexRadiusViewer`: VTable [0x000000000333AD98, 0x0000000000000000 offset, 3 functions] `.?AVhkpConvexRadiusViewer@@` -`class hkpConvexRadiusViewer`: VTable [0x000000000333ADC0, 0x0000000000000010 offset, 8 functions] `.?AVhkpConvexRadiusViewer@@` -`class hkpConvexRadiusViewer`: VTable [0x000000000333AE18, 0x0000000000000040 offset, 3 functions] `.?AVhkpConvexRadiusViewer@@` -`class hkpConvexRadiusViewer`: VTable [0x000000000333AE40, 0x0000000000000050 offset, 6 functions] `.?AVhkpConvexRadiusViewer@@` -`class hkpConvexRadiusViewer`: VTable [0x000000000333AE88, 0x0000000000000058 offset, 3 functions] `.?AVhkpConvexRadiusViewer@@` -`class hkpSweptTransformDisplayViewer`: VTable [0x000000000333AEE0, 0x0000000000000000 offset, 3 functions] `.?AVhkpSweptTransformDisplayViewer@@` -`class hkpSweptTransformDisplayViewer`: VTable [0x000000000333AF08, 0x0000000000000010 offset, 8 functions] `.?AVhkpSweptTransformDisplayViewer@@` -`class hkpSweptTransformDisplayViewer`: VTable [0x000000000333AF60, 0x0000000000000040 offset, 3 functions] `.?AVhkpSweptTransformDisplayViewer@@` -`class hkpSweptTransformDisplayViewer`: VTable [0x000000000333AF88, 0x0000000000000050 offset, 6 functions] `.?AVhkpSweptTransformDisplayViewer@@` -`class hkpSweptTransformDisplayViewer`: VTable [0x000000000333AFD0, 0x0000000000000058 offset, 3 functions] `.?AVhkpSweptTransformDisplayViewer@@` -`class hkpSimulationIslandViewer`: VTable [0x000000000333B090, 0x0000000000000000 offset, 3 functions] `.?AVhkpSimulationIslandViewer@@` -`class hkpSimulationIslandViewer`: VTable [0x000000000333B0B8, 0x0000000000000010 offset, 8 functions] `.?AVhkpSimulationIslandViewer@@` -`class hkpSimulationIslandViewer`: VTable [0x000000000333B110, 0x0000000000000040 offset, 3 functions] `.?AVhkpSimulationIslandViewer@@` -`class hkpSimulationIslandViewer`: VTable [0x000000000333B138, 0x0000000000000050 offset, 3 functions] `.?AVhkpSimulationIslandViewer@@` -`class hkpMousePickingViewer`: VTable [0x000000000333B188, 0x0000000000000000 offset, 3 functions] `.?AVhkpMousePickingViewer@@` -`class hkpMousePickingViewer`: VTable [0x000000000333B1B0, 0x0000000000000010 offset, 8 functions] `.?AVhkpMousePickingViewer@@` -`class hkpMousePickingViewer`: VTable [0x000000000333B208, 0x0000000000000040 offset, 3 functions] `.?AVhkpMousePickingViewer@@` -`class hkpWorldMemoryViewer`: VTable [0x000000000333B240, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldMemoryViewer@@` -`class hkpWorldMemoryViewer`: VTable [0x000000000333B268, 0x0000000000000010 offset, 8 functions] `.?AVhkpWorldMemoryViewer@@` -`class hkpWorldMemoryViewer`: VTable [0x000000000333B2C0, 0x0000000000000040 offset, 3 functions] `.?AVhkpWorldMemoryViewer@@` -`class hkpWorldSnapshotViewer`: VTable [0x000000000333B300, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldSnapshotViewer@@` -`class hkpWorldSnapshotViewer`: VTable [0x000000000333B328, 0x0000000000000010 offset, 8 functions] `.?AVhkpWorldSnapshotViewer@@` -`class hkpWorldSnapshotViewer`: VTable [0x000000000333B380, 0x0000000000000040 offset, 3 functions] `.?AVhkpWorldSnapshotViewer@@` -`class hkpVehicleViewer`: VTable [0x000000000333B410, 0x0000000000000000 offset, 3 functions] `.?AVhkpVehicleViewer@@` -`class hkpVehicleViewer`: VTable [0x000000000333B438, 0x0000000000000010 offset, 8 functions] `.?AVhkpVehicleViewer@@` -`class hkpVehicleViewer`: VTable [0x000000000333B490, 0x0000000000000040 offset, 3 functions] `.?AVhkpVehicleViewer@@` -`class hkpVehicleViewer`: VTable [0x000000000333B4B8, 0x0000000000000050 offset, 3 functions] `.?AVhkpVehicleViewer@@` -`class hkpVehicleViewer`: VTable [0x000000000333B4E0, 0x0000000000000058 offset, 3 functions] `.?AVhkpVehicleViewer@@` -`class hkpWeldingViewer`: VTable [0x000000000333B538, 0x0000000000000000 offset, 3 functions] `.?AVhkpWeldingViewer@@` -`class hkpWeldingViewer`: VTable [0x000000000333B560, 0x0000000000000010 offset, 8 functions] `.?AVhkpWeldingViewer@@` -`class hkpWeldingViewer`: VTable [0x000000000333B5B8, 0x0000000000000040 offset, 3 functions] `.?AVhkpWeldingViewer@@` -`class hkpWeldingViewer`: VTable [0x000000000333B5E0, 0x0000000000000050 offset, 3 functions] `.?AVhkpWeldingViewer@@` -`class hkpInconsistentWindingViewer`: VTable [0x000000000333B670, 0x0000000000000000 offset, 3 functions] `.?AVhkpInconsistentWindingViewer@@` -`class hkpInconsistentWindingViewer`: VTable [0x000000000333B698, 0x0000000000000010 offset, 8 functions] `.?AVhkpInconsistentWindingViewer@@` -`class hkpInconsistentWindingViewer`: VTable [0x000000000333B6F0, 0x0000000000000040 offset, 3 functions] `.?AVhkpInconsistentWindingViewer@@` -`class hkpInconsistentWindingViewer`: VTable [0x000000000333B718, 0x0000000000000050 offset, 3 functions] `.?AVhkpInconsistentWindingViewer@@` -`class hkpInconsistentWindingViewer`: VTable [0x000000000333B740, 0x0000000000000058 offset, 6 functions] `.?AVhkpInconsistentWindingViewer@@` -`class hkpSingleBodyConstraintViewer`: VTable [0x000000000333B7F0, 0x0000000000000000 offset, 3 functions] `.?AVhkpSingleBodyConstraintViewer@@` -`class hkpSingleBodyConstraintViewer`: VTable [0x000000000333B818, 0x0000000000000010 offset, 8 functions] `.?AVhkpSingleBodyConstraintViewer@@` -`class hkpSingleBodyConstraintViewer`: VTable [0x000000000333B870, 0x0000000000000040 offset, 3 functions] `.?AVhkpSingleBodyConstraintViewer@@` -`class hkpSingleBodyConstraintViewer`: VTable [0x000000000333B898, 0x0000000000000050 offset, 3 functions] `.?AVhkpSingleBodyConstraintViewer@@` -`class hkpSingleBodyConstraintViewer`: VTable [0x000000000333B8C0, 0x0000000000000058 offset, 6 functions] `.?AVhkpSingleBodyConstraintViewer@@` -`class hkSolverAllocator`: VTable [0x000000000333B930, 0x0000000000000000 offset, 11 functions] `.?AVhkSolverAllocator@@` -`class bhkThreadMemorySource`: VTable [0x000000000333BDA0, 0x0000000000000000 offset, 11 functions] `.?AVbhkThreadMemorySource@@` -`class bhkThreadMemorySource`: VTable [0x000000000333BE18, 0x0000000000000008 offset, 28 functions] `.?AVbhkThreadMemorySource@@` -`class hkJobThreadPool`: VTable [0x000000000333C250, 0x0000000000000000 offset, 10 functions] `.?AVhkJobThreadPool@@` -`class hkCpuJobThreadPool`: VTable [0x000000000333C2C0, 0x0000000000000000 offset, 10 functions] `.?AVhkCpuJobThreadPool@@` -`class hkaDetectRagdollPenetration`: VTable [0x000000000333C360, 0x0000000000000000 offset, 3 functions] `.?AVhkaDetectRagdollPenetration@@` -`struct hkpStorageMeshShape::SubpartStorage`: VTable [0x000000000333C388, 0x0000000000000000 offset, 3 functions] `.?AUSubpartStorage@hkpStorageMeshShape@@` -`class hkpStorageMeshShape`: VTable [0x000000000333C3B0, 0x0000000000000000 offset, 14 functions] `.?AVhkpStorageMeshShape@@` -`class hkpStorageMeshShape`: VTable [0x000000000333C440, 0x0000000000000020 offset, 7 functions] `.?AVhkpStorageMeshShape@@` -`struct hkpStorageExtendedMeshShape::MeshSubpartStorage`: VTable [0x000000000333C490, 0x0000000000000000 offset, 3 functions] `.?AUMeshSubpartStorage@hkpStorageExtendedMeshShape@@` -`struct hkpStorageExtendedMeshShape::ShapeSubpartStorage`: VTable [0x000000000333C4B8, 0x0000000000000000 offset, 3 functions] `.?AUShapeSubpartStorage@hkpStorageExtendedMeshShape@@` -`class hkpStorageExtendedMeshShape`: VTable [0x000000000333C4E0, 0x0000000000000000 offset, 15 functions] `.?AVhkpStorageExtendedMeshShape@@` -`class hkpStorageExtendedMeshShape`: VTable [0x000000000333C580, 0x0000000000000020 offset, 7 functions] `.?AVhkpStorageExtendedMeshShape@@` -`class hkpCompressedMeshShape`: VTable [0x000000000333CD18, 0x0000000000000000 offset, 13 functions] `.?AVhkpCompressedMeshShape@@` -`class hkpCompressedMeshShape`: VTable [0x000000000333CDA0, 0x0000000000000020 offset, 7 functions] `.?AVhkpCompressedMeshShape@@` -`class hkgpAbstractMesh`: VTable [0x000000000333CDF0, 0x0000000000000000 offset, 4 functions] `.?AV?$hkgpAbstractMesh@UEdge@hkgpIndexedMeshDefinitions@@UVertex@2@UTriangle@2@UhkContainerHeapAllocator@@@@` -`class hkDisplayCylinder`: VTable [0x000000000333CF20, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayCylinder@@` -`class hkLiquidAction`: VTable [0x000000000333D318, 0x0000000000000000 offset, 8 functions] `.?AVhkLiquidAction@@` -`class hkOrientHingedBodyAction`: VTable [0x000000000333D3E8, 0x0000000000000000 offset, 8 functions] `.?AVhkOrientHingedBodyAction@@` -`class bhkPointToPathConstraint`: VTable [0x000000000333D690, 0x0000000000000000 offset, 57 functions] `.?AVbhkPointToPathConstraint@@` -`class hkpMeshShape`: VTable [0x000000000333E568, 0x0000000000000000 offset, 14 functions] `.?AVhkpMeshShape@@` -`class hkpMeshShape`: VTable [0x000000000333E5F8, 0x0000000000000020 offset, 7 functions] `.?AVhkpMeshShape@@` -`class hkVersionRegistry`: VTable [0x000000000333E658, 0x0000000000000000 offset, 3 functions] `.?AVhkVersionRegistry@@` -`class ValidatedClassNameRegistry`: VTable [0x000000000333E680, 0x0000000000000000 offset, 11 functions] `.?AVValidatedClassNameRegistry@@` -`class hkRenamedClassNameRegistry`: VTable [0x000000000333E6F8, 0x0000000000000000 offset, 6 functions] `.?AVhkRenamedClassNameRegistry@@` -`class `anonymous namespace'::PackfileObjectCopier`: VTable [0x000000000333EFA8, 0x0000000000000000 offset, 6 functions] `.?AVPackfileObjectCopier@?A0x0aad51fa@@` -`class hkRemoteObjectClientSideListener`: VTable [0x000000000333F108, 0x0000000000000000 offset, 2 functions] `.?AVhkRemoteObjectClientSideListener@@` -`class hkbClientCharacterState`: VTable [0x000000000333F128, 0x0000000000000000 offset, 3 functions] `.?AVhkbClientCharacterState@@` -`class hkbBehaviorClient`: VTable [0x000000000333F150, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorClient@@` -`class hkbBehaviorClient`: VTable [0x000000000333F178, 0x0000000000000010 offset, 2 functions] `.?AVhkbBehaviorClient@@` -`class hkXmlPackfileWriter`: VTable [0x000000000333F230, 0x0000000000000000 offset, 11 functions] `.?AVhkXmlPackfileWriter@@` -`struct hkXmlObjectWriter::NameFromAddress`: VTable [0x000000000333F2A8, 0x0000000000000000 offset, 2 functions] `.?AUNameFromAddress@hkXmlObjectWriter@@` -`struct `anonymous namespace'::PackfileNameFromAddress`: VTable [0x000000000333F2C8, 0x0000000000000000 offset, 2 functions] `.?AUPackfileNameFromAddress@?A0x147ad74e@@` -`class hkXmlPackfileReader`: VTable [0x000000000333F410, 0x0000000000000000 offset, 15 functions] `.?AVhkXmlPackfileReader@@` -`class `anonymous namespace'::hkPatchClassInstanceXmlParser`: VTable [0x000000000333F4F8, 0x0000000000000000 offset, 6 functions] `.?AVhkPatchClassInstanceXmlParser@?A0x673c72ae@@` -`class hkXmlPackfileUpdateTracker`: VTable [0x000000000333F580, 0x0000000000000000 offset, 9 functions] `.?AVhkXmlPackfileUpdateTracker@@` -`class hkBinaryPackfileReader::BinaryPackfileData`: VTable [0x000000000333F750, 0x0000000000000000 offset, 8 functions] `.?AVBinaryPackfileData@hkBinaryPackfileReader@@` -`class hkBinaryPackfileReader`: VTable [0x000000000333F7A8, 0x0000000000000000 offset, 17 functions] `.?AVhkBinaryPackfileReader@@` -`class hkObjectInspector::ObjectListener`: VTable [0x000000000333F858, 0x0000000000000000 offset, 2 functions] `.?AVObjectListener@hkObjectInspector@@` -`class hkObjectUpdateTracker`: VTable [0x000000000333F878, 0x0000000000000000 offset, 9 functions] `.?AVhkObjectUpdateTracker@@` -`class `anonymous namespace'::PackfileObjectsCollector`: VTable [0x000000000333F918, 0x0000000000000000 offset, 2 functions] `.?AVPackfileObjectsCollector@?A0x71220c57@@` -`class `anonymous namespace'::PackfilePointersMapListener`: VTable [0x000000000333F938, 0x0000000000000000 offset, 2 functions] `.?AVPackfilePointersMapListener@?A0x71220c57@@` -`class `anonymous namespace'::PackfileCstringListener`: VTable [0x000000000333F958, 0x0000000000000000 offset, 2 functions] `.?AVPackfileCstringListener@?A0x71220c57@@` -`class `anonymous namespace'::hkContentsUpdateTracker`: VTable [0x000000000333F978, 0x0000000000000000 offset, 9 functions] `.?AVhkContentsUpdateTracker@?A0x71220c57@@` -`class `anonymous namespace'::ClassUpdateTracker`: VTable [0x000000000333F9D8, 0x0000000000000000 offset, 9 functions] `.?AVClassUpdateTracker@?A0x71220c57@@` -`class hkClassPointerVtable::TypeInfoRegistry`: VTable [0x000000000333FAB0, 0x0000000000000000 offset, 8 functions] `.?AVTypeInfoRegistry@hkClassPointerVtable@@` -`class hkpToiResourceMgr`: VTable [0x000000000333FB30, 0x0000000000000000 offset, 8 functions] `.?AVhkpToiResourceMgr@@` -`class hkpDefaultToiResourceMgr`: VTable [0x000000000333FB88, 0x0000000000000000 offset, 8 functions] `.?AVhkpDefaultToiResourceMgr@@` -`class hkpDeferredConstraintOwner`: VTable [0x000000000333FD98, 0x0000000000000000 offset, 7 functions] `.?AVhkpDeferredConstraintOwner@@` -`class hkSystemClock`: VTable [0x000000000333FE40, 0x0000000000000000 offset, 5 functions] `.?AVhkSystemClock@@` -`class hkWindowsSystemClock`: VTable [0x000000000333FE80, 0x0000000000000000 offset, 5 functions] `.?AVhkWindowsSystemClock@@` -`class hkDisplaySerializeOStream`: VTable [0x000000000333FEE0, 0x0000000000000000 offset, 3 functions] `.?AVhkDisplaySerializeOStream@@` -`class hkReplayStreamReader`: VTable [0x000000000333FF08, 0x0000000000000000 offset, 12 functions] `.?AVhkReplayStreamReader@@` -`class hkServerDebugDisplayHandler`: VTable [0x000000000333FFE0, 0x0000000000000000 offset, 3 functions] `.?AVhkServerDebugDisplayHandler@@` -`class hkServerDebugDisplayHandler`: VTable [0x0000000003340008, 0x0000000000000010 offset, 8 functions] `.?AVhkServerDebugDisplayHandler@@` -`class hkServerDebugDisplayHandler`: VTable [0x0000000003340060, 0x0000000000000040 offset, 27 functions] `.?AVhkServerDebugDisplayHandler@@` -`class hkDisplaySerializeIStream`: VTable [0x00000000033401F0, 0x0000000000000000 offset, 3 functions] `.?AVhkDisplaySerializeIStream@@` -`class hkVdbCommandWriter`: VTable [0x00000000033402F8, 0x0000000000000000 offset, 9 functions] `.?AVhkVdbCommandWriter@@` -`class hkpPhysicsContextWorldListener`: VTable [0x00000000033405E0, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhysicsContextWorldListener@@` -`class hkpWorldViewerBase`: VTable [0x0000000003340608, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldViewerBase@@` -`class hkpWorldViewerBase`: VTable [0x0000000003340630, 0x0000000000000010 offset, 8 functions] `.?AVhkpWorldViewerBase@@` -`class hkpWorldViewerBase`: VTable [0x0000000003340688, 0x0000000000000040 offset, 3 functions] `.?AVhkpWorldViewerBase@@` -`class hkDisplayAABB`: VTable [0x00000000033406B0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayAABB@@` -`class hkDisplaySemiCircle`: VTable [0x00000000033406F0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplaySemiCircle@@` -`class hkDisplayCone`: VTable [0x0000000003340730, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayCone@@` -`class hkDisplayPlane`: VTable [0x0000000003340770, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayPlane@@` -`class hkpContactPointViewer`: VTable [0x00000000033407D0, 0x0000000000000000 offset, 4 functions] `.?AVhkpContactPointViewer@@` -`class hkpContactPointViewer`: VTable [0x0000000003340800, 0x0000000000000010 offset, 8 functions] `.?AVhkpContactPointViewer@@` -`class hkpContactPointViewer`: VTable [0x0000000003340858, 0x0000000000000040 offset, 3 functions] `.?AVhkpContactPointViewer@@` -`class hkpContactPointViewer`: VTable [0x0000000003340880, 0x0000000000000050 offset, 3 functions] `.?AVhkpContactPointViewer@@` -`class hkDisplayGeometryBuilder`: VTable [0x0000000003340958, 0x0000000000000000 offset, 6 functions] `.?AVhkDisplayGeometryBuilder@@` -`class hkpShapeDisplayBuilder`: VTable [0x00000000033409A0, 0x0000000000000000 offset, 6 functions] `.?AVhkpShapeDisplayBuilder@@` -`class hkpUserShapeDisplayBuilder`: VTable [0x00000000033409E8, 0x0000000000000000 offset, 3 functions] `.?AVhkpUserShapeDisplayBuilder@@` -`class hkpShapeContinueData`: VTable [0x0000000003340A10, 0x0000000000000000 offset, 3 functions] `.?AVhkpShapeContinueData@@` -`class hkDisplayBox`: VTable [0x0000000003340AA0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayBox@@` -`class hkDisplayConvex`: VTable [0x0000000003340AE0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayConvex@@` -`class hkpUserShapeHashUtil`: VTable [0x0000000003340B20, 0x0000000000000000 offset, 3 functions] `.?AVhkpUserShapeHashUtil@@` -`class hkpConvexRadiusBuilder`: VTable [0x0000000003341508, 0x0000000000000000 offset, 6 functions] `.?AVhkpConvexRadiusBuilder@@` -`class hkpUserConvexRadiusBuilder`: VTable [0x0000000003341550, 0x0000000000000000 offset, 3 functions] `.?AVhkpUserConvexRadiusBuilder@@` -`class hkStreamStatisticsCollector`: VTable [0x0000000003341598, 0x0000000000000000 offset, 8 functions] `.?AVhkStreamStatisticsCollector@@` -`class hkpExtendedMeshShape`: VTable [0x00000000033415F0, 0x0000000000000000 offset, 15 functions] `.?AVhkpExtendedMeshShape@@` -`class hkpExtendedMeshShape`: VTable [0x0000000003341690, 0x0000000000000020 offset, 7 functions] `.?AVhkpExtendedMeshShape@@` -`class hkgpIndexedMesh`: VTable [0x00000000033416E0, 0x0000000000000000 offset, 4 functions] `.?AVhkgpIndexedMesh@@` -`class hkpMoppMediator`: VTable [0x0000000003341710, 0x0000000000000000 offset, 10 functions] `.?AVhkpMoppMediator@@` -`class hkpMoppShapeMediator`: VTable [0x0000000003341780, 0x0000000000000000 offset, 10 functions] `.?AVhkpMoppShapeMediator@@` -`class hkpMoppCachedShapeMediator`: VTable [0x00000000033417F0, 0x0000000000000000 offset, 10 functions] `.?AVhkpMoppCachedShapeMediator@@` -`class hkpMoppCostFunction`: VTable [0x0000000003341860, 0x0000000000000000 offset, 3 functions] `.?AVhkpMoppCostFunction@@` -`class hkBindingClassNameRegistry`: VTable [0x0000000003341930, 0x0000000000000000 offset, 14 functions] `.?AVhkBindingClassNameRegistry@@` -`class hkXmlObjectWriter`: VTable [0x00000000033419C0, 0x0000000000000000 offset, 6 functions] `.?AVhkXmlObjectWriter@@` -`class hkPackfileReader`: VTable [0x0000000003341CD0, 0x0000000000000000 offset, 14 functions] `.?AVhkPackfileReader@@` -`class hkLineNumberStreamReader`: VTable [0x0000000003341E48, 0x0000000000000000 offset, 12 functions] `.?AVhkLineNumberStreamReader@@` -`class hkObjectReader`: VTable [0x0000000003341EC8, 0x0000000000000000 offset, 5 functions] `.?AVhkObjectReader@@` -`class hkXmlObjectReader`: VTable [0x0000000003341F08, 0x0000000000000000 offset, 5 functions] `.?AVhkXmlObjectReader@@` -`class hkChainedClassNameRegistry`: VTable [0x00000000033420C0, 0x0000000000000000 offset, 11 functions] `.?AVhkChainedClassNameRegistry@@` -`struct hkXmlParser::Node`: VTable [0x0000000003342138, 0x0000000000000000 offset, 3 functions] `.?AUNode@hkXmlParser@@` -`struct hkXmlParser::StartElement`: VTable [0x0000000003342160, 0x0000000000000000 offset, 3 functions] `.?AUStartElement@hkXmlParser@@` -`struct hkXmlParser::EndElement`: VTable [0x0000000003342188, 0x0000000000000000 offset, 3 functions] `.?AUEndElement@hkXmlParser@@` -`struct hkXmlParser::Characters`: VTable [0x00000000033421B0, 0x0000000000000000 offset, 3 functions] `.?AUCharacters@hkXmlParser@@` -`class hkXmlParser`: VTable [0x00000000033421D8, 0x0000000000000000 offset, 6 functions] `.?AVhkXmlParser@@` -`class hkPackfileObjectUpdateTracker`: VTable [0x0000000003342340, 0x0000000000000000 offset, 9 functions] `.?AVhkPackfileObjectUpdateTracker@@` -`class hkDisplayMesh`: VTable [0x0000000003342CF0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayMesh@@` -`class hkDisplaySphere`: VTable [0x0000000003342D30, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplaySphere@@` -`class hkDisplayTaperedCapsule`: VTable [0x0000000003342D78, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayTaperedCapsule@@` -`class hkMeshTexture`: VTable [0x00000000033440A0, 0x0000000000000000 offset, 15 functions] `.?AVhkMeshTexture@@` -`class hkMemoryMeshTexture`: VTable [0x0000000003344178, 0x0000000000000000 offset, 15 functions] `.?AVhkMemoryMeshTexture@@` -`class hkpFixedBufferCdPointCollector`: VTable [0x0000000003344398, 0x0000000000000000 offset, 3 functions] `.?AVhkpFixedBufferCdPointCollector@@` -`class hkKdTreeCastCollector`: VTable [0x00000000033443E8, 0x0000000000000000 offset, 4 functions] `.?AVhkKdTreeCastCollector@@` -`class hkCpuWorldGetClosestPointsCollector`: VTable [0x0000000003344418, 0x0000000000000000 offset, 2 functions] `.?AVhkCpuWorldGetClosestPointsCollector@@` -`class hkCpuWorldGetClosestPointsCollector`: VTable [0x0000000003344438, 0x0000000000000008 offset, 2 functions] `.?AVhkCpuWorldGetClosestPointsCollector@@` -`class hkCpuWorldGetClosestPointsCollector`: VTable [0x0000000003344458, 0x0000000000000010 offset, 4 functions] `.?AVhkCpuWorldGetClosestPointsCollector@@` -`class hkCpuWorldLinearCastCollector`: VTable [0x00000000033444F0, 0x0000000000000000 offset, 2 functions] `.?AVhkCpuWorldLinearCastCollector@@` -`class hkCpuWorldLinearCastCollector`: VTable [0x0000000003344510, 0x0000000000000008 offset, 4 functions] `.?AVhkCpuWorldLinearCastCollector@@` -`class hkCpuWorldLinearCastCollector`: VTable [0x0000000003344540, 0x0000000000000010 offset, 2 functions] `.?AVhkCpuWorldLinearCastCollector@@` -`class hkCpuWorldLinearCastCollector`: VTable [0x0000000003344560, 0x0000000000000018 offset, 2 functions] `.?AVhkCpuWorldLinearCastCollector@@` -`class hkpFixedBufferRayHitCollector`: VTable [0x00000000033445D0, 0x0000000000000000 offset, 2 functions] `.?AVhkpFixedBufferRayHitCollector@@` -`class hkCpuWorldRayCastCollector`: VTable [0x0000000003344610, 0x0000000000000000 offset, 2 functions] `.?AVhkCpuWorldRayCastCollector@@` -`class hkCpuWorldRayCastCollector`: VTable [0x0000000003344630, 0x0000000000000008 offset, 4 functions] `.?AVhkCpuWorldRayCastCollector@@` -`class hkCpuWorldRayCastCollector`: VTable [0x0000000003344660, 0x0000000000000010 offset, 2 functions] `.?AVhkCpuWorldRayCastCollector@@` -`class hkCpuWorldRayCastCollector`: VTable [0x0000000003344680, 0x0000000000000018 offset, 2 functions] `.?AVhkCpuWorldRayCastCollector@@` -`class hkpSimpleMeshShape`: VTable [0x0000000003344798, 0x0000000000000000 offset, 13 functions] `.?AVhkpSimpleMeshShape@@` -`class hkpSimpleMeshShape`: VTable [0x0000000003344820, 0x0000000000000020 offset, 7 functions] `.?AVhkpSimpleMeshShape@@` -`class hkpMoppNodeMgr`: VTable [0x0000000003344890, 0x0000000000000000 offset, 5 functions] `.?AVhkpMoppNodeMgr@@` -`class hkpMoppSplitter`: VTable [0x00000000033448D0, 0x0000000000000000 offset, 6 functions] `.?AVhkpMoppSplitter@@` -`class hkpMoppDefaultSplitter`: VTable [0x0000000003344918, 0x0000000000000000 offset, 6 functions] `.?AVhkpMoppDefaultSplitter@@` -`class hkpMoppCodeGenerator`: VTable [0x00000000033449F0, 0x0000000000000000 offset, 3 functions] `.?AVhkpMoppCodeGenerator@@` -`class hkpMoppAssembler`: VTable [0x0000000003344A18, 0x0000000000000000 offset, 7 functions] `.?AVhkpMoppAssembler@@` -`class hkpMoppDefaultAssembler`: VTable [0x0000000003344A68, 0x0000000000000000 offset, 7 functions] `.?AVhkpMoppDefaultAssembler@@` -`class hkIndexedTransformSet`: VTable [0x0000000003344BE0, 0x0000000000000000 offset, 3 functions] `.?AVhkIndexedTransformSet@@` -`class hkMeshBody`: VTable [0x0000000003344C08, 0x0000000000000000 offset, 20 functions] `.?AVhkMeshBody@@` -`class hkMemoryMeshBody`: VTable [0x0000000003344CD8, 0x0000000000000000 offset, 20 functions] `.?AVhkMemoryMeshBody@@` -`class hkMeshMaterial`: VTable [0x0000000003344DA8, 0x0000000000000000 offset, 11 functions] `.?AVhkMeshMaterial@@` -`class hkMemoryMeshMaterial`: VTable [0x0000000003344E20, 0x0000000000000000 offset, 11 functions] `.?AVhkMemoryMeshMaterial@@` -`class hkMeshShape`: VTable [0x0000000003344E98, 0x0000000000000000 offset, 8 functions] `.?AVhkMeshShape@@` -`class hkMemoryMeshShape`: VTable [0x0000000003344EF0, 0x0000000000000000 offset, 8 functions] `.?AVhkMemoryMeshShape@@` -`class hkMeshVertexBuffer`: VTable [0x0000000003344F48, 0x0000000000000000 offset, 14 functions] `.?AVhkMeshVertexBuffer@@` -`class hkMemoryMeshVertexBuffer`: VTable [0x0000000003344FD8, 0x0000000000000000 offset, 14 functions] `.?AVhkMemoryMeshVertexBuffer@@` -`class hkMultipleVertexBuffer`: VTable [0x0000000003345068, 0x0000000000000000 offset, 14 functions] `.?AVhkMultipleVertexBuffer@@` -`class hkKdTreeBundleCastCollector`: VTable [0x0000000003345118, 0x0000000000000000 offset, 3 functions] `.?AVhkKdTreeBundleCastCollector@@` -`class hkKdTreeBuildInput::Mediator`: VTable [0x00000000033451C0, 0x0000000000000000 offset, 6 functions] `.?AVMediator@hkKdTreeBuildInput@@` -`class hkpCollidableMediator`: VTable [0x0000000003345208, 0x0000000000000000 offset, 6 functions] `.?AVhkpCollidableMediator@@` -`class hkKdTreeCpuBroadphaseBundleCastCollector`: VTable [0x0000000003345370, 0x0000000000000000 offset, 3 functions] `.?AVhkKdTreeCpuBroadphaseBundleCastCollector@@` -`class NiAllocator`: VTable [0x00000000033454B8, 0x0000000000000000 offset, 10 functions] `.?AVNiAllocator@@` -`class BSNiAllocator`: VTable [0x0000000003345528, 0x0000000000000000 offset, 10 functions] `.?AVBSNiAllocator@@` -`class NiStandardAllocator`: VTable [0x00000000033455D0, 0x0000000000000000 offset, 10 functions] `.?AVNiStandardAllocator@@` -`class NiSearchPath`: VTable [0x00000000033458D0, 0x0000000000000000 offset, 3 functions] `.?AVNiSearchPath@@` -`class NiFile`: VTable [0x00000000033459A8, 0x0000000000000000 offset, 8 functions] `.?AVNiFile@@` -`class NiBinaryStream`: VTable [0x0000000003345A08, 0x0000000000000000 offset, 6 functions] `.?AVNiBinaryStream@@` -`class NiLogBehavior`: VTable [0x0000000003345AF8, 0x0000000000000000 offset, 2 functions] `.?AVNiLogBehavior@@` -`class NiThread`: VTable [0x0000000003345BA8, 0x0000000000000000 offset, 1 functions] `.?AVNiThread@@` -`class BSStringPool::IterationCallback`: VTable [0x0000000003345FC0, 0x0000000000000000 offset, 3 functions] `.?AVIterationCallback@BSStringPool@@` -`struct `void __cdecl UnitTestBSFixedString(void)'::`2'::IterationTester`: VTable [0x00000000033464C0, 0x0000000000000000 offset, 3 functions] `.?AUIterationTester@?1??UnitTestBSFixedString@@YAXXZ@` -`class BSFile`: VTable [0x0000000003346798, 0x0000000000000000 offset, 19 functions] `.?AVBSFile@@` -`class BSSystemFileAsyncFunctor`: VTable [0x0000000003346998, 0x0000000000000000 offset, 2 functions] `.?AVBSSystemFileAsyncFunctor@@` -`class BSSystemFileStorage`: VTable [0x0000000003346F48, 0x0000000000000000 offset, 6 functions] `.?AVBSSystemFileStorage@@` -`class `anonymous namespace'::TestObjectBase`: VTable [0x0000000003347340, 0x0000000000000000 offset, 1 functions] `.?AVTestObjectBase@?A0x62b3d61a@@` -`class `anonymous namespace'::TestObjectDerived`: VTable [0x0000000003347358, 0x0000000000000000 offset, 1 functions] `.?AVTestObjectDerived@?A0x62b3d61a@@` -`class Archive`: VTable [0x0000000003347C58, 0x0000000000000000 offset, 19 functions] `.?AVArchive@@` -`class Archive`: VTable [0x0000000003347D18, 0x0000000000000180 offset, 2 functions] `.?AVArchive@@` -`class ArchiveFile`: VTable [0x0000000003347D38, 0x0000000000000000 offset, 19 functions] `.?AVArchiveFile@@` -`class CompressedArchiveFile`: VTable [0x0000000003347DF8, 0x0000000000000000 offset, 19 functions] `.?AVCompressedArchiveFile@@` -`class BSJobs::JobThread`: VTable [0x0000000003348AF0, 0x0000000000000000 offset, 3 functions] `.?AVJobThread@BSJobs@@` -`class BSSearchPath`: VTable [0x0000000003348DE8, 0x0000000000000000 offset, 4 functions] `.?AVBSSearchPath@@` -`class BSTaskletManagerCallback`: VTable [0x0000000003348E48, 0x0000000000000000 offset, 2 functions] `.?AVBSTaskletManagerCallback@@` -`class BSTaskletManager`: VTable [0x0000000003348E68, 0x0000000000000000 offset, 10 functions] `.?AVBSTaskletManager@@` -`class BSTaskletGroupData`: VTable [0x0000000003348ED8, 0x0000000000000000 offset, 5 functions] `.?AVBSTaskletGroupData@@` -`class BSSocket`: VTable [0x0000000003348F18, 0x0000000000000000 offset, 4 functions] `.?AVBSSocket@@` -`class UnitTest_BSStreamParserStream`: VTable [0x0000000003349080, 0x0000000000000000 offset, 6 functions] `.?AVUnitTest_BSStreamParserStream@@` -`class UnitTest_BSStreamParserData`: VTable [0x0000000003349120, 0x0000000000000000 offset, 4 functions] `.?AVUnitTest_BSStreamParserData@@` -`class BSWin32TaskletManager`: VTable [0x0000000003349320, 0x0000000000000000 offset, 10 functions] `.?AVBSWin32TaskletManager@@` -`class BSWin32TaskletGroupData`: VTable [0x00000000033493F0, 0x0000000000000000 offset, 5 functions] `.?AVBSWin32TaskletGroupData@@` -`class BSResource::StreamBase`: VTable [0x000000000334A568, 0x0000000000000000 offset, 5 functions] `.?AVStreamBase@BSResource@@` -`class BSResource::Stream`: VTable [0x000000000334A5A8, 0x0000000000000000 offset, 12 functions] `.?AVStream@BSResource@@` -`class BSResource::`anonymous namespace'::GlobalLocations`: VTable [0x000000000334A628, 0x0000000000000000 offset, 12 functions] `.?AVGlobalLocations@?A0x885b6526@BSResource@@` -`struct BSResource::`anonymous namespace'::LocationTree`: VTable [0x000000000334A6A8, 0x0000000000000000 offset, 12 functions] `.?AULocationTree@?A0x885b6526@BSResource@@` -`class BSResource::`anonymous namespace'::GlobalPaths`: VTable [0x000000000334A728, 0x0000000000000000 offset, 12 functions] `.?AVGlobalPaths@?A0x885b6526@BSResource@@` -`struct BSResource::`anonymous namespace'::DevNull::NullStream`: VTable [0x000000000334A7A8, 0x0000000000000000 offset, 12 functions] `.?AUNullStream@DevNull@?A0x885b6526@BSResource@@` -`class BSResource::`anonymous namespace'::DevNull`: VTable [0x000000000334A828, 0x0000000000000000 offset, 12 functions] `.?AVDevNull@?A0x885b6526@BSResource@@` -`class BSResource::`anonymous namespace'::EventSources`: VTable [0x000000000334A8A8, 0x0000000000000000 offset, 1 functions] `.?AVEventSources@?A0x885b6526@BSResource@@` -`class BSResource::`anonymous namespace'::ArchiveRegistrationTaskData`: VTable [0x000000000334A8D8, 0x0000000000000000 offset, 4 functions] `.?AVArchiveRegistrationTaskData@?A0x885b6526@BSResource@@` -`class `void __cdecl BSResource::RegisterPrefix(char const * __ptr64,char const * __ptr64,class BSResource::Location * __ptr64)'::`2'::Traverser`: VTable [0x000000000334A908, 0x0000000000000000 offset, 2 functions] `.?AVTraverser@?1??RegisterPrefix@BSResource@@YAXPEBD0PEAVLocation@2@@Z@` -`class BSResource::AsyncStream`: VTable [0x000000000334BB50, 0x0000000000000000 offset, 11 functions] `.?AVAsyncStream@BSResource@@` -`class BSResource::CacheDrive::Op`: VTable [0x000000000334BBC8, 0x0000000000000000 offset, 6 functions] `.?AVOp@CacheDrive@BSResource@@` -`class BSResource::ArchiveStream`: VTable [0x000000000334BC10, 0x0000000000000000 offset, 13 functions] `.?AVArchiveStream@BSResource@@` -`class BSResource::CompressedArchiveStream`: VTable [0x000000000334BC98, 0x0000000000000000 offset, 13 functions] `.?AVCompressedArchiveStream@BSResource@@` -`class BSResource::ArchiveManager`: VTable [0x000000000334BDE8, 0x0000000000000000 offset, 1 functions] `.?AVArchiveManager@BSResource@@` -`class BSResource::`anonymous namespace'::AsyncArchiveStream`: VTable [0x000000000334BE00, 0x0000000000000000 offset, 11 functions] `.?AVAsyncArchiveStream@?A0xea503307@BSResource@@` -`class BSResource::CacheArchiveOp`: VTable [0x000000000334BEB0, 0x0000000000000000 offset, 6 functions] `.?AVCacheArchiveOp@BSResource@@` -`class BSResource::IEntryDB::PostFlushNotify`: VTable [0x000000000334CBE0, 0x0000000000000000 offset, 3 functions] `.?AVPostFlushNotify@IEntryDB@BSResource@@` -`class BSResource::IEntryDB`: VTable [0x000000000334CC08, 0x0000000000000000 offset, 6 functions] `.?AVIEntryDB@BSResource@@` -`class BSResource::EntryDB`: VTable [0x000000000334CC50, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UTestTraits@?A0x20d9807e@@@BSResource@@` -`struct `anonymous namespace'::DevNull::NullStream`: VTable [0x000000000334CC98, 0x0000000000000000 offset, 12 functions] `.?AUNullStream@DevNull@?A0x20d9807e@@` -`struct `anonymous namespace'::DevNull`: VTable [0x000000000334CD18, 0x0000000000000000 offset, 12 functions] `.?AUDevNull@?A0x20d9807e@@` -`class `anonymous namespace'::TestThread`: VTable [0x000000000334CD98, 0x0000000000000000 offset, 3 functions] `.?AVTestThread@?A0x20d9807e@@` -`struct BSResource::`anonymous namespace'::LooseFileSBTraits::AsyncFunctor`: VTable [0x000000000334D4E8, 0x0000000000000000 offset, 2 functions] `.?AUAsyncFunctor@LooseFileSBTraits@?A0x0f80e1b4@BSResource@@` -`class BSResource::`anonymous namespace'::LooseFileAsyncBase::FunctorType`: VTable [0x000000000334D508, 0x0000000000000000 offset, 2 functions] `.?AVFunctorType@LooseFileAsyncBase@?A0x0f80e1b4@BSResource@@` -`class BSResource::`anonymous namespace'::LooseFileAsyncChild`: VTable [0x000000000334D528, 0x0000000000000000 offset, 11 functions] `.?AVLooseFileAsyncChild@?A0x0f80e1b4@BSResource@@` -`class BSResource::`anonymous namespace'::LooseFileAsyncStream`: VTable [0x000000000334D5A0, 0x0000000000000000 offset, 11 functions] `.?AVLooseFileAsyncStream@?A0x0f80e1b4@BSResource@@` -`class BSResource::`anonymous namespace'::LooseFileStream`: VTable [0x000000000334D670, 0x0000000000000000 offset, 12 functions] `.?AVLooseFileStream@?A0x0f80e1b4@BSResource@@` -`class BSResource::`anonymous namespace'::DefaultLocationData`: VTable [0x000000000334DC88, 0x0000000000000000 offset, 1 functions] `.?AVDefaultLocationData@?A0x20e487d0@BSResource@@` -`class BSResource::CacheDrive::Task`: VTable [0x000000000334E290, 0x0000000000000000 offset, 8 functions] `.?AVTask@CacheDrive@BSResource@@` -`class BSResource::CacheDrive`: VTable [0x000000000334E2E8, 0x0000000000000000 offset, 12 functions] `.?AVCacheDrive@BSResource@@` -`class BSResource::CacheDrive::Impl`: VTable [0x000000000334E420, 0x0000000000000000 offset, 3 functions] `.?AVImpl@CacheDrive@BSResource@@` -`class `anonymous namespace'::DeepCopyStream`: VTable [0x000000000334E978, 0x0000000000000000 offset, 24 functions] `.?AVDeepCopyStream@?A0x6a4d8f95@@` -`class NiObjectNET`: VTable [0x000000000334EDD8, 0x0000000000000000 offset, 39 functions] `.?AVNiObjectNET@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x000000000334F750, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiAVObject@@@@V?$NiTNewInterface@V?$NiPointer@VNiAVObject@@@@@@@@` -`class NiTObjectArray >`: VTable [0x000000000334F768, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiAVObject@@@@@@` -`class NiNode`: VTable [0x000000000334F780, 0x0000000000000000 offset, 64 functions] `.?AVNiNode@@` -`class NiSkinInstance`: VTable [0x000000000334FBC0, 0x0000000000000000 offset, 40 functions] `.?AVNiSkinInstance@@` -`class BSDismemberSkinInstance`: VTable [0x000000000334FD50, 0x0000000000000000 offset, 40 functions] `.?AVBSDismemberSkinInstance@@` -`class NiAVObject`: VTable [0x0000000003350110, 0x0000000000000000 offset, 55 functions] `.?AVNiAVObject@@` -`class BSDynamicLines`: VTable [0x00000000033506E8, 0x0000000000000000 offset, 58 functions] `.?AVBSDynamicLines@@` -`class NiCamera`: VTable [0x0000000003350A70, 0x0000000000000000 offset, 55 functions] `.?AVNiCamera@@` -`class NiTexture`: VTable [0x0000000003350EA8, 0x0000000000000000 offset, 45 functions] `.?AVNiTexture@@` -`class NiSourceTexture`: VTable [0x0000000003351068, 0x0000000000000000 offset, 45 functions] `.?AVNiSourceTexture@@` -`class BSTriShape`: VTable [0x0000000003351398, 0x0000000000000000 offset, 58 functions] `.?AVBSTriShape@@` -`class BSSkinnedDecalTriShape`: VTable [0x00000000033515D0, 0x0000000000000000 offset, 58 functions] `.?AVBSSkinnedDecalTriShape@@` -`class NiSwitchNode`: VTable [0x0000000003351A08, 0x0000000000000000 offset, 64 functions] `.?AVNiSwitchNode@@` -`class NiStream::BackgroundLoadProcedure`: VTable [0x0000000003352828, 0x0000000000000000 offset, 2 functions] `.?AVBackgroundLoadProcedure@NiStream@@` -`class NiTLargeArray,class NiTNewInterface > >`: VTable [0x0000000003352848, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@V?$NiPointer@VNiObject@@@@V?$NiTNewInterface@V?$NiPointer@VNiObject@@@@@@@@` -`class NiTLargeObjectArray >`: VTable [0x0000000003352860, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeObjectArray@V?$NiPointer@VNiObject@@@@@@` -`class NiTLargeArray >`: VTable [0x0000000003352878, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@IV?$NiTMallocInterface@I@@@@` -`class NiTLargePrimitiveArray`: VTable [0x0000000003352890, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargePrimitiveArray@I@@` -`class NiTLargeArray >`: VTable [0x00000000033528A8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@VBSFixedString@@V?$NiTNewInterface@VBSFixedString@@@@@@` -`class NiTLargeObjectArray`: VTable [0x00000000033528C0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeObjectArray@VBSFixedString@@@@` -`class NiTMapBase,class NiObject const * __ptr64,unsigned int>`: VTable [0x00000000033528D8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBVNiObject@@I@@` -`class NiTPointerMap`: VTable [0x0000000003352928, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBVNiObject@@I@@` -`class NiStream`: VTable [0x0000000003352978, 0x0000000000000000 offset, 24 functions] `.?AVNiStream@@` -`class NiTMapBase,char const * __ptr64,class NiObject * __ptr64 (__cdecl*)(void)>`: VTable [0x0000000003352A68, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBDP6APEAVNiObject@@XZ@@` -`class NiTPointerMap`: VTable [0x0000000003352AB8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBDP6APEAVNiObject@@XZ@@` -`class NiTStringTemplateMap,class NiObject * __ptr64 (__cdecl*)(void)>`: VTable [0x0000000003352B08, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTPointerMap@PEBDP6APEAVNiObject@@XZ@@P6APEAVNiObject@@XZ@@` -`class NiTStringPointerMap`: VTable [0x0000000003352B58, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringPointerMap@P6APEAVNiObject@@XZ@@` -`class NiTArray >`: VTable [0x0000000003352BA8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@P6AXAEAVNiStream@@PEAVNiObject@@@ZV?$NiTMallocInterface@P6AXAEAVNiStream@@PEAVNiObject@@@Z@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003352BC0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@P6AXAEAVNiStream@@PEAVNiObject@@@Z@@` -`class NiTMapBase,char const * __ptr64,unsigned short>`: VTable [0x0000000003352DF0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBDG@@` -`class NiTPointerMap`: VTable [0x0000000003352E40, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBDG@@` -`class NiTStringTemplateMap,unsigned short>`: VTable [0x0000000003352E90, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTPointerMap@PEBDG@@G@@` -`class NiTStringPointerMap`: VTable [0x0000000003352EE0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringPointerMap@G@@` -`class NiCollisionObject`: VTable [0x0000000003352F60, 0x0000000000000000 offset, 44 functions] `.?AVNiCollisionObject@@` -`class NiDirectionalLight`: VTable [0x00000000033531A0, 0x0000000000000000 offset, 55 functions] `.?AVNiDirectionalLight@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003353608, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiRefObject@@@@V?$NiTNewInterface@V?$NiPointer@VNiRefObject@@@@@@@@` -`class NiTObjectArray >`: VTable [0x0000000003353620, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiRefObject@@@@@@` -`class NiLight`: VTable [0x0000000003353638, 0x0000000000000000 offset, 55 functions] `.?AVNiLight@@` -`class NiStringsExtraData`: VTable [0x0000000003353960, 0x0000000000000000 offset, 41 functions] `.?AVNiStringsExtraData@@` -`class BSResourceNiBinaryStream`: VTable [0x0000000003353BE0, 0x0000000000000000 offset, 6 functions] `.?AVBSResourceNiBinaryStream@@` -`class BSFlattenedBoneTree`: VTable [0x0000000003354060, 0x0000000000000000 offset, 64 functions] `.?AVBSFlattenedBoneTree@@` -`class NiStringExtraData`: VTable [0x00000000033545F8, 0x0000000000000000 offset, 41 functions] `.?AVNiStringExtraData@@` -`class NiTimeController`: VTable [0x0000000003354838, 0x0000000000000000 offset, 49 functions] `.?AVNiTimeController@@` -`class NiAVObjectPalette`: VTable [0x0000000003354ED8, 0x0000000000000000 offset, 42 functions] `.?AVNiAVObjectPalette@@` -`class NiDefaultAVObjectPalette`: VTable [0x0000000003355078, 0x0000000000000000 offset, 44 functions] `.?AVNiDefaultAVObjectPalette@@` -`class NiTriShape`: VTable [0x0000000003355468, 0x0000000000000000 offset, 62 functions] `.?AVNiTriShape@@` -`class NiShadeProperty`: VTable [0x00000000033557B0, 0x0000000000000000 offset, 44 functions] `.?AVNiShadeProperty@@` -`class NiGeometryData`: VTable [0x0000000003355A50, 0x0000000000000000 offset, 44 functions] `.?AVNiGeometryData@@` -`class NiTriStripsData`: VTable [0x0000000003355F18, 0x0000000000000000 offset, 48 functions] `.?AVNiTriStripsData@@` -`class NiTriStrips`: VTable [0x0000000003356360, 0x0000000000000000 offset, 61 functions] `.?AVNiTriStrips@@` -`class NiPointLight`: VTable [0x0000000003356640, 0x0000000000000000 offset, 55 functions] `.?AVNiPointLight@@` -`class BSDynamicTriShape`: VTable [0x00000000033569C8, 0x0000000000000000 offset, 58 functions] `.?AVBSDynamicTriShape@@` -`class NiGeometry`: VTable [0x0000000003356E28, 0x0000000000000000 offset, 61 functions] `.?AVNiGeometry@@` -`class NiAmbientLight`: VTable [0x0000000003357108, 0x0000000000000000 offset, 55 functions] `.?AVNiAmbientLight@@` -`class NiExtraData`: VTable [0x0000000003357518, 0x0000000000000000 offset, 41 functions] `.?AVNiExtraData@@` -`class NiCullingProcess`: VTable [0x00000000033576E8, 0x0000000000000000 offset, 25 functions] `.?AVNiCullingProcess@@` -`class BSGeometry`: VTable [0x0000000003357908, 0x0000000000000000 offset, 58 functions] `.?AVBSGeometry@@` -`class NiTriBasedGeom`: VTable [0x0000000003357CC8, 0x0000000000000000 offset, 61 functions] `.?AVNiTriBasedGeom@@` -`class NiVertWeightsExtraData`: VTable [0x0000000003358468, 0x0000000000000000 offset, 41 functions] `.?AVNiVertWeightsExtraData@@` -`class BSLines`: VTable [0x0000000003358878, 0x0000000000000000 offset, 58 functions] `.?AVBSLines@@` -`class NiSkinPartition`: VTable [0x0000000003358C30, 0x0000000000000000 offset, 40 functions] `.?AVNiSkinPartition@@` -`class NiTriShapeData`: VTable [0x0000000003358ED8, 0x0000000000000000 offset, 48 functions] `.?AVNiTriShapeData@@` -`class NiTriBasedGeomData`: VTable [0x0000000003359110, 0x0000000000000000 offset, 48 functions] `.?AVNiTriBasedGeomData@@` -`class NiSkinData`: VTable [0x0000000003359460, 0x0000000000000000 offset, 39 functions] `.?AVNiSkinData@@` -`class NiAlphaAccumulator`: VTable [0x0000000003359720, 0x0000000000000000 offset, 44 functions] `.?AVNiAlphaAccumulator@@` -`class NiBinaryExtraData`: VTable [0x0000000003359980, 0x0000000000000000 offset, 41 functions] `.?AVNiBinaryExtraData@@` -`class NiBooleanExtraData`: VTable [0x0000000003359B98, 0x0000000000000000 offset, 41 functions] `.?AVNiBooleanExtraData@@` -`class NiBSPNode`: VTable [0x0000000003359DF0, 0x0000000000000000 offset, 64 functions] `.?AVNiBSPNode@@` -`class NiColorExtraData`: VTable [0x000000000335A0F0, 0x0000000000000000 offset, 41 functions] `.?AVNiColorExtraData@@` -`class NiFloatExtraData`: VTable [0x000000000335A318, 0x0000000000000000 offset, 41 functions] `.?AVNiFloatExtraData@@` -`class NiFloatsExtraData`: VTable [0x000000000335A5A0, 0x0000000000000000 offset, 41 functions] `.?AVNiFloatsExtraData@@` -`class NiFogProperty`: VTable [0x000000000335A828, 0x0000000000000000 offset, 41 functions] `.?AVNiFogProperty@@` -`class NiIntegerExtraData`: VTable [0x000000000335AAA8, 0x0000000000000000 offset, 41 functions] `.?AVNiIntegerExtraData@@` -`class NiIntegersExtraData`: VTable [0x000000000335AD30, 0x0000000000000000 offset, 41 functions] `.?AVNiIntegersExtraData@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x000000000335B168, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiMetricsOutputModule@@@@V?$NiTNewInterface@V?$NiPointer@VNiMetricsOutputModule@@@@@@@@` -`class NiTObjectArray >`: VTable [0x000000000335B180, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiMetricsOutputModule@@@@@@` -`class NiParticlesData`: VTable [0x000000000335B370, 0x0000000000000000 offset, 43 functions] `.?AVNiParticlesData@@` -`class NiParticles`: VTable [0x000000000335B7E0, 0x0000000000000000 offset, 58 functions] `.?AVNiParticles@@` -`class NiParticleMeshesData`: VTable [0x000000000335BAF0, 0x0000000000000000 offset, 43 functions] `.?AVNiParticleMeshesData@@` -`class NiParticleMeshes`: VTable [0x000000000335BCF8, 0x0000000000000000 offset, 58 functions] `.?AVNiParticleMeshes@@` -`class NiSpotLight`: VTable [0x000000000335BFB0, 0x0000000000000000 offset, 55 functions] `.?AVNiSpotLight@@` -`class NiSwitchStringExtraData`: VTable [0x000000000335C2F0, 0x0000000000000000 offset, 41 functions] `.?AVNiSwitchStringExtraData@@` -`class NiVectorExtraData`: VTable [0x000000000335C510, 0x0000000000000000 offset, 41 functions] `.?AVNiVectorExtraData@@` -`class NiTArray >`: VTable [0x000000000335C888, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEADV?$NiTMallocInterface@PEAD@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000335C8A0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAD@@` -`class BSLODTriShape`: VTable [0x000000000335C938, 0x0000000000000000 offset, 62 functions] `.?AVBSLODTriShape@@` -`class NiAdditionalGeometryData`: VTable [0x000000000335CCB0, 0x0000000000000000 offset, 39 functions] `.?AVNiAdditionalGeometryData@@` -`class BSSegmentedTriShape`: VTable [0x000000000335D4D8, 0x0000000000000000 offset, 62 functions] `.?AVBSSegmentedTriShape@@` -`class NiAccumulator`: VTable [0x000000000335D818, 0x0000000000000000 offset, 44 functions] `.?AVNiAccumulator@@` -`class NiBackToFrontAccumulator`: VTable [0x000000000335DA68, 0x0000000000000000 offset, 44 functions] `.?AVNiBackToFrontAccumulator@@` -`class NiTArray >`: VTable [0x000000000335DDB0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVRecord@NiPick@@V?$NiTScrapHeapInterface@PEAVRecord@NiPick@@@@@@` -`class NiTScrapArray`: VTable [0x000000000335DDC8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTScrapArray@PEAVRecord@NiPick@@@@` -`class NiPick::Results`: VTable [0x000000000335DDE0, 0x0000000000000000 offset, 1 functions] `.?AVResults@NiPick@@` -`class NiCollisionTraversals::IFindIntersections`: VTable [0x000000000335E0C8, 0x0000000000000000 offset, 3 functions] `.?AVIFindIntersections@NiCollisionTraversals@@` -`class NiCollisionData`: VTable [0x000000000335E218, 0x0000000000000000 offset, 45 functions] `.?AVNiCollisionData@@` -`class NiBoundingVolume`: VTable [0x000000000335E600, 0x0000000000000000 offset, 12 functions] `.?AVNiBoundingVolume@@` -`class NiBoxBV`: VTable [0x000000000335E680, 0x0000000000000000 offset, 12 functions] `.?AVNiBoxBV@@` -`class NiCapsuleBV`: VTable [0x000000000335E7A8, 0x0000000000000000 offset, 12 functions] `.?AVNiCapsuleBV@@` -`class NiHalfSpaceBV`: VTable [0x000000000335E900, 0x0000000000000000 offset, 12 functions] `.?AVNiHalfSpaceBV@@` -`class NiSphereBV`: VTable [0x000000000335E9C8, 0x0000000000000000 offset, 12 functions] `.?AVNiSphereBV@@` -`class NiTArray >`: VTable [0x000000000335EC98, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVNiBoundingVolume@@V?$NiTMallocInterface@PEAVNiBoundingVolume@@@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000335ECB0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVNiBoundingVolume@@@@` -`class NiUnionBV`: VTable [0x000000000335ECC8, 0x0000000000000000 offset, 12 functions] `.?AVNiUnionBV@@` -`class NiOBBRoot`: VTable [0x000000000335EDF8, 0x0000000000000000 offset, 4 functions] `.?AVNiOBBRoot@@` -`class NiIntersector`: VTable [0x000000000335EE28, 0x0000000000000000 offset, 5 functions] `.?AVNiIntersector@@` -`class NiBoxSphereIntersector`: VTable [0x000000000335EE68, 0x0000000000000000 offset, 5 functions] `.?AVNiBoxSphereIntersector@@` -`class NiBoxCapsuleIntersector`: VTable [0x000000000335EEA8, 0x0000000000000000 offset, 5 functions] `.?AVNiBoxCapsuleIntersector@@` -`class NiCapsuleCapsuleIntersector`: VTable [0x000000000335EEE8, 0x0000000000000000 offset, 5 functions] `.?AVNiCapsuleCapsuleIntersector@@` -`class NiCapsuleSphereIntersector`: VTable [0x000000000335EF28, 0x0000000000000000 offset, 5 functions] `.?AVNiCapsuleSphereIntersector@@` -`class NiCapsuleTriIntersector`: VTable [0x000000000335EF68, 0x0000000000000000 offset, 5 functions] `.?AVNiCapsuleTriIntersector@@` -`class NiSphereTriIntersector`: VTable [0x000000000335EFA8, 0x0000000000000000 offset, 5 functions] `.?AVNiSphereTriIntersector@@` -`class NiOBBNode`: VTable [0x000000000335F048, 0x0000000000000000 offset, 5 functions] `.?AVNiOBBNode@@` -`class NiOBBLeaf`: VTable [0x000000000335F0B8, 0x0000000000000000 offset, 5 functions] `.?AVNiOBBLeaf@@` -`class NiControllerSequence`: VTable [0x000000000335FA08, 0x0000000000000000 offset, 40 functions] `.?AVNiControllerSequence@@` -`class NiMultiTargetTransformController`: VTable [0x000000000335FBB8, 0x0000000000000000 offset, 62 functions] `.?AVNiMultiTargetTransformController@@` -`class NiTextKeyMatch`: VTable [0x000000000335FE18, 0x0000000000000000 offset, 3 functions] `.?AVNiTextKeyMatch@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003360B68, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiControllerSequence@@@@V?$NiTNewInterface@V?$NiPointer@VNiControllerSequence@@@@@@@@` -`class NiTObjectArray >`: VTable [0x0000000003360B80, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiControllerSequence@@@@@@` -`class NiControllerManager`: VTable [0x0000000003360B98, 0x0000000000000000 offset, 50 functions] `.?AVNiControllerManager@@` -`class NiBlendInterpolator`: VTable [0x00000000033616B0, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendInterpolator@@` -`class BSMultiTargetTreadTransfController`: VTable [0x0000000003361D70, 0x0000000000000000 offset, 62 functions] `.?AVBSMultiTargetTreadTransfController@@` -`class NiInterpController`: VTable [0x00000000033620C0, 0x0000000000000000 offset, 62 functions] `.?AVNiInterpController@@` -`class NiKeyBasedInterpolator`: VTable [0x0000000003362400, 0x0000000000000000 offset, 66 functions] `.?AVNiKeyBasedInterpolator@@` -`class NiFloatInterpolator`: VTable [0x0000000003362820, 0x0000000000000000 offset, 66 functions] `.?AVNiFloatInterpolator@@` -`class NiColorInterpolator`: VTable [0x0000000003362C50, 0x0000000000000000 offset, 66 functions] `.?AVNiColorInterpolator@@` -`class NiTransformController`: VTable [0x0000000003363038, 0x0000000000000000 offset, 63 functions] `.?AVNiTransformController@@` -`class NiBlendAccumTransformInterpolator`: VTable [0x00000000033632A0, 0x0000000000000000 offset, 64 functions] `.?AVNiBlendAccumTransformInterpolator@@` -`class NiTArray >`: VTable [0x00000000033635F0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAUBSAnimReceiverType@BSAnimNoteListener@@V?$NiTMallocInterface@PEAUBSAnimReceiverType@BSAnimNoteListener@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003363608, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAUBSAnimReceiverType@BSAnimNoteListener@@@@` -`class NiPosData`: VTable [0x0000000003363800, 0x0000000000000000 offset, 39 functions] `.?AVNiPosData@@` -`class NiBlendBoolInterpolator`: VTable [0x00000000033639E0, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendBoolInterpolator@@` -`class NiBlendColorInterpolator`: VTable [0x0000000003363CE0, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendColorInterpolator@@` -`class NiBlendFloatInterpolator`: VTable [0x0000000003363FD0, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendFloatInterpolator@@` -`class NiBlendPoint3Interpolator`: VTable [0x00000000033642C0, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendPoint3Interpolator@@` -`class NiBlendQuaternionInterpolator`: VTable [0x00000000033645C8, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendQuaternionInterpolator@@` -`class NiBlendTransformInterpolator`: VTable [0x00000000033648D0, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendTransformInterpolator@@` -`class NiBoolData`: VTable [0x0000000003364C20, 0x0000000000000000 offset, 39 functions] `.?AVNiBoolData@@` -`class NiBoolInterpolator`: VTable [0x0000000003364E78, 0x0000000000000000 offset, 66 functions] `.?AVNiBoolInterpolator@@` -`class NiBoolTimelineInterpolator`: VTable [0x00000000033651C0, 0x0000000000000000 offset, 66 functions] `.?AVNiBoolTimelineInterpolator@@` -`class NiBSplineBasisData`: VTable [0x00000000033654D0, 0x0000000000000000 offset, 39 functions] `.?AVNiBSplineBasisData@@` -`class NiBSplineData`: VTable [0x0000000003365700, 0x0000000000000000 offset, 39 functions] `.?AVNiBSplineData@@` -`class NiBSplineColorInterpolator`: VTable [0x0000000003365940, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineColorInterpolator@@` -`class NiBSplineCompColorInterpolator`: VTable [0x0000000003365C78, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineCompColorInterpolator@@` -`class NiBSplineCompFloatInterpolator`: VTable [0x0000000003365FA0, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineCompFloatInterpolator@@` -`class NiBSplineCompPoint3Interpolator`: VTable [0x00000000033662C8, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineCompPoint3Interpolator@@` -`class NiBSplineCompTransformInterpolator`: VTable [0x00000000033665F0, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineCompTransformInterpolator@@` -`class NiBSplineFloatInterpolator`: VTable [0x0000000003366920, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineFloatInterpolator@@` -`class NiBSplinePoint3Interpolator`: VTable [0x0000000003366C58, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplinePoint3Interpolator@@` -`class NiBSplineTransformInterpolator`: VTable [0x0000000003366F90, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineTransformInterpolator@@` -`class NiColorExtraDataController`: VTable [0x0000000003367360, 0x0000000000000000 offset, 63 functions] `.?AVNiColorExtraDataController@@` -`class NiFloatExtraDataController`: VTable [0x00000000033676B0, 0x0000000000000000 offset, 63 functions] `.?AVNiFloatExtraDataController@@` -`class NiFloatsExtraDataController`: VTable [0x0000000003367A90, 0x0000000000000000 offset, 63 functions] `.?AVNiFloatsExtraDataController@@` -`class NiFloatsExtraDataPoint3Controller`: VTable [0x0000000003367E38, 0x0000000000000000 offset, 63 functions] `.?AVNiFloatsExtraDataPoint3Controller@@` -`class NiTMapBase,char const * __ptr64,class NiPointer >`: VTable [0x00000000033682E0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBDV?$NiPointer@VNiSequence@@@@@@` -`class NiTPointerMap >`: VTable [0x0000000003368330, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBDV?$NiPointer@VNiSequence@@@@@@` -`class NiTStringTemplateMap >,class NiPointer >`: VTable [0x0000000003368380, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTPointerMap@PEBDV?$NiPointer@VNiSequence@@@@@@V?$NiPointer@VNiSequence@@@@@@` -`class NiTStringPointerMap >`: VTable [0x00000000033683D0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringPointerMap@V?$NiPointer@VNiSequence@@@@@@` -`class NiKeyframeManager`: VTable [0x0000000003368420, 0x0000000000000000 offset, 49 functions] `.?AVNiKeyframeManager@@` -`class NiLightColorController`: VTable [0x0000000003368718, 0x0000000000000000 offset, 64 functions] `.?AVNiLightColorController@@` -`class NiLightDimmerController`: VTable [0x0000000003368A68, 0x0000000000000000 offset, 64 functions] `.?AVNiLightDimmerController@@` -`class NiLookAtController`: VTable [0x0000000003368D60, 0x0000000000000000 offset, 49 functions] `.?AVNiLookAtController@@` -`class NiLookAtInterpolator`: VTable [0x0000000003369050, 0x0000000000000000 offset, 59 functions] `.?AVNiLookAtInterpolator@@` -`class NiMorphData`: VTable [0x0000000003369418, 0x0000000000000000 offset, 39 functions] `.?AVNiMorphData@@` -`class NiPathController`: VTable [0x0000000003369748, 0x0000000000000000 offset, 49 functions] `.?AVNiPathController@@` -`class NiPathInterpolator`: VTable [0x0000000003369A98, 0x0000000000000000 offset, 66 functions] `.?AVNiPathInterpolator@@` -`class NiPoint3Interpolator`: VTable [0x0000000003369E00, 0x0000000000000000 offset, 66 functions] `.?AVNiPoint3Interpolator@@` -`class NiQuaternionInterpolator`: VTable [0x000000000336A250, 0x0000000000000000 offset, 66 functions] `.?AVNiQuaternionInterpolator@@` -`class NiFloatController`: VTable [0x000000000336A578, 0x0000000000000000 offset, 49 functions] `.?AVNiFloatController@@` -`class NiRollController`: VTable [0x000000000336A758, 0x0000000000000000 offset, 49 functions] `.?AVNiRollController@@` -`class NiRotData`: VTable [0x000000000336AA18, 0x0000000000000000 offset, 39 functions] `.?AVNiRotData@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x000000000336AEA8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiTransformController@@@@V?$NiTNewInterface@V?$NiPointer@VNiTransformController@@@@@@@@` -`class NiTObjectArray >`: VTable [0x000000000336AEC0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiTransformController@@@@@@` -`class NiSequence`: VTable [0x000000000336AED8, 0x0000000000000000 offset, 39 functions] `.?AVNiSequence@@` -`class NiSequenceStreamHelper`: VTable [0x000000000336B0A0, 0x0000000000000000 offset, 39 functions] `.?AVNiSequenceStreamHelper@@` -`class NiStringPalette`: VTable [0x000000000336B2A0, 0x0000000000000000 offset, 39 functions] `.?AVNiStringPalette@@` -`class NiTextKeyExtraData`: VTable [0x000000000336B558, 0x0000000000000000 offset, 41 functions] `.?AVNiTextKeyExtraData@@` -`class NiTransformData`: VTable [0x000000000336B7E0, 0x0000000000000000 offset, 39 functions] `.?AVNiTransformData@@` -`class NiTransformInterpolator`: VTable [0x000000000336BAC8, 0x0000000000000000 offset, 66 functions] `.?AVNiTransformInterpolator@@` -`class NiUVData`: VTable [0x000000000336BDD8, 0x0000000000000000 offset, 39 functions] `.?AVNiUVData@@` -`class NiVisController`: VTable [0x000000000336C058, 0x0000000000000000 offset, 64 functions] `.?AVNiVisController@@` -`class BSAnimNotes`: VTable [0x000000000336C340, 0x0000000000000000 offset, 39 functions] `.?AVBSAnimNotes@@` -`class BSAnimNote`: VTable [0x000000000336C5A8, 0x0000000000000000 offset, 40 functions] `.?AVBSAnimNote@@` -`class BSGrabIKNote`: VTable [0x000000000336C738, 0x0000000000000000 offset, 40 functions] `.?AVBSGrabIKNote@@` -`class BSLookIKNote`: VTable [0x000000000336C978, 0x0000000000000000 offset, 40 functions] `.?AVBSLookIKNote@@` -`class BSRotAccumTransfInterpolator`: VTable [0x000000000336CBE8, 0x0000000000000000 offset, 66 functions] `.?AVBSRotAccumTransfInterpolator@@` -`class BSTreadTransfInterpolator`: VTable [0x000000000336CFB8, 0x0000000000000000 offset, 66 functions] `.?AVBSTreadTransfInterpolator@@` -`class BSBlendTreadTransfInterpolator`: VTable [0x000000000336D2C8, 0x0000000000000000 offset, 63 functions] `.?AVBSBlendTreadTransfInterpolator@@` -`class BSFrustumFOVController`: VTable [0x000000000336D648, 0x0000000000000000 offset, 64 functions] `.?AVBSFrustumFOVController@@` -`class NiInterpolator`: VTable [0x000000000336E758, 0x0000000000000000 offset, 59 functions] `.?AVNiInterpolator@@` -`class NiSingleInterpController`: VTable [0x000000000336EB88, 0x0000000000000000 offset, 63 functions] `.?AVNiSingleInterpController@@` -`class NiBSplineInterpolator`: VTable [0x000000000336EE40, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineInterpolator@@` -`class NiExtraDataController`: VTable [0x000000000336F260, 0x0000000000000000 offset, 63 functions] `.?AVNiExtraDataController@@` -`class NiPoint3InterpController`: VTable [0x000000000336F590, 0x0000000000000000 offset, 64 functions] `.?AVNiPoint3InterpController@@` -`class NiFloatInterpController`: VTable [0x000000000336F8B0, 0x0000000000000000 offset, 64 functions] `.?AVNiFloatInterpController@@` -`class NiBoolInterpController`: VTable [0x000000000336FC78, 0x0000000000000000 offset, 64 functions] `.?AVNiBoolInterpController@@` -`class NiParticleSystem`: VTable [0x0000000003370740, 0x0000000000000000 offset, 60 functions] `.?AVNiParticleSystem@@` -`class NiPSysData`: VTable [0x0000000003370B40, 0x0000000000000000 offset, 45 functions] `.?AVNiPSysData@@` -`class NiPSysGravityModifier`: VTable [0x0000000003370E08, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysGravityModifier@@` -`class NiMeshParticleSystem`: VTable [0x0000000003371108, 0x0000000000000000 offset, 60 functions] `.?AVNiMeshParticleSystem@@` -`class NiTArray > * __ptr64,class NiTMallocInterface > * __ptr64> >`: VTable [0x00000000033715B8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAV?$NiTObjectArray@V?$NiPointer@VNiAVObject@@@@@@V?$NiTMallocInterface@PEAV?$NiTObjectArray@V?$NiPointer@VNiAVObject@@@@@@@@@@` -`class NiTPrimitiveArray > * __ptr64>`: VTable [0x00000000033715D0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAV?$NiTObjectArray@V?$NiPointer@VNiAVObject@@@@@@@@` -`class NiMeshPSysData`: VTable [0x00000000033715E8, 0x0000000000000000 offset, 45 functions] `.?AVNiMeshPSysData@@` -`class NiPSysAirFieldAirFrictionCtlr`: VTable [0x0000000003371820, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysAirFieldAirFrictionCtlr@@` -`class NiPSysAirFieldInheritVelocityCtlr`: VTable [0x0000000003371B30, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysAirFieldInheritVelocityCtlr@@` -`class NiPSysAirFieldModifier`: VTable [0x0000000003371E48, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysAirFieldModifier@@` -`class NiPSysAirFieldSpreadCtlr`: VTable [0x0000000003372100, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysAirFieldSpreadCtlr@@` -`class NiPSysAgeDeathModifier`: VTable [0x0000000003372440, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysAgeDeathModifier@@` -`class NiPSysBombModifier`: VTable [0x00000000033726D0, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysBombModifier@@` -`class NiPSysBoundUpdateModifier`: VTable [0x0000000003372A10, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysBoundUpdateModifier@@` -`class NiPSysBoxEmitter`: VTable [0x0000000003372C58, 0x0000000000000000 offset, 48 functions] `.?AVNiPSysBoxEmitter@@` -`class NiPSysColliderManager`: VTable [0x0000000003372F18, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysColliderManager@@` -`class NiPSysColorModifier`: VTable [0x00000000033731A8, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysColorModifier@@` -`class NiPSysCylinderEmitter`: VTable [0x00000000033733D8, 0x0000000000000000 offset, 48 functions] `.?AVNiPSysCylinderEmitter@@` -`class NiPSysDragFieldModifier`: VTable [0x0000000003373630, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysDragFieldModifier@@` -`class NiPSysDragModifier`: VTable [0x00000000033738A8, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysDragModifier@@` -`class NiPSysEmitterCtlr`: VTable [0x0000000003373D00, 0x0000000000000000 offset, 65 functions] `.?AVNiPSysEmitterCtlr@@` -`class NiPSysEmitterCtlrData`: VTable [0x0000000003374000, 0x0000000000000000 offset, 39 functions] `.?AVNiPSysEmitterCtlrData@@` -`class NiPSysEmitterDeclinationCtlr`: VTable [0x0000000003374268, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterDeclinationCtlr@@` -`class NiPSysEmitterDeclinationVarCtlr`: VTable [0x0000000003374578, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterDeclinationVarCtlr@@` -`class NiPSysEmitterInitialRadiusCtlr`: VTable [0x0000000003374890, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterInitialRadiusCtlr@@` -`class NiPSysEmitterLifeSpanCtlr`: VTable [0x0000000003374BA8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterLifeSpanCtlr@@` -`class NiPSysEmitterPlanarAngleCtlr`: VTable [0x0000000003374EB8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterPlanarAngleCtlr@@` -`class NiPSysEmitterPlanarAngleVarCtlr`: VTable [0x00000000033751C8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterPlanarAngleVarCtlr@@` -`class NiPSysEmitterSpeedCtlr`: VTable [0x00000000033754E0, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterSpeedCtlr@@` -`class NiPSysFieldAttenuationCtlr`: VTable [0x00000000033757E8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysFieldAttenuationCtlr@@` -`class NiPSysFieldMagnitudeCtlr`: VTable [0x0000000003375AF8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysFieldMagnitudeCtlr@@` -`class NiPSysFieldMaxDistanceCtlr`: VTable [0x0000000003375E08, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysFieldMaxDistanceCtlr@@` -`class NiPSysGravityFieldModifier`: VTable [0x0000000003376118, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysGravityFieldModifier@@` -`class NiPSysGravityStrengthCtlr`: VTable [0x0000000003376350, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysGravityStrengthCtlr@@` -`class NiPSysGrowFadeModifier`: VTable [0x0000000003376690, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysGrowFadeModifier@@` -`class NiPSysInitialRotAngleCtlr`: VTable [0x0000000003376920, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysInitialRotAngleCtlr@@` -`class NiPSysInitialRotAngleVarCtlr`: VTable [0x0000000003376C30, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysInitialRotAngleVarCtlr@@` -`class NiPSysInitialRotSpeedCtlr`: VTable [0x0000000003376F40, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysInitialRotSpeedCtlr@@` -`class NiPSysInitialRotSpeedVarCtlr`: VTable [0x0000000003377250, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysInitialRotSpeedVarCtlr@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003377A10, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VBSTriShape@@@@V?$NiTNewInterface@V?$NiPointer@VBSTriShape@@@@@@@@` -`class NiTObjectArray >`: VTable [0x0000000003377A28, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VBSTriShape@@@@@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003377A40, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiGeometry@@@@V?$NiTNewInterface@V?$NiPointer@VNiGeometry@@@@@@@@` -`class NiTObjectArray >`: VTable [0x0000000003377A58, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiGeometry@@@@@@` -`class NiPSysMeshEmitter`: VTable [0x0000000003377A70, 0x0000000000000000 offset, 46 functions] `.?AVNiPSysMeshEmitter@@` -`class NiPSysMeshUpdateModifier`: VTable [0x0000000003378028, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysMeshUpdateModifier@@` -`class NiPSysModifierActiveCtlr`: VTable [0x0000000003378260, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysModifierActiveCtlr@@` -`class NiPSysPlanarCollider`: VTable [0x0000000003378600, 0x0000000000000000 offset, 42 functions] `.?AVNiPSysPlanarCollider@@` -`class NiPSysPositionModifier`: VTable [0x0000000003378878, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysPositionModifier@@` -`class NiPSysRadialFieldModifier`: VTable [0x0000000003378AA8, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysRadialFieldModifier@@` -`class NiPSysResetOnLoopCtlr`: VTable [0x0000000003378CF0, 0x0000000000000000 offset, 49 functions] `.?AVNiPSysResetOnLoopCtlr@@` -`class NiPSysRotationModifier`: VTable [0x0000000003378F80, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysRotationModifier@@` -`class NiPSysSpawnModifier`: VTable [0x00000000033792C0, 0x0000000000000000 offset, 45 functions] `.?AVNiPSysSpawnModifier@@` -`class NiPSysSphereEmitter`: VTable [0x00000000033795C0, 0x0000000000000000 offset, 48 functions] `.?AVNiPSysSphereEmitter@@` -`class NiPSysSphericalCollider`: VTable [0x0000000003379848, 0x0000000000000000 offset, 42 functions] `.?AVNiPSysSphericalCollider@@` -`class NiPSysTurbulenceFieldModifier`: VTable [0x0000000003379A70, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysTurbulenceFieldModifier@@` -`class NiPSysUpdateCtlr`: VTable [0x0000000003379CB8, 0x0000000000000000 offset, 49 functions] `.?AVNiPSysUpdateCtlr@@` -`class NiPSysVortexFieldModifier`: VTable [0x0000000003379F18, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysVortexFieldModifier@@` -`class BSStripParticleSystem`: VTable [0x000000000337A180, 0x0000000000000000 offset, 60 functions] `.?AVBSStripParticleSystem@@` -`class BSStripPSysData`: VTable [0x000000000337A480, 0x0000000000000000 offset, 45 functions] `.?AVBSStripPSysData@@` -`class BSPSysHavokUpdateModifier`: VTable [0x000000000337A798, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysHavokUpdateModifier@@` -`class BSPSysRecycleBoundModifier`: VTable [0x000000000337AAA8, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysRecycleBoundModifier@@` -`class BSPSysInheritVelocityModifier`: VTable [0x000000000337ACE0, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysInheritVelocityModifier@@` -`class NiPSysModifierCtlr`: VTable [0x000000000337AF48, 0x0000000000000000 offset, 64 functions] `.?AVNiPSysModifierCtlr@@` -`class NiPSysModifier`: VTable [0x000000000337B220, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysModifier@@` -`class NiPSysModifierFloatCtlr`: VTable [0x000000000337B4B0, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysModifierFloatCtlr@@` -`class NiPSysFieldModifier`: VTable [0x000000000337B788, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysFieldModifier@@` -`class NiPSysEmitter`: VTable [0x000000000337B9C8, 0x0000000000000000 offset, 46 functions] `.?AVNiPSysEmitter@@` -`class NiPSysVolumeEmitter`: VTable [0x000000000337BC58, 0x0000000000000000 offset, 48 functions] `.?AVNiPSysVolumeEmitter@@` -`class NiPSysModifierBoolCtlr`: VTable [0x000000000337BF08, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysModifierBoolCtlr@@` -`class NiPSysCollider`: VTable [0x000000000337C1E0, 0x0000000000000000 offset, 42 functions] `.?AVNiPSysCollider@@` -`class IOManager`: VTable [0x000000000337C978, 0x0000000000000000 offset, 25 functions] `.?AVIOManager@@` -`struct BSResource::IEntryDB::NotifyLoadDone`: VTable [0x000000000337CA78, 0x0000000000000000 offset, 2 functions] `.?AUNotifyLoadDone@IEntryDB@BSResource@@` -`class SynchronizedMap<__int64,class NiPointer >::SynchronizedMapIterator`: VTable [0x000000000337CC60, 0x0000000000000000 offset, 2 functions] `.?AVSynchronizedMapIterator@?$SynchronizedMap@_JV?$NiPointer@VBSTask@@@@@@` -`struct `private: virtual void __cdecl IOManager::DoOnPreRunTask(class BSTaskThread * __ptr64) __ptr64'::`2'::Pauser`: VTable [0x000000000337CC80, 0x0000000000000000 offset, 2 functions] `.?AUPauser@?1??DoOnPreRunTask@IOManager@@EEAAXPEAVBSTaskThread@@@Z@` -`class MessageHandler`: VTable [0x000000000337CF40, 0x0000000000000000 offset, 11 functions] `.?AVMessageHandler@@` -`class `anonymous namespace'::LogWriteThread`: VTable [0x000000000337D478, 0x0000000000000000 offset, 3 functions] `.?AVLogWriteThread@?A0xc2a3e98c@@` -`class QueuedFile`: VTable [0x000000000337D6C0, 0x0000000000000000 offset, 13 functions] `.?AVQueuedFile@@` -`class QueuedNamedFile`: VTable [0x000000000337D748, 0x0000000000000000 offset, 13 functions] `.?AVQueuedNamedFile@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x000000000337D918, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0CI@@@@@` -`class BSQueuedResourceCollectionBase`: VTable [0x000000000337D9A8, 0x0000000000000000 offset, 19 functions] `.?AVBSQueuedResourceCollectionBase@@` -`class BSQueuedResourceCollectionBase`: VTable [0x000000000337DA68, 0x0000000000000038 offset, 3 functions] `.?AVBSQueuedResourceCollectionBase@@` -`class BSResource::EntryDB`: VTable [0x000000000337E1B8, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@` -`class BSInstanceTriShape`: VTable [0x000000000337E780, 0x0000000000000000 offset, 64 functions] `.?AVBSInstanceTriShape@@` -`class BSMultiStreamInstanceTriShape`: VTable [0x000000000337E9F0, 0x0000000000000000 offset, 64 functions] `.?AVBSMultiStreamInstanceTriShape@@` -`class BSTIOStream::TIStream`: VTable [0x000000000337F018, 0x0000000000000000 offset, 1 functions] `.?AV?$TIStream@UBSIOStreamTraits@@@BSTIOStream@@` -`class BSIStream`: VTable [0x000000000337F030, 0x0000000000000000 offset, 1 functions] `.?AVBSIStream@@` -`class BSTIOStream::TOStream`: VTable [0x000000000337F048, 0x0000000000000000 offset, 1 functions] `.?AV?$TOStream@UBSIOStreamTraits@@@BSTIOStream@@` -`class BSOStream`: VTable [0x000000000337F060, 0x0000000000000000 offset, 1 functions] `.?AVBSOStream@@` -`class BSPortalGraphEntry`: VTable [0x000000000337F558, 0x0000000000000000 offset, 2 functions] `.?AVBSPortalGraphEntry@@` -`class BSPortalGraph`: VTable [0x000000000337F578, 0x0000000000000000 offset, 2 functions] `.?AVBSPortalGraph@@` -`class ITextureDB`: VTable [0x0000000003380118, 0x0000000000000000 offset, 4 functions] `.?AVITextureDB@@` -`class BSResource::EntryDB`: VTable [0x0000000003380218, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BSTextureDB@@@BSResource@@` -`class BSQueuedResourceCollection,2>`: VTable [0x0000000003380260, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSTextureDB@@@BSResource@@$01@@` -`class BSQueuedResourceCollection,2>`: VTable [0x0000000003380330, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSTextureDB@@@BSResource@@$01@@` -`class BSTextureDB::QueuedHandles`: VTable [0x0000000003380358, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHandles@BSTextureDB@@` -`class BSTextureDB::QueuedHandles`: VTable [0x0000000003380428, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHandles@BSTextureDB@@` -`class BSTextureDB::`anonymous namespace'::NiTextureDBForwarded`: VTable [0x0000000003380450, 0x0000000000000000 offset, 4 functions] `.?AVNiTextureDBForwarded@?A0xfd6ef554@BSTextureDB@@` -`class BSMasterParticleSystem`: VTable [0x0000000003380750, 0x0000000000000000 offset, 64 functions] `.?AVBSMasterParticleSystem@@` -`class BSWindModifier`: VTable [0x0000000003380A90, 0x0000000000000000 offset, 44 functions] `.?AVBSWindModifier@@` -`class BSCullingProcess`: VTable [0x0000000003380FE8, 0x0000000000000000 offset, 29 functions] `.?AVBSCullingProcess@@` -`class BSParticleSystemManager`: VTable [0x00000000033818D0, 0x0000000000000000 offset, 64 functions] `.?AVBSParticleSystemManager@@` -`class BSMultiBoundNode`: VTable [0x0000000003381DC8, 0x0000000000000000 offset, 68 functions] `.?AVBSMultiBoundNode@@` -`class BSOrientedBoxConstructor`: VTable [0x00000000033824D8, 0x0000000000000000 offset, 3 functions] `.?AVBSOrientedBoxConstructor@@` -`class BSSphereConstructor`: VTable [0x0000000003382500, 0x0000000000000000 offset, 3 functions] `.?AVBSSphereConstructor@@` -`class BSCylinderConstructor`: VTable [0x0000000003382528, 0x0000000000000000 offset, 3 functions] `.?AVBSCylinderConstructor@@` -`class BSCapsuleConstructor`: VTable [0x0000000003382550, 0x0000000000000000 offset, 3 functions] `.?AVBSCapsuleConstructor@@` -`class BSArrowConstructor`: VTable [0x0000000003382578, 0x0000000000000000 offset, 3 functions] `.?AVBSArrowConstructor@@` -`class BSCircleConstructor`: VTable [0x00000000033825A0, 0x0000000000000000 offset, 3 functions] `.?AVBSCircleConstructor@@` -`class BSRingConstructor`: VTable [0x00000000033825C8, 0x0000000000000000 offset, 3 functions] `.?AVBSRingConstructor@@` -`class BSFlatQuadConstructor`: VTable [0x00000000033825F0, 0x0000000000000000 offset, 3 functions] `.?AVBSFlatQuadConstructor@@` -`class BSDiskConstructor`: VTable [0x0000000003382618, 0x0000000000000000 offset, 3 functions] `.?AVBSDiskConstructor@@` -`class BSReference`: VTable [0x0000000003382AB8, 0x0000000000000000 offset, 39 functions] `.?AVBSReference@@` -`class BSNodeReferences`: VTable [0x0000000003382C38, 0x0000000000000000 offset, 39 functions] `.?AVBSNodeReferences@@` -`class BSXFlags`: VTable [0x00000000033831F0, 0x0000000000000000 offset, 41 functions] `.?AVBSXFlags@@` -`class BSFurnitureMarkerNode`: VTable [0x0000000003383558, 0x0000000000000000 offset, 41 functions] `.?AVBSFurnitureMarkerNode@@` -`class BSTaskThread`: VTable [0x0000000003383B30, 0x0000000000000000 offset, 3 functions] `.?AVBSTaskThread@@` -`class SynchronizedMap<__int64,class NiPointer >`: VTable [0x0000000003383B58, 0x0000000000000000 offset, 17 functions] `.?AV?$SynchronizedMap@_JV?$NiPointer@VBSTask@@@@@@` -`class BSTaskManager`: VTable [0x0000000003383C08, 0x0000000000000000 offset, 24 functions] `.?AVBSTaskManager@@` -`class BSTaskManagerThread`: VTable [0x0000000003383D28, 0x0000000000000000 offset, 3 functions] `.?AVBSTaskManagerThread@@` -`class BSMultiBound`: VTable [0x0000000003383EA0, 0x0000000000000000 offset, 41 functions] `.?AVBSMultiBound@@` -`class BSMultiBoundRoom`: VTable [0x00000000033840F8, 0x0000000000000000 offset, 68 functions] `.?AVBSMultiBoundRoom@@` -`class BSValueNode`: VTable [0x00000000033845E0, 0x0000000000000000 offset, 65 functions] `.?AVBSValueNode@@` -`class BSOcclusionShape`: VTable [0x00000000033849E8, 0x0000000000000000 offset, 44 functions] `.?AVBSOcclusionShape@@` -`struct BSAttachTechniques::AttachTechniqueInput`: VTable [0x0000000003384C50, 0x0000000000000000 offset, 2 functions] `.?AUAttachTechniqueInput@BSAttachTechniques@@` -`class PArrayPoint`: VTable [0x0000000003384FA0, 0x0000000000000000 offset, 41 functions] `.?AVPArrayPoint@@` -`class NiTArray,class NiTMallocInterface > >`: VTable [0x0000000003385138, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiAVObject@@@@V?$NiTMallocInterface@V?$NiPointer@VNiAVObject@@@@@@@@` -`class NiTPrimitiveArray >`: VTable [0x0000000003385150, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@V?$NiPointer@VNiAVObject@@@@@@` -`class BSPSysArrayEmitter`: VTable [0x0000000003385168, 0x0000000000000000 offset, 48 functions] `.?AVBSPSysArrayEmitter@@` -`class BSMultiBoundShape`: VTable [0x00000000033853A0, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundShape@@` -`class BSOcclusionBox`: VTable [0x0000000003385858, 0x0000000000000000 offset, 44 functions] `.?AVBSOcclusionBox@@` -`class BSOcclusionPlane`: VTable [0x0000000003385B50, 0x0000000000000000 offset, 44 functions] `.?AVBSOcclusionPlane@@` -`class BSPortalSharedNode`: VTable [0x0000000003385E08, 0x0000000000000000 offset, 64 functions] `.?AVBSPortalSharedNode@@` -`class BSBodyMorphOffsetsExtraData`: VTable [0x00000000033861F0, 0x0000000000000000 offset, 41 functions] `.?AVBSBodyMorphOffsetsExtraData@@` -`class BSBehaviorGraphExtraData`: VTable [0x0000000003386630, 0x0000000000000000 offset, 41 functions] `.?AVBSBehaviorGraphExtraData@@` -`class NiTArray * __ptr64,class NiTMallocInterface * __ptr64> >`: VTable [0x0000000003386C38, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAV?$NiTPrimitiveSet@PEAVNiNode@@@@V?$NiTMallocInterface@PEAV?$NiTPrimitiveSet@PEAVNiNode@@@@@@@@` -`class NiTPrimitiveArray * __ptr64>`: VTable [0x0000000003386C50, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAV?$NiTPrimitiveSet@PEAVNiNode@@@@@@` -`class NiBSBoneLODController`: VTable [0x0000000003386C68, 0x0000000000000000 offset, 50 functions] `.?AVNiBSBoneLODController@@` -`class NiTMapBase,class NiNode * __ptr64,unsigned int>`: VTable [0x0000000003386E70, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEAVNiNode@@I@@` -`class NiTPointerMap`: VTable [0x0000000003386EC0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEAVNiNode@@I@@` -`class NiTMapBase,unsigned int,bool>`: VTable [0x0000000003386F10, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@I_N@@` -`class NiTPointerMap`: VTable [0x0000000003386F60, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@I_N@@` -`class BSBoneMap`: VTable [0x0000000003387430, 0x0000000000000000 offset, 41 functions] `.?AVBSBoneMap@@` -`class BSHEAttribute`: VTable [0x0000000003387DB8, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@PEBD@@` -`class BSHEAttribute`: VTable [0x0000000003387EE0, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@_N@@` -`class BSHEAttribute`: VTable [0x0000000003388680, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@VNiColorA@@@@` -`class BSSubIndexTriShape`: VTable [0x0000000003388CF0, 0x0000000000000000 offset, 58 functions] `.?AVBSSubIndexTriShape@@` -`class BSDistantObjectLargeRefExtraData`: VTable [0x0000000003388FD8, 0x0000000000000000 offset, 41 functions] `.?AVBSDistantObjectLargeRefExtraData@@` -`class BSHEAttribute`: VTable [0x0000000003389CD0, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@PEBVHalfEdge@BSHEMesh@@@@` -`class BSBoneLODExtraData`: VTable [0x000000000338A208, 0x0000000000000000 offset, 41 functions] `.?AVBSBoneLODExtraData@@` -`class BSPSysMultiTargetEmitterCtlr`: VTable [0x000000000338A9A8, 0x0000000000000000 offset, 65 functions] `.?AVBSPSysMultiTargetEmitterCtlr@@` -`class BSAVObjectEventSource`: VTable [0x000000000338AE08, 0x0000000000000000 offset, 1 functions] `.?AVBSAVObjectEventSource@@` -`class BSNiNode`: VTable [0x000000000338AE80, 0x0000000000000000 offset, 64 functions] `.?AVBSNiNode@@` -`class BSDecalPlacementVectorExtraData`: VTable [0x000000000338B4B0, 0x0000000000000000 offset, 41 functions] `.?AVBSDecalPlacementVectorExtraData@@` -`class BSParentVelocityModifier`: VTable [0x000000000338B730, 0x0000000000000000 offset, 44 functions] `.?AVBSParentVelocityModifier@@` -`class BSAnimInteractionMarker`: VTable [0x000000000338B940, 0x0000000000000000 offset, 41 functions] `.?AVBSAnimInteractionMarker@@` -`class BSInvMarker`: VTable [0x000000000338BB38, 0x0000000000000000 offset, 41 functions] `.?AVBSInvMarker@@` -`class BSWArray`: VTable [0x000000000338BE28, 0x0000000000000000 offset, 41 functions] `.?AVBSWArray@@` -`class BSDamageStage`: VTable [0x000000000338C020, 0x0000000000000000 offset, 65 functions] `.?AVBSDamageStage@@` -`class BSBlastNode`: VTable [0x000000000338C300, 0x0000000000000000 offset, 65 functions] `.?AVBSBlastNode@@` -`class BSMultiBoundCapsule`: VTable [0x000000000338C5E0, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundCapsule@@` -`class BSDebrisNode`: VTable [0x000000000338C8D0, 0x0000000000000000 offset, 65 functions] `.?AVBSDebrisNode@@` -`class BSPSysStripUpdateModifier`: VTable [0x000000000338CBE0, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysStripUpdateModifier@@` -`class BSPSysSubTexModifier`: VTable [0x000000000338CE60, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysSubTexModifier@@` -`class BSPSysScaleModifier`: VTable [0x000000000338D1B8, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysScaleModifier@@` -`class BSProceduralLightningController`: VTable [0x000000000338D820, 0x0000000000000000 offset, 62 functions] `.?AVBSProceduralLightningController@@` -`class BSProceduralLightningTasklet`: VTable [0x000000000338DA80, 0x0000000000000000 offset, 4 functions] `.?AVBSProceduralLightningTasklet@@` -`class BSLagBoneController`: VTable [0x000000000338DC38, 0x0000000000000000 offset, 49 functions] `.?AVBSLagBoneController@@` -`class BSNonUniformScaleExtraData`: VTable [0x000000000338DEE0, 0x0000000000000000 offset, 41 functions] `.?AVBSNonUniformScaleExtraData@@` -`class BSHEMeshDebuggerAction`: VTable [0x000000000338E320, 0x0000000000000000 offset, 1 functions] `.?AVBSHEMeshDebuggerAction@@` -`class BSHEMeshDebuggerActionCollapse`: VTable [0x000000000338E338, 0x0000000000000000 offset, 1 functions] `.?AVBSHEMeshDebuggerActionCollapse@@` -`class BSHEMeshDebuggerActionAdd`: VTable [0x000000000338E350, 0x0000000000000000 offset, 1 functions] `.?AVBSHEMeshDebuggerActionAdd@@` -`class BSHEMeshDebuggerActionRemove`: VTable [0x000000000338E368, 0x0000000000000000 offset, 1 functions] `.?AVBSHEMeshDebuggerActionRemove@@` -`class BSRangeNode`: VTable [0x000000000338E450, 0x0000000000000000 offset, 65 functions] `.?AVBSRangeNode@@` -`class BSTableCurve`: VTable [0x000000000338E758, 0x0000000000000000 offset, 2 functions] `.?AVBSTableCurve@@` -`class GRefCountImplCore`: VTable [0x000000000338F4B0, 0x0000000000000000 offset, 1 functions] `.?AVGRefCountImplCore@@` -`class GRefCountImpl`: VTable [0x000000000338F4C8, 0x0000000000000000 offset, 1 functions] `.?AVGRefCountImpl@@` -`class GRefCountBaseStatImpl`: VTable [0x000000000338F4E0, 0x0000000000000000 offset, 1 functions] `.?AV?$GRefCountBaseStatImpl@VGRefCountImpl@@$01@@` -`class GRefCountBase`: VTable [0x000000000338F4F8, 0x0000000000000000 offset, 1 functions] `.?AV?$GRefCountBase@VGFile@@$01@@` -`class GFile`: VTable [0x000000000338F510, 0x0000000000000000 offset, 19 functions] `.?AVGFile@@` -`class GMemoryFile`: VTable [0x000000000338F5D0, 0x0000000000000000 offset, 19 functions] `.?AVGMemoryFile@@` -`class GRefCountBase`: VTable [0x000000000338F690, 0x0000000000000000 offset, 1 functions] `.?AV?$GRefCountBase@VGFxState@@$01@@` -`class GFxState`: VTable [0x000000000338F6A8, 0x0000000000000000 offset, 1 functions] `.?AVGFxState@@` -`class GFxFileOpenerBase`: VTable [0x000000000338F6C0, 0x0000000000000000 offset, 4 functions] `.?AVGFxFileOpenerBase@@` -`class BSScaleformFileOpener`: VTable [0x000000000338F6F0, 0x0000000000000000 offset, 4 functions] `.?AVBSScaleformFileOpener@@` -`class BSResource::EntryDB`: VTable [0x000000000338F740, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@ScaleformFile@@@BSResource@@` -`class ScaleformFile::MemoryFile`: VTable [0x000000000338F788, 0x0000000000000000 offset, 19 functions] `.?AVMemoryFile@ScaleformFile@@` -`class BSNavmesh`: VTable [0x00000000033B1FF0, 0x0000000000000000 offset, 2 functions] `.?AVBSNavmesh@@` -`struct ITrianglePathSplitter`: VTable [0x00000000033B43B8, 0x0000000000000000 offset, 3 functions] `.?AUITrianglePathSplitter@@` -`struct FindTriangleForLocationWaterFilter`: VTable [0x00000000033B43E0, 0x0000000000000000 offset, 2 functions] `.?AUFindTriangleForLocationWaterFilter@@` -`struct BSPathing::EdgeFoundVisitor`: VTable [0x00000000033B4400, 0x0000000000000000 offset, 2 functions] `.?AUEdgeFoundVisitor@BSPathing@@` -`class BSPathing`: VTable [0x00000000033B4420, 0x0000000000000000 offset, 9 functions] `.?AVBSPathing@@` -`struct TrianglePathWaterAndLedgeSplitter`: VTable [0x00000000033B4480, 0x0000000000000000 offset, 3 functions] `.?AUTrianglePathWaterAndLedgeSplitter@@` -`struct IPathSmootherRayCast`: VTable [0x00000000033B4548, 0x0000000000000000 offset, 2 functions] `.?AUIPathSmootherRayCast@@` -`struct `anonymous namespace'::FindClosestOpenEdgeFunctor`: VTable [0x00000000033B4690, 0x0000000000000000 offset, 2 functions] `.?AUFindClosestOpenEdgeFunctor@?A0xe93625c4@@` -`struct `anonymous namespace'::SortIntersectingEdgesFunctor`: VTable [0x00000000033B46B0, 0x0000000000000000 offset, 2 functions] `.?AUSortIntersectingEdgesFunctor@?A0xe93625c4@@` -`struct `anonymous namespace'::CheckSphereVisitor`: VTable [0x00000000033B48B8, 0x0000000000000000 offset, 2 functions] `.?AUCheckSphereVisitor@?A0xe93625c4@@` -`struct `anonymous namespace'::PathSmootherRayCastBuildNodesForLargeZDelta`: VTable [0x00000000033B4AC8, 0x0000000000000000 offset, 2 functions] `.?AUPathSmootherRayCastBuildNodesForLargeZDelta@?A0xe93625c4@@` -`struct IBSTCreator`: VTable [0x00000000033B54E8, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSPathingSolution@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000033B5510, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBSPathingSolution@@V1@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000033B5538, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBSPathingSolution@@V1@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingSolution@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033B5560, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBSPathingSolution@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingSolution@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000033B5588, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VBSPathingSolution@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingSolution@@$0EA@@@@@` -`class BSPathingLOSGridMap`: VTable [0x00000000033B5D60, 0x0000000000000000 offset, 3 functions] `.?AVBSPathingLOSGridMap@@` -`class BSPathingLOSGrid`: VTable [0x00000000033B5D88, 0x0000000000000000 offset, 3 functions] `.?AVBSPathingLOSGrid@@` -`class BSPathingLOSGridCell`: VTable [0x00000000033B5DB0, 0x0000000000000000 offset, 3 functions] `.?AVBSPathingLOSGridCell@@` -`class BSPathingRequest`: VTable [0x00000000033B6080, 0x0000000000000000 offset, 7 functions] `.?AVBSPathingRequest@@` -`class IPathBuilderTracker`: VTable [0x00000000033B60D0, 0x0000000000000000 offset, 3 functions] `.?AVIPathBuilderTracker@@` -`class NullPathBuilderTracker`: VTable [0x00000000033B60F8, 0x0000000000000000 offset, 3 functions] `.?AVNullPathBuilderTracker@@` -`struct BSTDerivedCreator`: VTable [0x00000000033B6120, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBSPathingRequest@@V1@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000033B6148, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBSPathingRequest@@V1@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033B6170, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBSPathingRequest@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000033B6198, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VBSPathingRequest@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct BSPathing::CheckLineOfSightFilter`: VTable [0x00000000033B6E80, 0x0000000000000000 offset, 2 functions] `.?AUCheckLineOfSightFilter@BSPathing@@` -`class IPathBuilder`: VTable [0x00000000033B6EA0, 0x0000000000000000 offset, 2 functions] `.?AVIPathBuilder@@` -`class BSPathBuilder`: VTable [0x00000000033B6EC0, 0x0000000000000000 offset, 2 functions] `.?AVBSPathBuilder@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000033B7140, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VBSPathingRequest@@VPathBuilderBSPathingRequest@?A0xc3818a1f@@@@` -`struct `anonymous namespace'::CheckLineOfSightTriangleFlagFiltersAdapter`: VTable [0x00000000033B7EF8, 0x0000000000000000 offset, 2 functions] `.?AUCheckLineOfSightTriangleFlagFiltersAdapter@?A0xc3818a1f@@` -`struct IMovementControllerFunctor`: VTable [0x00000000033B8A78, 0x0000000000000000 offset, 2 functions] `.?AUIMovementControllerFunctor@@` -`class BSFlatArrowConstructor`: VTable [0x00000000033B8A98, 0x0000000000000000 offset, 3 functions] `.?AVBSFlatArrowConstructor@@` -`class BSPathConstructor`: VTable [0x00000000033B8AC0, 0x0000000000000000 offset, 3 functions] `.?AVBSPathConstructor@@` -`struct SetDebugRenderingFunctor`: VTable [0x00000000033B8C20, 0x0000000000000000 offset, 2 functions] `.?AUSetDebugRenderingFunctor@@` -`class MovementArbitrationScheme`: VTable [0x00000000033B9748, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationScheme@M@@` -`class MovementArbitrationAverage`: VTable [0x00000000033B9768, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationAverage@M@@` -`class MovementArbitrationAverageFloat`: VTable [0x00000000033B9788, 0x0000000000000000 offset, 2 functions] `.?AVMovementArbitrationAverageFloat@@` -`class MovementArbitrationScheme >`: VTable [0x00000000033B97A8, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationScheme@V?$BSTSmartPointer@VIMovementParameters@@UBSTSmartPointerIntrusiveRefCount@@@@@@` -`class MovementArbitrationMaxWeight >`: VTable [0x00000000033B97C8, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationMaxWeight@V?$BSTSmartPointer@VIMovementParameters@@UBSTSmartPointerIntrusiveRefCount@@@@@@` -`class MovementArbitrationMaxWeightParameters`: VTable [0x00000000033B97E8, 0x0000000000000000 offset, 2 functions] `.?AVMovementArbitrationMaxWeightParameters@@` -`class MovementArbitrationScheme`: VTable [0x00000000033B9808, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationScheme@VNiPoint3@@@@` -`class MovementArbitrationMaxWeight`: VTable [0x00000000033B9828, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationMaxWeight@VNiPoint3@@@@` -`class MovementArbitrationMaxWeightPoint`: VTable [0x00000000033B9848, 0x0000000000000000 offset, 2 functions] `.?AVMovementArbitrationMaxWeightPoint@@` -`class IMovementPlayIdleResult`: VTable [0x00000000033B9868, 0x0000000000000000 offset, 4 functions] `.?AVIMovementPlayIdleResult@@` -`class NullMovementSelectIdleResult`: VTable [0x00000000033B98B8, 0x0000000000000000 offset, 4 functions] `.?AVNullMovementSelectIdleResult@@` -`class AStarSearch,22>`: VTable [0x00000000033B9DA0, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@PEBVBSNavmeshInfo@@V?$BSTSmartPointer@VBSPathingDoor@@UBSTSmartPointerIntrusiveRefCount@@@@$0BG@@@` -`class BSNavmeshInfoSearch`: VTable [0x00000000033B9DC8, 0x0000000000000000 offset, 3 functions] `.?AVBSNavmeshInfoSearch@@` -`class BSPrecomputedNavmeshInfoSearch`: VTable [0x00000000033B9DF0, 0x0000000000000000 offset, 3 functions] `.?AVBSPrecomputedNavmeshInfoSearch@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000033BA0E0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0LA@@@@@` -`struct BSNavmeshInfoMap::IRecursiveVisitor`: VTable [0x00000000033BA898, 0x0000000000000000 offset, 3 functions] `.?AUIRecursiveVisitor@BSNavmeshInfoMap@@` -`class BSNavmeshInfoMap`: VTable [0x00000000033BA8C0, 0x0000000000000000 offset, 6 functions] `.?AVBSNavmeshInfoMap@@` -`struct `anonymous namespace'::FindPreferredConnectedNavmeshInfosWithinRadiusVisitor`: VTable [0x00000000033BAA98, 0x0000000000000000 offset, 3 functions] `.?AUFindPreferredConnectedNavmeshInfosWithinRadiusVisitor@?A0x3d5a5019@@` -`struct BSPrecomputedNavmeshInfoPathMap::INavmeshInfoVisitor`: VTable [0x00000000033BADA0, 0x0000000000000000 offset, 2 functions] `.?AUINavmeshInfoVisitor@BSPrecomputedNavmeshInfoPathMap@@` -`class BSNavmeshObstacleData`: VTable [0x00000000033BB458, 0x0000000000000000 offset, 2 functions] `.?AVBSNavmeshObstacleData@@` -`struct BSPathManager::IPendingRequestVisitor`: VTable [0x00000000033BC6A8, 0x0000000000000000 offset, 2 functions] `.?AUIPendingRequestVisitor@BSPathManager@@` -`class PathingTaskData`: VTable [0x00000000033BC7C0, 0x0000000000000000 offset, 4 functions] `.?AVPathingTaskData@@` -`class BSTMessageQueue >`: VTable [0x00000000033BC7F0, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@V?$NiPointer@VNiAVObject@@@@@@` -`class BSTCommonMessageQueue >`: VTable [0x00000000033BC830, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@V?$NiPointer@VNiAVObject@@@@@@` -`class BSTCommonStaticMessageQueue,256>`: VTable [0x00000000033BC880, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonStaticMessageQueue@V?$NiPointer@VNiAVObject@@@@$0BAA@@@` -`struct INavmeshSearchFilterSet`: VTable [0x00000000033BCFF0, 0x0000000000000000 offset, 2 functions] `.?AUINavmeshSearchFilterSet@@` -`struct BSNavmeshSearchFilters`: VTable [0x00000000033BD010, 0x0000000000000000 offset, 2 functions] `.?AUBSNavmeshSearchFilters@@` -`class BSNavmeshSearch`: VTable [0x00000000033BD388, 0x0000000000000000 offset, 3 functions] `.?AVBSNavmeshSearch@@` -`struct PathSmootherRayCastUsePreferredTris`: VTable [0x00000000033BD650, 0x0000000000000000 offset, 2 functions] `.?AUPathSmootherRayCastUsePreferredTris@@` -`struct PathSmootherRayCastUseTrianglePath`: VTable [0x00000000033BD670, 0x0000000000000000 offset, 2 functions] `.?AUPathSmootherRayCastUseTrianglePath@@` -`struct VelocityObstacle::Utilities::BuildOpenEdgeListsVisitor`: VTable [0x00000000033BDD58, 0x0000000000000000 offset, 2 functions] `.?AUBuildOpenEdgeListsVisitor@Utilities@VelocityObstacle@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000033BDDF8, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0HI@@@@@` -`class BSNavmeshObstacleUndoData`: VTable [0x00000000033BE400, 0x0000000000000000 offset, 2 functions] `.?AVBSNavmeshObstacleUndoData@@` -`struct ISmoothingRayValidator`: VTable [0x00000000033BEAA0, 0x0000000000000000 offset, 3 functions] `.?AUISmoothingRayValidator@@` -`struct GroundPathRayValidator`: VTable [0x00000000033BEAC8, 0x0000000000000000 offset, 3 functions] `.?AUGroundPathRayValidator@@` -`struct WaterPathRayValidator`: VTable [0x00000000033BEAF0, 0x0000000000000000 offset, 3 functions] `.?AUWaterPathRayValidator@@` -`struct IPathingNodeGenerator`: VTable [0x00000000033BEB18, 0x0000000000000000 offset, 4 functions] `.?AUIPathingNodeGenerator@@` -`struct GroundPathPathingNodeGenerator`: VTable [0x00000000033BEB48, 0x0000000000000000 offset, 4 functions] `.?AUGroundPathPathingNodeGenerator@@` -`struct WaterPathPathingNodeGenerator`: VTable [0x00000000033BEB78, 0x0000000000000000 offset, 4 functions] `.?AUWaterPathPathingNodeGenerator@@` -`class AStarSearch`: VTable [0x00000000033BF360, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@UBSPathSmootherPOVNode@@UBSPathSmootherPOVLink@@$0M@@@` -`class BSPathSmootherPOVSearch`: VTable [0x00000000033BF388, 0x0000000000000000 offset, 3 functions] `.?AVBSPathSmootherPOVSearch@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000033BF5F8, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0GA@@@@@` -`class MovementMessage`: VTable [0x00000000033BF690, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessage@@` -`struct IPathFollowerAction`: VTable [0x00000000033BF6D8, 0x0000000000000000 offset, 4 functions] `.?AUIPathFollowerAction@@` -`class MovementMessageJump`: VTable [0x00000000033BF708, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageJump@@` -`class MovementMessageJump`: VTable [0x00000000033BF750, 0x0000000000000010 offset, 4 functions] `.?AVMovementMessageJump@@` -`struct IBSTCreator`: VTable [0x00000000033BF780, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VMovementMessage@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000033BF7A8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageJump@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000033BF7D0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageJump@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033BF7F8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageJump@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000033BF820, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageJump@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`class BSPathingSearchRayCast`: VTable [0x00000000033BFCD8, 0x0000000000000000 offset, 1 functions] `.?AVBSPathingSearchRayCast@@` -`class MovementArbitrationScheme`: VTable [0x00000000033BFED8, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationScheme@VMovementVector@@@@` -`class MovementArbitrationVectorAdd`: VTable [0x00000000033BFEF8, 0x0000000000000000 offset, 2 functions] `.?AVMovementArbitrationVectorAdd@@` -`class MovementMessageBlocked`: VTable [0x00000000033BFF48, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageBlocked@@` -`struct BSTDerivedCreator`: VTable [0x00000000033BFF90, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageBlocked@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000033BFFB8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageBlocked@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033BFFE0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageBlocked@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000033C0008, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageBlocked@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct ISelectIdleFilter`: VTable [0x00000000033C01A0, 0x0000000000000000 offset, 2 functions] `.?AUISelectIdleFilter@@` -`struct MovementSelectIdleUtils::SelectFirstIdleFilter`: VTable [0x00000000033C01C0, 0x0000000000000000 offset, 2 functions] `.?AUSelectFirstIdleFilter@MovementSelectIdleUtils@@` -`struct MovementSelectIdleUtils::SelectClosestIdleToPath`: VTable [0x00000000033C02D8, 0x0000000000000000 offset, 2 functions] `.?AUSelectClosestIdleToPath@MovementSelectIdleUtils@@` -`class MovementMessageDoor`: VTable [0x00000000033C03C8, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageDoor@@` -`class MovementMessageApproachingDoor`: VTable [0x00000000033C0410, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageApproachingDoor@@` -`class MovementMessageActivateDoor`: VTable [0x00000000033C0458, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageActivateDoor@@` -`class MovementMessageActivateDoor`: VTable [0x00000000033C04A0, 0x0000000000000018 offset, 4 functions] `.?AVMovementMessageActivateDoor@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C04D0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageActivateDoor@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000033C04F8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageActivateDoor@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C0520, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageActivateDoor@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000033C0548, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageActivateDoor@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`class MovementMessagePathEvent`: VTable [0x00000000033C0740, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessagePathEvent@@` -`class MovementMessageNewPath`: VTable [0x00000000033C0788, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageNewPath@@` -`class MovementMessagePathComplete`: VTable [0x00000000033C07F0, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessagePathComplete@@` -`class MovementMessagePathFailed`: VTable [0x00000000033C0860, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessagePathFailed@@` -`class MovementMessagePathCleared`: VTable [0x00000000033C08C8, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessagePathCleared@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C0910, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageNewPath@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000033C0938, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageNewPath@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C0960, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageNewPath@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000033C0988, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageNewPath@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C09B0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessagePathComplete@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000033C09D8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessagePathComplete@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C0A00, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessagePathComplete@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000033C0A28, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessagePathComplete@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C0A50, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessagePathFailed@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000033C0A78, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessagePathFailed@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C0AA0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessagePathFailed@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000033C0AC8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessagePathFailed@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct IPipelineStageInterface`: VTable [0x00000000033C1900, 0x0000000000000000 offset, 1 functions] `.?AUIPipelineStageInterface@@` -`struct IMovementPlannerAgent`: VTable [0x00000000033C1918, 0x0000000000000000 offset, 4 functions] `.?AUIMovementPlannerAgent@@` -`struct IMovementPathManagerAgent`: VTable [0x00000000033C1948, 0x0000000000000000 offset, 7 functions] `.?AUIMovementPathManagerAgent@@` -`struct IMovementInterface`: VTable [0x00000000033C1998, 0x0000000000000000 offset, 1 functions] `.?AUIMovementInterface@@` -`struct IMovementQueryPathFollowing::INodeVisitor`: VTable [0x00000000033C19B0, 0x0000000000000000 offset, 2 functions] `.?AUINodeVisitor@IMovementQueryPathFollowing@@` -`class IMovementQueryPathFollowing`: VTable [0x00000000033C19D0, 0x0000000000000000 offset, 21 functions] `.?AVIMovementQueryPathFollowing@@` -`class IMovementSetPathFollowing`: VTable [0x00000000033C1AA8, 0x0000000000000000 offset, 2 functions] `.?AVIMovementSetPathFollowing@@` -`class IMovementDebugRenderingInterface`: VTable [0x00000000033C1AC8, 0x0000000000000000 offset, 3 functions] `.?AVIMovementDebugRenderingInterface@@` -`class IMovementSelectIdle`: VTable [0x00000000033C1AF0, 0x0000000000000000 offset, 6 functions] `.?AVIMovementSelectIdle@@` -`struct ICheckEndReachedFunctorMapper`: VTable [0x00000000033C1B38, 0x0000000000000000 offset, 3 functions] `.?AUICheckEndReachedFunctorMapper@@` -`struct IMovementHandlerAgent`: VTable [0x00000000033C1B60, 0x0000000000000000 offset, 4 functions] `.?AUIMovementHandlerAgent@@` -`struct CheckParameterReachedFunctor`: VTable [0x00000000033C1B90, 0x0000000000000000 offset, 4 functions] `.?AUCheckParameterReachedFunctor@@` -`struct CheckGoalReachedFunctor`: VTable [0x00000000033C1BC0, 0x0000000000000000 offset, 4 functions] `.?AUCheckGoalReachedFunctor@@` -`struct CheckStoppedMovingFunctor`: VTable [0x00000000033C1BF0, 0x0000000000000000 offset, 4 functions] `.?AUCheckStoppedMovingFunctor@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000033C1C20, 0x0000000000000000 offset, 13 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000033C1CA8, 0x0000000000000018 offset, 4 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000033C1CD8, 0x0000000000000020 offset, 7 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000033C1D28, 0x0000000000000028 offset, 21 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000033C1E00, 0x0000000000000030 offset, 2 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000033C1E20, 0x0000000000000038 offset, 3 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000033C1E48, 0x0000000000000040 offset, 4 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000033C1E78, 0x0000000000000048 offset, 4 functions] `.?AVMovementAgentPathFollowerStandard@@` -`struct IBSTCreator`: VTable [0x00000000033C20C0, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VMovementAgent@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C20E8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementAgentPathFollowerStandard@@VMovementAgent@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000033C2110, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementAgentPathFollowerStandard@@VMovementAgent@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C2138, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementAgentPathFollowerStandard@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterMovementAgentCreator`: VTable [0x00000000033C2160, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementAgentCreator@VMovementAgentPathFollowerStandard@@@@` -`struct `anonymous namespace'::CheckEndReachedFunctorMapper`: VTable [0x00000000033C26D8, 0x0000000000000000 offset, 3 functions] `.?AUCheckEndReachedFunctorMapper@?A0x5818f6e6@@` -`class IMovementParameters`: VTable [0x00000000033C29C0, 0x0000000000000000 offset, 9 functions] `.?AVIMovementParameters@@` -`class MovementParameters`: VTable [0x00000000033C2A20, 0x0000000000000000 offset, 9 functions] `.?AVMovementParameters@@` -`class IMovementControllerRegisterInterface`: VTable [0x00000000033C34D8, 0x0000000000000000 offset, 5 functions] `.?AVIMovementControllerRegisterInterface@@` -`class MovementControllerAI`: VTable [0x00000000033C3518, 0x0000000000000000 offset, 11 functions] `.?AVMovementControllerAI@@` -`struct IMovementState`: VTable [0x00000000033C3590, 0x0000000000000000 offset, 20 functions] `.?AUIMovementState@@` -`struct NullMovementState`: VTable [0x00000000033C3660, 0x0000000000000000 offset, 20 functions] `.?AUNullMovementState@@` -`class BSPathingStreamSimpleBufferRead`: VTable [0x00000000033C3730, 0x0000000000000000 offset, 20 functions] `.?AVBSPathingStreamSimpleBufferRead@@` -`class IMovementControllerDataTracker`: VTable [0x00000000033C3800, 0x0000000000000000 offset, 2 functions] `.?AVIMovementControllerDataTracker@@` -`class MovementControllerNullDataTracker`: VTable [0x00000000033C3820, 0x0000000000000000 offset, 2 functions] `.?AVMovementControllerNullDataTracker@@` -`class MovementAgent`: VTable [0x00000000033C3D50, 0x0000000000000000 offset, 13 functions] `.?AVMovementAgent@@` -`class MovementPathManagerAgent`: VTable [0x00000000033C47F0, 0x0000000000000000 offset, 13 functions] `.?AVMovementPathManagerAgent@@` -`class MovementPathManagerAgent`: VTable [0x00000000033C4878, 0x0000000000000018 offset, 7 functions] `.?AVMovementPathManagerAgent@@` -`class IMovementSetGoal`: VTable [0x00000000033C48C8, 0x0000000000000000 offset, 5 functions] `.?AVIMovementSetGoal@@` -`class IMovementQueryPathingState`: VTable [0x00000000033C4908, 0x0000000000000000 offset, 14 functions] `.?AVIMovementQueryPathingState@@` -`class MovementPathManagerArbiter`: VTable [0x00000000033C4998, 0x0000000000000000 offset, 18 functions] `.?AVMovementPathManagerArbiter@@` -`class MovementPathManagerArbiter`: VTable [0x00000000033C4A50, 0x0000000000000018 offset, 5 functions] `.?AVMovementPathManagerArbiter@@` -`class MovementPathManagerArbiter`: VTable [0x00000000033C4A90, 0x0000000000000020 offset, 14 functions] `.?AVMovementPathManagerArbiter@@` -`class MovementPathManagerArbiter`: VTable [0x00000000033C4B20, 0x0000000000000028 offset, 3 functions] `.?AVMovementPathManagerArbiter@@` -`class IMovementAgentDataTracker`: VTable [0x00000000033C4B48, 0x0000000000000000 offset, 2 functions] `.?AV?$IMovementAgentDataTracker@UIMovementPathManagerAgent@@W4AGENT_RESULT@MovementPathManagerAgentReturnData@@@@` -`class IMovementPathManagerDataTracker`: VTable [0x00000000033C4B68, 0x0000000000000000 offset, 4 functions] `.?AVIMovementPathManagerDataTracker@@` -`class MovementPathManagerNullTracker`: VTable [0x00000000033C4B98, 0x0000000000000000 offset, 4 functions] `.?AVMovementPathManagerNullTracker@@` -`class IStaticAvoidNodeManager`: VTable [0x00000000033C4BC8, 0x0000000000000000 offset, 3 functions] `.?AVIStaticAvoidNodeManager@@` -`struct IBSTCreator`: VTable [0x00000000033C4C40, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VMovementArbiter@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C4C68, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementPathManagerArbiter@@VMovementArbiter@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000033C4C90, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementPathManagerArbiter@@VMovementArbiter@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C4CB8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementPathManagerArbiter@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterMovementArbiterCreator`: VTable [0x00000000033C4CE0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementArbiterCreator@VMovementPathManagerArbiter@@@@` -`class IPathFollowerState`: VTable [0x00000000033C5430, 0x0000000000000000 offset, 4 functions] `.?AVIPathFollowerState@@` -`struct ICheckEndReachedFunctor`: VTable [0x00000000033C5460, 0x0000000000000000 offset, 4 functions] `.?AUICheckEndReachedFunctor@@` -`class PathFollowerStatePlayIdle`: VTable [0x00000000033C5550, 0x0000000000000000 offset, 4 functions] `.?AVPathFollowerStatePlayIdle@@` -`class PathFollowerStateFollowPathToParameter`: VTable [0x00000000033C56F8, 0x0000000000000000 offset, 4 functions] `.?AVPathFollowerStateFollowPathToParameter@@` -`class PathFollowerStateTurnToAngle`: VTable [0x00000000033C5920, 0x0000000000000000 offset, 4 functions] `.?AVPathFollowerStateTurnToAngle@@` -`class PathFollowerStateKeepLastDirection`: VTable [0x00000000033C59C0, 0x0000000000000000 offset, 4 functions] `.?AVPathFollowerStateKeepLastDirection@@` -`class IMovementPlannerSetArbitration`: VTable [0x00000000033C5FF0, 0x0000000000000000 offset, 7 functions] `.?AVIMovementPlannerSetArbitration@@` -`class MovementPlannerArbiter`: VTable [0x00000000033C6040, 0x0000000000000000 offset, 18 functions] `.?AVMovementPlannerArbiter@@` -`class MovementPlannerArbiter`: VTable [0x00000000033C60F8, 0x0000000000000018 offset, 7 functions] `.?AVMovementPlannerArbiter@@` -`class MovementPlannerArbiter`: VTable [0x00000000033C6148, 0x0000000000000020 offset, 3 functions] `.?AVMovementPlannerArbiter@@` -`class MovementPlannerAgent`: VTable [0x00000000033C6170, 0x0000000000000000 offset, 13 functions] `.?AVMovementPlannerAgent@@` -`class MovementPlannerAgent`: VTable [0x00000000033C61F8, 0x0000000000000018 offset, 4 functions] `.?AVMovementPlannerAgent@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C6328, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementPlannerArbiter@@VMovementArbiter@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000033C6350, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementPlannerArbiter@@VMovementArbiter@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C6378, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementPlannerArbiter@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterMovementArbiterCreator`: VTable [0x00000000033C63A0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementArbiterCreator@VMovementPlannerArbiter@@@@` -`class IMovementAgentDataTracker`: VTable [0x00000000033C63C8, 0x0000000000000000 offset, 2 functions] `.?AV?$IMovementAgentDataTracker@UIMovementPlannerAgent@@VMovementPlannerAgentReturnDataSmallDelta@@@@` -`class MovementAgentNullTracker`: VTable [0x00000000033C63E8, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementAgentNullTracker@UIMovementPlannerAgent@@VMovementPlannerAgentReturnDataSmallDelta@@@@` -`class WeightedModifierVisitor >`: VTable [0x00000000033C6570, 0x0000000000000000 offset, 3 functions] `.?AV?$WeightedModifierVisitor@V?$BSTSmartPointer@VIMovementParameters@@UBSTSmartPointerIntrusiveRefCount@@@@@@` -`class VisitReturnData,class BSScrapArrayAllocator>`: VTable [0x00000000033C6598, 0x0000000000000000 offset, 3 functions] `.?AV?$VisitReturnData@V?$BSTSmartPointer@VIMovementParameters@@UBSTSmartPointerIntrusiveRefCount@@@@VBSScrapArrayAllocator@@@@` -`class WeightedModifierVisitor`: VTable [0x00000000033C65C0, 0x0000000000000000 offset, 3 functions] `.?AV?$WeightedModifierVisitor@VMovementVector@@@@` -`class VisitReturnData`: VTable [0x00000000033C65E8, 0x0000000000000000 offset, 3 functions] `.?AV?$VisitReturnData@VMovementVector@@VBSScrapArrayAllocator@@@@` -`class WeightedModifierVisitor`: VTable [0x00000000033C6610, 0x0000000000000000 offset, 3 functions] `.?AV?$WeightedModifierVisitor@VNiPoint3@@@@` -`class VisitReturnData`: VTable [0x00000000033C6638, 0x0000000000000000 offset, 3 functions] `.?AV?$VisitReturnData@VNiPoint3@@VBSScrapArrayAllocator@@@@` -`class MovementHandlerArbiter`: VTable [0x00000000033C6B68, 0x0000000000000000 offset, 18 functions] `.?AVMovementHandlerArbiter@@` -`class MovementHandlerArbiter`: VTable [0x00000000033C6C20, 0x0000000000000018 offset, 3 functions] `.?AVMovementHandlerArbiter@@` -`class MovementHandlerAgent`: VTable [0x00000000033C6C48, 0x0000000000000000 offset, 13 functions] `.?AVMovementHandlerAgent@@` -`class MovementHandlerAgent`: VTable [0x00000000033C6CD0, 0x0000000000000018 offset, 4 functions] `.?AVMovementHandlerAgent@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C6D10, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementHandlerArbiter@@VMovementArbiter@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000033C6D38, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementHandlerArbiter@@VMovementArbiter@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C6D60, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementHandlerArbiter@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterMovementArbiterCreator`: VTable [0x00000000033C6D88, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementArbiterCreator@VMovementHandlerArbiter@@@@` -`class IMovementAgentDataTracker`: VTable [0x00000000033C6DB0, 0x0000000000000000 offset, 2 functions] `.?AV?$IMovementAgentDataTracker@UIMovementHandlerAgent@@UMovementHandlerUpdateDataSmallDelta@@@@` -`class MovementAgentNullTracker`: VTable [0x00000000033C6DD0, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementAgentNullTracker@UIMovementHandlerAgent@@UMovementHandlerUpdateDataSmallDelta@@@@` -`class IMovementAgentDataTracker`: VTable [0x00000000033C6DF0, 0x0000000000000000 offset, 2 functions] `.?AV?$IMovementAgentDataTracker@UIMovementHandlerAgent@@UMovementHandlerOutputDataSmallDelta@@@@` -`class MovementAgentNullTracker`: VTable [0x00000000033C6E10, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementAgentNullTracker@UIMovementHandlerAgent@@UMovementHandlerOutputDataSmallDelta@@@@` -`class IMovementSetState`: VTable [0x00000000033C7210, 0x0000000000000000 offset, 3 functions] `.?AVIMovementSetState@@` -`class IMovementQueryState`: VTable [0x00000000033C7238, 0x0000000000000000 offset, 3 functions] `.?AVIMovementQueryState@@` -`class MovementAgentActorState`: VTable [0x00000000033C7260, 0x0000000000000000 offset, 13 functions] `.?AVMovementAgentActorState@@` -`class MovementAgentActorState`: VTable [0x00000000033C72E8, 0x0000000000000018 offset, 4 functions] `.?AVMovementAgentActorState@@` -`class MovementAgentActorState`: VTable [0x00000000033C7318, 0x0000000000000020 offset, 3 functions] `.?AVMovementAgentActorState@@` -`class MovementAgentActorState`: VTable [0x00000000033C7340, 0x0000000000000028 offset, 3 functions] `.?AVMovementAgentActorState@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C7398, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementAgentActorState@@VMovementAgent@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000033C73C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementAgentActorState@@VMovementAgent@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C73E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementAgentActorState@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterMovementAgentCreator`: VTable [0x00000000033C7410, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementAgentCreator@VMovementAgentActorState@@@@` -`class IMovementQueryActorAvoidance`: VTable [0x00000000033C7C28, 0x0000000000000000 offset, 3 functions] `.?AVIMovementQueryActorAvoidance@@` -`class MovementAgentActorAvoider`: VTable [0x00000000033C7C50, 0x0000000000000000 offset, 13 functions] `.?AVMovementAgentActorAvoider@@` -`class MovementAgentActorAvoider`: VTable [0x00000000033C7CD8, 0x0000000000000018 offset, 4 functions] `.?AVMovementAgentActorAvoider@@` -`class MovementAgentActorAvoider`: VTable [0x00000000033C7D08, 0x0000000000000020 offset, 7 functions] `.?AVMovementAgentActorAvoider@@` -`class MovementAgentActorAvoider`: VTable [0x00000000033C7D58, 0x0000000000000028 offset, 3 functions] `.?AVMovementAgentActorAvoider@@` -`class MovementAgentActorAvoider`: VTable [0x00000000033C7D80, 0x0000000000000030 offset, 3 functions] `.?AVMovementAgentActorAvoider@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C7EF0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementAgentActorAvoider@@VMovementAgent@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000033C7F18, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementAgentActorAvoider@@VMovementAgent@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C7F40, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementAgentActorAvoider@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterMovementAgentCreator`: VTable [0x00000000033C7F68, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementAgentCreator@VMovementAgentActorAvoider@@@@` -`class MovementHandlerAgentStrafing`: VTable [0x00000000033C8230, 0x0000000000000000 offset, 13 functions] `.?AVMovementHandlerAgentStrafing@@` -`class MovementHandlerAgentStrafing`: VTable [0x00000000033C82B8, 0x0000000000000018 offset, 4 functions] `.?AVMovementHandlerAgentStrafing@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C8310, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementHandlerAgentStrafing@@VMovementAgent@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000033C8338, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementHandlerAgentStrafing@@VMovementAgent@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C8360, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementHandlerAgentStrafing@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterMovementAgentCreator`: VTable [0x00000000033C8388, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementAgentCreator@VMovementHandlerAgentStrafing@@@@` -`class MovementArbiter`: VTable [0x00000000033C84E8, 0x0000000000000000 offset, 18 functions] `.?AVMovementArbiter@@` -`class MovementMessageSetStaticPath`: VTable [0x00000000033C8658, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageSetStaticPath@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C86A0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageSetStaticPath@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000033C86C8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageSetStaticPath@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C86F0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageSetStaticPath@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000033C8718, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageSetStaticPath@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`class IMovementQueryDeltas`: VTable [0x00000000033C8828, 0x0000000000000000 offset, 5 functions] `.?AVIMovementQueryDeltas@@` -`class MovementPostUpdateArbiter`: VTable [0x00000000033C8868, 0x0000000000000000 offset, 18 functions] `.?AVMovementPostUpdateArbiter@@` -`class MovementPostUpdateArbiter`: VTable [0x00000000033C8920, 0x0000000000000018 offset, 5 functions] `.?AVMovementPostUpdateArbiter@@` -`struct BSTDerivedCreator`: VTable [0x00000000033C8960, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementPostUpdateArbiter@@VMovementArbiter@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000033C8988, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementPostUpdateArbiter@@VMovementArbiter@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000033C89B0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementPostUpdateArbiter@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterMovementArbiterCreator`: VTable [0x00000000033C89D8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementArbiterCreator@VMovementPostUpdateArbiter@@@@` -`struct BSPerforce::IKeyValuePairFunctor`: VTable [0x00000000033C8FE8, 0x0000000000000000 offset, 1 functions] `.?AUIKeyValuePairFunctor@BSPerforce@@` -`class BSPerforce::`anonymous namespace'::FileInfoConvertFunctor`: VTable [0x00000000033C9020, 0x0000000000000000 offset, 1 functions] `.?AVFileInfoConvertFunctor@?A0xe9ad49c2@BSPerforce@@` -`class BSPerforce::Connection`: VTable [0x00000000033C9AE0, 0x0000000000000000 offset, 14 functions] `.?AVConnection@BSPerforce@@` -`class BSPerforce::`anonymous namespace'::Connection_Win32COM`: VTable [0x00000000033C9B70, 0x0000000000000000 offset, 14 functions] `.?AVConnection_Win32COM@?A0x9460b2b1@BSPerforce@@` -`class bnet::BaseCallback`: VTable [0x00000000033CB218, 0x0000000000000000 offset, 4 functions] `.?AVBaseCallback@bnet@@` -`class BSPlatform::BSBethesdaPlatform`: VTable [0x00000000033CB3D0, 0x0000000000000000 offset, 1 functions] `.?AVBSBethesdaPlatform@BSPlatform@@` -`class bnet::Callback`: VTable [0x00000000033CB438, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@W4BNetError@bnet@@VHttpResponseInfo@2@@bnet@@` -`class BSPlatform::BSTerminatedCallback`: VTable [0x00000000033CB480, 0x0000000000000000 offset, 6 functions] `.?AVBSTerminatedCallback@BSPlatform@@` -`class bnet::Callback`: VTable [0x00000000033CB4E8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@VBNetErrorResult@bnet@@UEmptyStatus@2@@bnet@@` -`class bnet::CallbackWrapper,void (__cdecl*)(unsigned __int64,class bnet::BNetErrorResult && __ptr64,enum bnet::BNetError,struct bnet::EmptyStatus const & __ptr64)>`: VTable [0x00000000033CB530, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@VBNetErrorResult@bnet@@UEmptyStatus@2@@bnet@@P6AX_K$$QEAVBNetErrorResult@2@W4BNetError@2@AEBUEmptyStatus@2@@Z@bnet@@` -`class bnet::IProducerConsumerQueue >`: VTable [0x00000000033D3FA0, 0x0000000000000000 offset, 6 functions] `.?AV?$IProducerConsumerQueue@V?$UniquePtr@VJob@bnet@@@bnet@@@bnet@@` -`class bnet::EmptyTerminationCB`: VTable [0x00000000033D3FE8, 0x0000000000000000 offset, 6 functions] `.?AVEmptyTerminationCB@bnet@@` -`struct bnet::ExternalAuthInfo`: VTable [0x00000000033D7998, 0x0000000000000000 offset, 2 functions] `.?AUExternalAuthInfo@bnet@@` -`struct bnet::SteamExternalAuthInfo`: VTable [0x00000000033D79B8, 0x0000000000000000 offset, 2 functions] `.?AUSteamExternalAuthInfo@bnet@@` -`class bnet::Callback`: VTable [0x00000000033D79E0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@` -`class BSPlatform::BSAsyncRequestBase`: VTable [0x00000000033D7A68, 0x0000000000000000 offset, 1 functions] `.?AVBSAsyncRequestBase@BSPlatform@@` -`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000033D7A80, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_K@Z@std@@@BSPlatform@@` -`class bnet::Callback,class bnet::AccountAuthenticationStatus>`: VTable [0x00000000033D7A98, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VAccountResult@bnet@@@bnet@@VAccountAuthenticationStatus@2@@bnet@@` -`class bnet::CallbackBind,class bnet::AccountAuthenticationStatus>,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000033D7AE0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VAccountResult@bnet@@@bnet@@VAccountAuthenticationStatus@2@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class bnet::Callback`: VTable [0x00000000033D7BE8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@_NVHttpResponseInfo@bnet@@@bnet@@` -`class bnet::CallbackBind,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000033D7C30, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@_NVHttpResponseInfo@bnet@@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033D7CA0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VAccountLinkingResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000033D7CE8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VAccountLinkingResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class bnet::CallbackBind,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000033D7D50, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000033D7E30, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@V?$FixedVector@VLegalDocument@bnet@@$04$00V?$StdAllocator@VLegalDocument@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000033D7E78, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VLegalDocument@bnet@@$04$00V?$StdAllocator@VLegalDocument@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000033D7EC0, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSLegalDocument@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` -`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000033D7F60, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@V?$FixedVector@VItem@Entitlements@bnet@@$03$00V?$StdAllocator@VItem@Entitlements@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000033D7FA8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VItem@Entitlements@bnet@@$03$00V?$StdAllocator@VItem@Entitlements@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000033D7FF0, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSEntitlement@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` -`class std::_Func_base const & __ptr64>`: VTable [0x00000000033D8028, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSEntitlement@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_base const & __ptr64>`: VTable [0x00000000033D8070, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSLegalDocument@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_base`: VTable [0x00000000033D80B8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XW4BNetResult@BSPlatform@@_KPEBDPEBD@std@@` -`class std::_Func_impl const & __ptr64,struct std::_Ph<2> const & __ptr64,enum BSPlatform::BNetResult * __ptr64>,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000033D8100, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V?$_Binder@U_Unforced@std@@P8BSBNetAccountManager@BSPlatform@@EAAXW4BNetResult@4@_KPEAW454@@ZQEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@PEAW454@@std@@V?$allocator@H@2@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64,char const * __ptr64>`: VTable [0x00000000033D8148, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_KPEBDPEBD@std@@` -`class std::_Func_impl const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray * __ptr64) __ptr64,class BSPlatform::BSBNetAccountManager * __ptr64 const,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray * __ptr64>,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000033D8190, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V?$_Binder@U_Unforced@std@@P8BSBNetAccountManager@BSPlatform@@EAAXW4BNetResult@4@_KAEBV?$BSTArray@VBSLegalDocument@BSPlatform@@VBSTArrayHeapAllocator@@@@PEAW454@PEAV6@@ZQEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@PEAV6@@std@@V?$allocator@H@2@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSLegalDocument@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray * __ptr64) __ptr64,class BSPlatform::BSBNetAccountManager * __ptr64 const,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray * __ptr64>,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000033D81D8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V?$_Binder@U_Unforced@std@@P8BSBNetAccountManager@BSPlatform@@EAAXW4BNetResult@4@_KAEBV?$BSTArray@VBSEntitlement@BSPlatform@@VBSTArrayHeapAllocator@@@@PEAW454@PEAV6@@ZQEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@PEAV6@@std@@V?$allocator@H@2@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSEntitlement@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000033DB408, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KPEBD@Z@std@@@BSPlatform@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033DB4A0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUgcCreationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000033DB4E8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcCreationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class bnet::CallbackBind,class BSPlatform::BSModsManager>`: VTable [0x00000000033DB548, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033DB5B0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUgcContent@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000033DB5F8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcContent@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000033DB640, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBVBSUserContent@2@@Z@std@@@BSPlatform@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033DB698, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUgcChunkUploadResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000033DB6E0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcChunkUploadResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033DB760, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VFileChunk@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000033DB7A8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VFileChunk@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033DB8D0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUgcPagedContentListResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000033DB918, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcPagedContentListResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000033DB960, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` -`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000033DB9E0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@V?$FixedVector@VUgcContent@bnet@@$0BJ@$00V?$StdAllocator@VUgcContent@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000033DBA28, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VUgcContent@bnet@@$0BJ@$00V?$StdAllocator@VUgcContent@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033DBAA8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUgcListCategoriesResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000033DBAF0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcListCategoriesResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest,class BSTArrayHeapAllocator> const & __ptr64)> >`: VTable [0x00000000033DBB38, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@V?$BSStringT@D$0PPPPPPPP@VDynamicMemoryManagementPol@@@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` -`class bnet::Callback >,16,1,class bnet::_impl::StdAllocator > > > const >,class bnet::HttpResponseInfo>`: VTable [0x00000000033DBB70, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@$$CBV?$FixedVector@V?$FixedString@$09$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@$0BA@$00V?$StdAllocator@V?$FixedString@$09$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@23@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind >,16,1,class bnet::_impl::StdAllocator > > > const >,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000033DBBB8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@$$CBV?$FixedVector@V?$FixedString@$09$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@$0BA@$00V?$StdAllocator@V?$FixedString@$09$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@23@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class std::_Func_base,class BSTArrayHeapAllocator> const & __ptr64>`: VTable [0x00000000033DBC28, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@V?$BSStringT@D$0PPPPPPPP@VDynamicMemoryManagementPol@@@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_base`: VTable [0x00000000033DBC70, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XW4BNetResult@BSPlatform@@_KAEBVBSUserContent@2@@std@@` -`class std::_Func_base`: VTable [0x00000000033DBCB8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XW4BNetResult@BSPlatform@@_KPEBD@std@@` -`class std::_Func_impl * __ptr64) __ptr64,class BSPlatform::BSModsManager * __ptr64 const,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSStringT * __ptr64>,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64>`: VTable [0x00000000033DBD00, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V?$_Binder@U_Unforced@std@@P8BSModsManager@BSPlatform@@EAAXW4BNetResult@4@_KPEBDPEAW454@PEAV?$BSStringT@D$0PPPPPPPP@VDynamicMemoryManagementPol@@@@@ZQEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@PEAV6@@std@@V?$allocator@H@2@XW4BNetResult@BSPlatform@@_KPEBD@std@@` -`class std::_Func_impl const & __ptr64,struct std::_Ph<2> const & __ptr64,enum BSPlatform::BNetResult * __ptr64>,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000033DBD48, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V?$_Binder@U_Unforced@std@@P8BSModsManager@BSPlatform@@EAAXW4BNetResult@4@_KPEAW454@@ZQEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@PEAW454@@std@@V?$allocator@H@2@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSPlatform::BSUserContent * __ptr64>,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSPlatform::BSUserContent const & __ptr64>`: VTable [0x00000000033DBD90, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V?$_Binder@U_Unforced@std@@P8BSModsManager@BSPlatform@@EAAXW4BNetResult@4@_KAEBVBSUserContent@4@PEAW454@PEAV64@@ZQEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@PEAV64@@std@@V?$allocator@H@2@XW4BNetResult@BSPlatform@@_KAEBVBSUserContent@5@@std@@` -`class std::_Func_impl const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64>,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64>`: VTable [0x00000000033DBDD8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V?$_Binder@U_Unforced@std@@P8BSModsManager@BSPlatform@@EAAXW4BNetResult@4@_KPEBDPEAW454@@ZQEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@@std@@V?$allocator@H@2@XW4BNetResult@BSPlatform@@_KPEBD@std@@` -`class std::_Func_impl const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray * __ptr64) __ptr64,class BSPlatform::BSModsManager * __ptr64 const,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray * __ptr64>,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000033DBE20, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V?$_Binder@U_Unforced@std@@P8BSModsManager@BSPlatform@@EAAXW4BNetResult@4@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@PEAW454@PEAV6@@ZQEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@PEAV6@@std@@V?$allocator@H@2@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl,class BSTArrayHeapAllocator> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray,class BSTArrayHeapAllocator> * __ptr64) __ptr64,class BSPlatform::BSModsManager * __ptr64 const,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray,class BSTArrayHeapAllocator> * __ptr64>,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray,class BSTArrayHeapAllocator> const & __ptr64>`: VTable [0x00000000033DBE68, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V?$_Binder@U_Unforced@std@@P8BSModsManager@BSPlatform@@EAAXW4BNetResult@4@_KAEBV?$BSTArray@V?$BSStringT@D$0PPPPPPPP@VDynamicMemoryManagementPol@@@@VBSTArrayHeapAllocator@@@@PEAW454@PEAV6@@ZQEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@PEAV6@@std@@V?$allocator@H@2@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@V?$BSStringT@D$0PPPPPPPP@VDynamicMemoryManagementPol@@@@VBSTArrayHeapAllocator@@@@@std@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000033DD680, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcContent@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000033DD6C8, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBVBSCreation@2@@Z@std@@@BSPlatform@@` -`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000033DD6E0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@V?$FixedString@$0CF@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000033DD728, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedString@$0CF@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033DD798, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VBalance@Wallet@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000033DD7E0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VBalance@Wallet@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000033DD828, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KH@Z@std@@@BSPlatform@@` -`class bnet::CallbackBind,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000033DD868, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000033DD918, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcPagedContentListResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000033DD960, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000033DD978, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VUgcContent@bnet@@$0BJ@$00V?$StdAllocator@VUgcContent@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000033DD9F0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcListCategoriesResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000033DDA68, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcCreationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class std::_Func_base`: VTable [0x00000000033DDAB0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XW4BNetResult@BSPlatform@@_KH@std@@` -`class std::_Func_base`: VTable [0x00000000033DDAF8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XW4BNetResult@BSPlatform@@_KAEBVBSCreation@2@@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSPlatform::BSCreation const & __ptr64>`: VTable [0x00000000033DDB40, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_KAEBVBSCreation@5@@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000033DDB88, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,int>`: VTable [0x00000000033DDBD0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_KH@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000033DDC18, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000033DDC60, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000033DDCA8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000033DDCF0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000033DDD38, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000033DDD80, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000033DDDC8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000033DDE10, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray,class BSTArrayHeapAllocator> const & __ptr64>`: VTable [0x00000000033DDE58, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@V?$BSStringT@D$0PPPPPPPP@VDynamicMemoryManagementPol@@@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64>`: VTable [0x00000000033DDEA0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_KPEBD@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000033DDEE8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000033DDF30, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000033DDF78, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class bnet::CustomData::Value`: VTable [0x00000000033DF3A8, 0x0000000000000000 offset, 6 functions] `.?AVValue@CustomData@bnet@@` -`class bnet::CustomData::StringValue`: VTable [0x00000000033DF3F0, 0x0000000000000000 offset, 8 functions] `.?AVStringValue@CustomData@bnet@@` -`class bnet::CustomData::FixedStringValue<128>`: VTable [0x00000000033DF448, 0x0000000000000000 offset, 8 functions] `.?AV?$FixedStringValue@$0IA@@CustomData@bnet@@` -`class bnet::CustomData::ElementalValue<3>`: VTable [0x00000000033DF4A0, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$02@CustomData@bnet@@` -`class bnet::CustomData::NumericValue<3>`: VTable [0x00000000033DF4E8, 0x0000000000000000 offset, 6 functions] `.?AV?$NumericValue@$02@CustomData@bnet@@` -`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000033DF608, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@V?$FixedVector@VMessage@CMS@bnet@@$04$00V?$StdAllocator@VMessage@CMS@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class BSPlatform::BSCoreServicesManager>`: VTable [0x00000000033DF650, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VMessage@CMS@bnet@@$04$00V?$StdAllocator@VMessage@CMS@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCoreServicesManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033DF6B8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VExtServerStatusResult@Status@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCoreServicesManager>`: VTable [0x00000000033DF700, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VExtServerStatusResult@Status@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCoreServicesManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000033DF748, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBUBSExternalServerStatusInfo@2@@Z@std@@@BSPlatform@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033DF7A0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackWrapper,class bnet::HttpResponseInfo>,class >`: VTable [0x00000000033DF840, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class bnet::HttpResponseInfo>,class >`: VTable [0x00000000033DFA18, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@V@@@bnet@@` -`class std::_Func_base`: VTable [0x00000000033DFAD8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_base@XW4BNetResult@BSPlatform@@_KAEBUBSExternalServerStatusInfo@2@@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64>`: VTable [0x00000000033DFB20, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_KPEBD@std@@` -`class std::_Func_impl,class std::allocator,void,enum BSPlatform::BNetResult,unsigned __int64,struct BSPlatform::BSExternalServerStatusInfo const & __ptr64>`: VTable [0x00000000033DFB68, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl@V@@V?$allocator@H@std@@XW4BNetResult@BSPlatform@@_KAEBUBSExternalServerStatusInfo@5@@std@@` -`class bnet::_impl::RefCount`: VTable [0x00000000033E00F0, 0x0000000000000000 offset, 1 functions] `.?AVRefCount@_impl@bnet@@` -`class bnet::_impl::SharedMutex`: VTable [0x00000000033E0108, 0x0000000000000000 offset, 1 functions] `.?AVSharedMutex@_impl@bnet@@` -`class bnet::_impl::OneToManyObservable`: VTable [0x00000000033E0120, 0x0000000000000000 offset, 1 functions] `.?AV?$OneToManyObservable@VConfigurationEntry@bnet@@@_impl@bnet@@` -`class bnet::ConfigurationEntry`: VTable [0x00000000033E0138, 0x0000000000000000 offset, 11 functions] `.?AVConfigurationEntry@bnet@@` -`class bnet::_impl::IPool`: VTable [0x00000000033E01B0, 0x0000000000000000 offset, 3 functions] `.?AVIPool@_impl@bnet@@` -`class bnet::IDynamicVariableDeleter`: VTable [0x00000000033E01D8, 0x0000000000000000 offset, 1 functions] `.?AVIDynamicVariableDeleter@bnet@@` -`class bnet::ConfigurationEntryBoolean`: VTable [0x00000000033E01F0, 0x0000000000000000 offset, 11 functions] `.?AVConfigurationEntryBoolean@bnet@@` -`class bnet::ConfigurationEntryInteger`: VTable [0x00000000033E0268, 0x0000000000000000 offset, 11 functions] `.?AVConfigurationEntryInteger@bnet@@` -`class bnet::ConfigurationEntryFloat`: VTable [0x00000000033E02E0, 0x0000000000000000 offset, 11 functions] `.?AVConfigurationEntryFloat@bnet@@` -`class bnet::ConfigurationEntryLong`: VTable [0x00000000033E0358, 0x0000000000000000 offset, 11 functions] `.?AVConfigurationEntryLong@bnet@@` -`class bnet::ConfigurationEntryString`: VTable [0x00000000033E03D0, 0x0000000000000000 offset, 11 functions] `.?AVConfigurationEntryString@bnet@@` -`class bnet::_impl::FixedPool<152,50>`: VTable [0x00000000033E0448, 0x0000000000000000 offset, 3 functions] `.?AV?$FixedPool@$0JI@$0DC@@_impl@bnet@@` -`class bnet::ConfigurationEntryPool`: VTable [0x00000000033E0470, 0x0000000000000000 offset, 1 functions] `.?AV?$ConfigurationEntryPool@VConfigurationEntryInteger@bnet@@H@bnet@@` -`class bnet::ConfigurationEntryPool`: VTable [0x00000000033E0488, 0x0000000000000000 offset, 1 functions] `.?AV?$ConfigurationEntryPool@VConfigurationEntryLong@bnet@@_J@bnet@@` -`class bnet::ConfigurationEntryPool`: VTable [0x00000000033E04A0, 0x0000000000000000 offset, 1 functions] `.?AV?$ConfigurationEntryPool@VConfigurationEntryFloat@bnet@@M@bnet@@` -`class bnet::ConfigurationEntryPool`: VTable [0x00000000033E04B8, 0x0000000000000000 offset, 1 functions] `.?AV?$ConfigurationEntryPool@VConfigurationEntryBoolean@bnet@@_N@bnet@@` -`class bnet::_impl::FixedPool<432,50>`: VTable [0x00000000033E04D0, 0x0000000000000000 offset, 3 functions] `.?AV?$FixedPool@$0BLA@$0DC@@_impl@bnet@@` -`class bnet::ConfigurationEntryPool`: VTable [0x00000000033E04F8, 0x0000000000000000 offset, 1 functions] `.?AV?$ConfigurationEntryPool@VConfigurationEntryString@bnet@@PEBD@bnet@@` -`class bnet::IJobCollection`: VTable [0x00000000033E0A28, 0x0000000000000000 offset, 1 functions] `.?AVIJobCollection@bnet@@` -`class bnet::_detail::Composite`: VTable [0x00000000033E0A40, 0x0000000000000000 offset, 9 functions] `.?AVComposite@_detail@bnet@@` -`class bnet::_detail::Composite`: VTable [0x00000000033E0AA0, 0x0000000000000010 offset, 1 functions] `.?AVComposite@_detail@bnet@@` -`class std::bad_weak_ptr`: VTable [0x00000000033E1858, 0x0000000000000000 offset, 2 functions] `.?AVbad_weak_ptr@std@@` -`class std::_Ref_count_base`: VTable [0x00000000033E1888, 0x0000000000000000 offset, 4 functions] `.?AV_Ref_count_base@std@@` -`class bnet::_impl::OneToManyObserver`: VTable [0x00000000033E18B8, 0x0000000000000000 offset, 2 functions] `.?AV?$OneToManyObserver@VConfigurationEntry@bnet@@@_impl@bnet@@` -`class bnet::IHeap`: VTable [0x00000000033E18D8, 0x0000000000000000 offset, 2 functions] `.?AVIHeap@bnet@@` -`class bnet::IHttpConnectionProvider`: VTable [0x00000000033E18F8, 0x0000000000000000 offset, 5 functions] `.?AVIHttpConnectionProvider@bnet@@` -`class bnet::IProducerConsumerQueue >`: VTable [0x00000000033E1938, 0x0000000000000000 offset, 6 functions] `.?AV?$IProducerConsumerQueue@V?$UniquePtr@VBaseCallback@bnet@@@bnet@@@bnet@@` -`class bnet::ProducerConsumerQueue,struct bnet::ta::ThreadSafe>`: VTable [0x00000000033E1980, 0x0000000000000000 offset, 6 functions] `.?AV?$ProducerConsumerQueue@V?$UniquePtr@VBaseCallback@bnet@@@bnet@@UThreadSafe@ta@2@@bnet@@` -`class bnet::ProducerConsumerQueue,struct bnet::ta::ThreadSafe>`: VTable [0x00000000033E19C8, 0x0000000000000000 offset, 6 functions] `.?AV?$ProducerConsumerQueue@V?$UniquePtr@VJob@bnet@@@bnet@@UThreadSafe@ta@2@@bnet@@` -`class bnet::IDispenser`: VTable [0x00000000033E1A10, 0x0000000000000000 offset, 1 functions] `.?AV?$IDispenser@VJob@bnet@@@bnet@@` -`class bnet::ConfigurationVariable`: VTable [0x00000000033E1A28, 0x0000000000000000 offset, 2 functions] `.?AV?$ConfigurationVariable@H@bnet@@` -`class bnet::Network`: VTable [0x00000000033E1A48, 0x0000000000000000 offset, 1 functions] `.?AVNetwork@bnet@@` -`class bnet::Network`: VTable [0x00000000033E1A60, 0x0000000000000008 offset, 5 functions] `.?AVNetwork@bnet@@` -`class bnet::Network`: VTable [0x00000000033E1AA0, 0x0000000000000010 offset, 1 functions] `.?AVNetwork@bnet@@` -`class bnet::Caller`: VTable [0x00000000033E1D20, 0x0000000000000000 offset, 4 functions] `.?AV?$Caller@P6AXPEAVNetworkLoop@bnet@@@ZPEAV12@@bnet@@` -`class std::_Ref_count_del_alloc >`: VTable [0x00000000033E1D50, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_del_alloc@PEAUHINSTANCE__@@UModuleDeleter@?A0x62b1c16c@bnet@@V?$StdAllocator@X@_impl@4@@std@@` -`class std::_Ref_count_del_alloc,class bnet::_impl::StdAllocator >`: VTable [0x00000000033E1D80, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_del_alloc@PEAUHINSTANCE__@@U?$MemoryDeleter@PEAUHINSTANCE__@@@_impl@bnet@@V?$StdAllocator@X@34@@std@@` -`class std::_Ref_count_del_alloc,class bnet::_impl::StdAllocator >`: VTable [0x00000000033E1DB0, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_del_alloc@$$CBU_SECURITY_FUNCTION_TABLE_A@@U?$MemoryDeleter@$$CBU_SECURITY_FUNCTION_TABLE_A@@@_impl@bnet@@V?$StdAllocator@X@34@@std@@` -`class bnet::_detail::implComposite`: VTable [0x00000000033E2260, 0x0000000000000000 offset, 9 functions] `.?AV?$implComposite@UThreadSafe@ta@bnet@@@_detail@bnet@@` -`class bnet::_detail::implComposite`: VTable [0x00000000033E22C0, 0x0000000000000010 offset, 1 functions] `.?AV?$implComposite@UThreadSafe@ta@bnet@@@_detail@bnet@@` -`class bnet::Composite`: VTable [0x00000000033E22D8, 0x0000000000000000 offset, 9 functions] `.?AV?$Composite@UThreadSafe@ta@bnet@@@bnet@@` -`class bnet::Composite`: VTable [0x00000000033E2338, 0x0000000000000010 offset, 1 functions] `.?AV?$Composite@UThreadSafe@ta@bnet@@@bnet@@` -`class bnet::Parallel`: VTable [0x00000000033E2350, 0x0000000000000000 offset, 9 functions] `.?AV?$Parallel@UThreadSafe@ta@bnet@@UNoErrorPropagation@23@@bnet@@` -`class bnet::Parallel`: VTable [0x00000000033E23B0, 0x0000000000000010 offset, 1 functions] `.?AV?$Parallel@UThreadSafe@ta@bnet@@UNoErrorPropagation@23@@bnet@@` -`class bnet::UserProcessor`: VTable [0x00000000033E23C8, 0x0000000000000000 offset, 9 functions] `.?AVUserProcessor@bnet@@` -`class bnet::UserProcessor`: VTable [0x00000000033E2428, 0x0000000000000010 offset, 1 functions] `.?AVUserProcessor@bnet@@` -`class bnet::UserProcessorCollection`: VTable [0x00000000033E2440, 0x0000000000000000 offset, 9 functions] `.?AVUserProcessorCollection@bnet@@` -`class bnet::UserProcessorCollection`: VTable [0x00000000033E24A0, 0x0000000000000010 offset, 1 functions] `.?AVUserProcessorCollection@bnet@@` -`class bnet::Caller`: VTable [0x00000000033E24B8, 0x0000000000000000 offset, 4 functions] `.?AV?$Caller@P6AXPEAVInternalBNet@bnet@@@ZPEAV12@@bnet@@` -`class bnet::BaseHttpRequest`: VTable [0x00000000033E3840, 0x0000000000000000 offset, 11 functions] `.?AVBaseHttpRequest@bnet@@` -`class bnet::HttpRequest >`: VTable [0x00000000033E38C0, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@bnet@@` -`class bnet::EventLog::`anonymous namespace'::CollectErrorRequest`: VTable [0x00000000033E3940, 0x0000000000000000 offset, 12 functions] `.?AVCollectErrorRequest@?A0xaff07c20@EventLog@bnet@@` -`class bnet::EventLog::`anonymous namespace'::CollectLogRequest`: VTable [0x00000000033E3A20, 0x0000000000000000 offset, 12 functions] `.?AVCollectLogRequest@?A0xaff07c20@EventLog@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000033E3AF0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000033E3B38, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class BSPlatform::BSUploadRequest`: VTable [0x00000000033E4B10, 0x0000000000000000 offset, 1 functions] `.?AVBSUploadRequest@BSPlatform@@` -`class BSPlatform::BSDownloadRequest`: VTable [0x00000000033E4B28, 0x0000000000000000 offset, 1 functions] `.?AVBSDownloadRequest@BSPlatform@@` -`class bnet::CustomData::BinaryValue`: VTable [0x00000000033E5278, 0x0000000000000000 offset, 6 functions] `.?AVBinaryValue@CustomData@bnet@@` -`class bnet::CustomData::ObjectValue`: VTable [0x00000000033E52C0, 0x0000000000000000 offset, 6 functions] `.?AVObjectValue@CustomData@bnet@@` -`class bnet::Job`: VTable [0x00000000033E59E8, 0x0000000000000000 offset, 6 functions] `.?AVJob@bnet@@` -`class bnet::FreeLessHeap`: VTable [0x00000000033E5AC0, 0x0000000000000000 offset, 2 functions] `.?AVFreeLessHeap@bnet@@` -`class bnet::AcquirableFreeLessHeap`: VTable [0x00000000033E5AE0, 0x0000000000000000 offset, 2 functions] `.?AVAcquirableFreeLessHeap@bnet@@` -`class bnet::Sequence`: VTable [0x00000000033E60E0, 0x0000000000000000 offset, 9 functions] `.?AV?$Sequence@UThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@` -`class bnet::Sequence`: VTable [0x00000000033E6140, 0x0000000000000010 offset, 1 functions] `.?AV?$Sequence@UThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@` -`class bnet::NetworkLoop`: VTable [0x00000000033E6158, 0x0000000000000000 offset, 9 functions] `.?AVNetworkLoop@bnet@@` -`class bnet::NetworkLoop`: VTable [0x00000000033E61B8, 0x0000000000000010 offset, 1 functions] `.?AVNetworkLoop@bnet@@` -`class bnet::NetworkLoop`: VTable [0x00000000033E61D0, 0x0000000000000170 offset, 5 functions] `.?AVNetworkLoop@bnet@@` -`class bnet::Callback`: VTable [0x00000000033E7398, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000033E7408, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000033E7450, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::Callback`: VTable [0x00000000033E7530, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@VSessionToken@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000033E7578, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@VSessionToken@bnet@@VHttpResponseInfo@2@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000033E75C0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000033E7648, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::HttpRequest >`: VTable [0x00000000033E7C68, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@_NVHttpResponseInfo@bnet@@@bnet@@@bnet@@` -`class bnet::AcceptLegalDocumentsRequest`: VTable [0x00000000033E7CE8, 0x0000000000000000 offset, 12 functions] `.?AVAcceptLegalDocumentsRequest@bnet@@` -`class bnet::_impl::AsyncOperation`: VTable [0x00000000033E8500, 0x0000000000000000 offset, 2 functions] `.?AVAsyncOperation@_impl@bnet@@` -`class bnet::_impl::Observable`: VTable [0x00000000033E8520, 0x0000000000000000 offset, 2 functions] `.?AV?$Observable@VAsyncOperation@_impl@bnet@@W4BNetError@3@@_impl@bnet@@` -`class bnet::_detail::implComposite`: VTable [0x00000000033E8540, 0x0000000000000000 offset, 9 functions] `.?AV?$implComposite@UNonThreadSafe@ta@bnet@@@_detail@bnet@@` -`class bnet::_detail::implComposite`: VTable [0x00000000033E85A0, 0x0000000000000010 offset, 1 functions] `.?AV?$implComposite@UNonThreadSafe@ta@bnet@@@_detail@bnet@@` -`class bnet::ProducerConsumerQueue,struct bnet::ta::NonThreadSafe>`: VTable [0x00000000033E85B8, 0x0000000000000000 offset, 6 functions] `.?AV?$ProducerConsumerQueue@V?$UniquePtr@VJob@bnet@@@bnet@@UNonThreadSafe@ta@2@@bnet@@` -`class bnet::Composite`: VTable [0x00000000033E8600, 0x0000000000000000 offset, 9 functions] `.?AV?$Composite@UNonThreadSafe@ta@bnet@@@bnet@@` -`class bnet::Composite`: VTable [0x00000000033E8660, 0x0000000000000010 offset, 1 functions] `.?AV?$Composite@UNonThreadSafe@ta@bnet@@@bnet@@` -`class bnet::Sequence`: VTable [0x00000000033E8678, 0x0000000000000000 offset, 9 functions] `.?AV?$Sequence@UNonThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@` -`class bnet::Sequence`: VTable [0x00000000033E86D8, 0x0000000000000010 offset, 1 functions] `.?AV?$Sequence@UNonThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@` -`class bnet::ListLegalDocumentsFlow`: VTable [0x00000000033E86F0, 0x0000000000000000 offset, 9 functions] `.?AVListLegalDocumentsFlow@bnet@@` -`class bnet::ListLegalDocumentsFlow`: VTable [0x00000000033E8750, 0x0000000000000010 offset, 1 functions] `.?AVListLegalDocumentsFlow@bnet@@` -`class bnet::ListLegalDocumentsFlow`: VTable [0x00000000033E8768, 0x0000000000000118 offset, 2 functions] `.?AVListLegalDocumentsFlow@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class bnet::ListLegalDocumentsFlow>`: VTable [0x00000000033E8788, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VLegalDocument@bnet@@$04$00V?$StdAllocator@VLegalDocument@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VListLegalDocumentsFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::ListLegalDocumentsFlow>`: VTable [0x00000000033E87D0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VListLegalDocumentsFlow@2@@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000033E8B38, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VAccountLinkingResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::AccountLinkingRequest`: VTable [0x00000000033E8BB8, 0x0000000000000000 offset, 12 functions] `.?AVAccountLinkingRequest@bnet@@` -`class bnet::AccountQuickCreateFlow`: VTable [0x00000000033E9308, 0x0000000000000000 offset, 9 functions] `.?AVAccountQuickCreateFlow@bnet@@` -`class bnet::AccountQuickCreateFlow`: VTable [0x00000000033E9368, 0x0000000000000010 offset, 1 functions] `.?AVAccountQuickCreateFlow@bnet@@` -`class bnet::AccountQuickCreateFlow`: VTable [0x00000000033E9380, 0x0000000000000118 offset, 2 functions] `.?AVAccountQuickCreateFlow@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033E93A0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUser@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::AccountQuickCreateFlow>`: VTable [0x00000000033E93E8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUser@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VAccountQuickCreateFlow@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class bnet::AccountQuickCreateFlow>`: VTable [0x00000000033E9430, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VLegalDocument@bnet@@$04$00V?$StdAllocator@VLegalDocument@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VAccountQuickCreateFlow@2@@bnet@@` -`class bnet::AccountDeletionRequest`: VTable [0x00000000033E94F8, 0x0000000000000000 offset, 12 functions] `.?AVAccountDeletionRequest@bnet@@` -`class bnet::AddFingerprintRequest`: VTable [0x00000000033E9740, 0x0000000000000000 offset, 12 functions] `.?AVAddFingerprintRequest@bnet@@` -`class bnet::IsAccountLinkableRequest`: VTable [0x00000000033E9A00, 0x0000000000000000 offset, 12 functions] `.?AVIsAccountLinkableRequest@bnet@@` -`class bnet::UserCredentialsAuthenticationFlow`: VTable [0x00000000033E9DE8, 0x0000000000000000 offset, 9 functions] `.?AVUserCredentialsAuthenticationFlow@bnet@@` -`class bnet::UserCredentialsAuthenticationFlow`: VTable [0x00000000033E9E48, 0x0000000000000010 offset, 1 functions] `.?AVUserCredentialsAuthenticationFlow@bnet@@` -`class bnet::UserCredentialsAuthenticationFlow`: VTable [0x00000000033E9E60, 0x0000000000000118 offset, 2 functions] `.?AVUserCredentialsAuthenticationFlow@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033E9E80, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VAccountResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::UserCredentialsAuthenticationFlow>`: VTable [0x00000000033E9EC8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VAccountResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VUserCredentialsAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::UserCredentialsAuthenticationFlow>`: VTable [0x00000000033E9F10, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionToken@bnet@@VHttpResponseInfo@2@@bnet@@VUserCredentialsAuthenticationFlow@2@@bnet@@` -`class bnet::ExternalAuthenticationFlow`: VTable [0x00000000033EA348, 0x0000000000000000 offset, 9 functions] `.?AVExternalAuthenticationFlow@bnet@@` -`class bnet::ExternalAuthenticationFlow`: VTable [0x00000000033EA3A8, 0x0000000000000010 offset, 1 functions] `.?AVExternalAuthenticationFlow@bnet@@` -`class bnet::ExternalAuthenticationFlow`: VTable [0x00000000033EA3C0, 0x0000000000000118 offset, 2 functions] `.?AVExternalAuthenticationFlow@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::ExternalAuthenticationFlow>`: VTable [0x00000000033EA3E0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VAccountResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VExternalAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::ExternalAuthenticationFlow>`: VTable [0x00000000033EA428, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionToken@bnet@@VHttpResponseInfo@2@@bnet@@VExternalAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::ExternalAuthenticationFlow>`: VTable [0x00000000033EA470, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VExternalAuthenticationFlow@2@@bnet@@` -`class bnet::UnlinkAccountFlow`: VTable [0x00000000033EA8A8, 0x0000000000000000 offset, 9 functions] `.?AVUnlinkAccountFlow@bnet@@` -`class bnet::UnlinkAccountFlow`: VTable [0x00000000033EA908, 0x0000000000000010 offset, 1 functions] `.?AVUnlinkAccountFlow@bnet@@` -`class bnet::UnlinkAccountFlow`: VTable [0x00000000033EA920, 0x0000000000000118 offset, 2 functions] `.?AVUnlinkAccountFlow@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033EA940, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUpgradeTokenResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::UnlinkAccountFlow>`: VTable [0x00000000033EA988, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUpgradeTokenResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VUnlinkAccountFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::UnlinkAccountFlow>`: VTable [0x00000000033EA9D0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VUnlinkAccountFlow@2@@bnet@@` -`class bnet::UsernameValidationRequest`: VTable [0x00000000033EAAC8, 0x0000000000000000 offset, 12 functions] `.?AVUsernameValidationRequest@bnet@@` -`class bnet::VerifyFingerprintRequest`: VTable [0x00000000033EAC80, 0x0000000000000000 offset, 12 functions] `.?AVVerifyFingerprintRequest@bnet@@` -`class bnet::VerifyLinkRequest`: VTable [0x00000000033EADF0, 0x0000000000000000 offset, 12 functions] `.?AVVerifyLinkRequest@bnet@@` -`class bnet::CheckEmailRequest`: VTable [0x00000000033EAF90, 0x0000000000000000 offset, 12 functions] `.?AVCheckEmailRequest@bnet@@` -`class bnet::RecoverPasswordRequest`: VTable [0x00000000033EB168, 0x0000000000000000 offset, 12 functions] `.?AVRecoverPasswordRequest@bnet@@` -`class bnet::RecoverUsernameRequest`: VTable [0x00000000033EB1E8, 0x0000000000000000 offset, 12 functions] `.?AVRecoverUsernameRequest@bnet@@` -`class bnet::ResendVerificationRequest`: VTable [0x00000000033EB350, 0x0000000000000000 offset, 12 functions] `.?AVResendVerificationRequest@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033EB758, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::BaseCallbackJob,class bnet::Callback,class bnet::HttpResponseInfo>,struct bnet::ta::ThreadSafe>`: VTable [0x00000000033EB7A0, 0x0000000000000000 offset, 10 functions] `.?AV?$BaseCallbackJob@V?$Sequence@UThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@V?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@2@UThreadSafe@ta@2@@bnet@@` -`class bnet::BaseCallbackJob,class bnet::Callback,class bnet::HttpResponseInfo>,struct bnet::ta::ThreadSafe>`: VTable [0x00000000033EB810, 0x0000000000000010 offset, 1 functions] `.?AV?$BaseCallbackJob@V?$Sequence@UThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@V?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@2@UThreadSafe@ta@2@@bnet@@` -`class bnet::CallbackSequence,class bnet::HttpResponseInfo>,struct bnet::ta::ThreadSafe,struct bnet::ta::ErrorPropagation>`: VTable [0x00000000033EB828, 0x0000000000000000 offset, 10 functions] `.?AV?$CallbackSequence@V?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@UThreadSafe@ta@2@UErrorPropagation@42@@bnet@@` -`class bnet::CallbackSequence,class bnet::HttpResponseInfo>,struct bnet::ta::ThreadSafe,struct bnet::ta::ErrorPropagation>`: VTable [0x00000000033EB898, 0x0000000000000010 offset, 1 functions] `.?AV?$CallbackSequence@V?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@UThreadSafe@ta@2@UErrorPropagation@42@@bnet@@` -`class bnet::RetrieveExternalAccountJob`: VTable [0x00000000033EB8B0, 0x0000000000000000 offset, 10 functions] `.?AVRetrieveExternalAccountJob@bnet@@` -`class bnet::RetrieveExternalAccountJob`: VTable [0x00000000033EB920, 0x0000000000000010 offset, 1 functions] `.?AVRetrieveExternalAccountJob@bnet@@` -`class bnet::RetrieveExternalAccountJob`: VTable [0x00000000033EB938, 0x0000000000000190 offset, 2 functions] `.?AVRetrieveExternalAccountJob@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::RetrieveExternalAccountJob>`: VTable [0x00000000033EB958, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VRetrieveExternalAccountJob@2@@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033EBD00, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VItem@Entitlements@bnet@@$03$00V?$StdAllocator@VItem@Entitlements@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Entitlements::ListRequest`: VTable [0x00000000033EBD80, 0x0000000000000000 offset, 12 functions] `.?AVListRequest@Entitlements@bnet@@` -`class bnet::HttpRequest >`: VTable [0x00000000033EC100, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@VConsumeResponse@Entitlements@bnet@@VHttpResponseInfo@3@@bnet@@@bnet@@` -`class bnet::Entitlements::ConsumeRequest`: VTable [0x00000000033EC180, 0x0000000000000000 offset, 12 functions] `.?AVConsumeRequest@Entitlements@bnet@@` -`class bnet::IUgcUploader`: VTable [0x00000000033F23B0, 0x0000000000000000 offset, 2 functions] `.?AVIUgcUploader@bnet@@` -`class bnet::ChunkedUploadFlow`: VTable [0x00000000033F23D0, 0x0000000000000000 offset, 9 functions] `.?AVChunkedUploadFlow@bnet@@` -`class bnet::ChunkedUploadFlow`: VTable [0x00000000033F2430, 0x0000000000000010 offset, 1 functions] `.?AVChunkedUploadFlow@bnet@@` -`class bnet::ChunkedUploadFlow`: VTable [0x00000000033F2448, 0x0000000000000170 offset, 2 functions] `.?AVChunkedUploadFlow@bnet@@` -`class bnet::ChunkedUploadFlow`: VTable [0x00000000033F2468, 0x0000000000000198 offset, 2 functions] `.?AVChunkedUploadFlow@bnet@@` -`class bnet::Callback`: VTable [0x00000000033F2488, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@_KVHttpResponseInfo@bnet@@@bnet@@` -`class bnet::CallbackBind,class bnet::ChunkedUploadFlow>`: VTable [0x00000000033F24D0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@_KVHttpResponseInfo@bnet@@@bnet@@VChunkedUploadFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::ChunkedUploadFlow>`: VTable [0x00000000033F2518, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VChunkedUploadFlow@2@@bnet@@` -`class bnet::IDownloader`: VTable [0x00000000033F2EE8, 0x0000000000000000 offset, 2 functions] `.?AVIDownloader@bnet@@` -`class bnet::DownloadFlow`: VTable [0x00000000033F2F08, 0x0000000000000000 offset, 9 functions] `.?AVDownloadFlow@bnet@@` -`class bnet::DownloadFlow`: VTable [0x00000000033F2F68, 0x0000000000000010 offset, 1 functions] `.?AVDownloadFlow@bnet@@` -`class bnet::DownloadFlow`: VTable [0x00000000033F2F80, 0x0000000000000170 offset, 2 functions] `.?AVDownloadFlow@bnet@@` -`class bnet::DownloadFlow`: VTable [0x00000000033F2FA0, 0x0000000000000198 offset, 2 functions] `.?AVDownloadFlow@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033F2FC0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VCdpFileInfoResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::DownloadFlow>`: VTable [0x00000000033F3008, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VCdpFileInfoResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VDownloadFlow@2@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033F3050, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VCdpKeyResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::DownloadFlow>`: VTable [0x00000000033F3098, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VCdpKeyResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VDownloadFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::DownloadFlow>`: VTable [0x00000000033F30E0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VFileChunk@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VDownloadFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::DownloadFlow>`: VTable [0x00000000033F3128, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VDownloadFlow@2@@bnet@@` -`class bnet::FileDownloader`: VTable [0x00000000033F3378, 0x0000000000000000 offset, 11 functions] `.?AVFileDownloader@bnet@@` -`class bnet::FileDownloader`: VTable [0x00000000033F33F0, 0x0000000000000010 offset, 1 functions] `.?AVFileDownloader@bnet@@` -`class bnet::FileDownloader`: VTable [0x00000000033F3408, 0x0000000000000118 offset, 2 functions] `.?AVFileDownloader@bnet@@` -`class bnet::FileDownloader`: VTable [0x00000000033F3428, 0x0000000000000140 offset, 2 functions] `.?AVFileDownloader@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F3968, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUgcPagedContentListResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcBrowseRequest`: VTable [0x00000000033F39E8, 0x0000000000000000 offset, 12 functions] `.?AVUgcBrowseRequest@bnet@@` -`class bnet::UgcArgLessRequest`: VTable [0x00000000033F3BA8, 0x0000000000000000 offset, 12 functions] `.?AVUgcArgLessRequest@bnet@@` -`class bnet::HttpRequest > >,40,1,class bnet::_impl::StdAllocator > > > > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F4080, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@V?$Count@V?$FixedString@$0EA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@bnet@@$0CI@$00V?$StdAllocator@V?$Count@V?$FixedString@$0EA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcCategoryCountRequest`: VTable [0x00000000033F4100, 0x0000000000000000 offset, 12 functions] `.?AVUgcCategoryCountRequest@bnet@@` -`class bnet::HttpRequest >`: VTable [0x00000000033F4438, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@W4UploadStatus@UgcType@bnet@@VHttpResponseInfo@3@@bnet@@@bnet@@` -`class bnet::UgcUploadRequest >`: VTable [0x00000000033F44B8, 0x0000000000000000 offset, 12 functions] `.?AV?$UgcUploadRequest@V?$Callback@W4UploadStatus@UgcType@bnet@@VHttpResponseInfo@3@@bnet@@@bnet@@` -`class bnet::UgcContentUploadRequest`: VTable [0x00000000033F4538, 0x0000000000000000 offset, 12 functions] `.?AVUgcContentUploadRequest@bnet@@` -`class bnet::UgcImageUploadRequest`: VTable [0x00000000033F46B8, 0x0000000000000000 offset, 12 functions] `.?AVUgcImageUploadRequest@bnet@@` -`class bnet::UgcAddVideoRequest`: VTable [0x00000000033F47C8, 0x0000000000000000 offset, 12 functions] `.?AVUgcAddVideoRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F4AF0, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUgcContent@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcContentRequest`: VTable [0x00000000033F4B70, 0x0000000000000000 offset, 12 functions] `.?AVUgcContentRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F4EA0, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUgcUploadDetails@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcContentUploadDetailsRequest`: VTable [0x00000000033F4F20, 0x0000000000000000 offset, 12 functions] `.?AVUgcContentUploadDetailsRequest@bnet@@` -`class bnet::UgcCommentCreationRequest`: VTable [0x00000000033F5030, 0x0000000000000000 offset, 12 functions] `.?AVUgcCommentCreationRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F5378, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUgcCreationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcCreationRequest`: VTable [0x00000000033F53F8, 0x0000000000000000 offset, 12 functions] `.?AVUgcCreationRequest@bnet@@` -`class bnet::UgcEditRequest`: VTable [0x00000000033F5608, 0x0000000000000000 offset, 12 functions] `.?AVUgcEditRequest@bnet@@` -`class bnet::UgcFlagRequest`: VTable [0x00000000033F57D0, 0x0000000000000000 offset, 12 functions] `.?AVUgcFlagRequest@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F5B18, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VUgcComment@bnet@@$0BE@$00V?$StdAllocator@VUgcComment@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListCommentRequest`: VTable [0x00000000033F5B98, 0x0000000000000000 offset, 12 functions] `.?AVUgcListCommentRequest@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F5DB8, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VUgcContent@bnet@@$0BJ@$00V?$StdAllocator@VUgcContent@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListContentRequest`: VTable [0x00000000033F5E38, 0x0000000000000000 offset, 12 functions] `.?AVUgcListContentRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F6240, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUgcListCategoriesResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListCategoriesRequest`: VTable [0x00000000033F62C0, 0x0000000000000000 offset, 12 functions] `.?AVUgcListCategoriesRequest@bnet@@` -`class bnet::HttpRequest >,16,1,class bnet::_impl::StdAllocator > > > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F6740, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@V?$FixedString@$0CA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@$0BA@$00V?$StdAllocator@V?$FixedString@$0CA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@23@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListDlcRequest`: VTable [0x00000000033F67C0, 0x0000000000000000 offset, 12 functions] `.?AVUgcListDlcRequest@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F6BD8, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@W4Platform@bnet@@$09$00V?$StdAllocator@W4Platform@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Ugc::ListPlatformsRequest`: VTable [0x00000000033F6C58, 0x0000000000000000 offset, 12 functions] `.?AVListPlatformsRequest@Ugc@bnet@@` -`class bnet::HttpRequest >,8,1,class bnet::_impl::StdAllocator > > > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F7150, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@V?$FixedString@$0IA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@$07$00V?$StdAllocator@V?$FixedString@$0IA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@23@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Ugc::ListProductsRequest`: VTable [0x00000000033F71D0, 0x0000000000000000 offset, 12 functions] `.?AVListProductsRequest@Ugc@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F7530, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VUgcAuthor@bnet@@$0BE@$00V?$StdAllocator@VUgcAuthor@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListFollowedAuthorRequest`: VTable [0x00000000033F75B0, 0x0000000000000000 offset, 12 functions] `.?AVUgcListFollowedAuthorRequest@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F78C8, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VUgcNotification@bnet@@$0BE@$00V?$StdAllocator@VUgcNotification@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListNotificationRequest`: VTable [0x00000000033F7948, 0x0000000000000000 offset, 12 functions] `.?AVUgcListNotificationRequest@bnet@@` -`class bnet::HttpRequest >,16,1,class bnet::_impl::StdAllocator > > > const >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F7E08, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@$$CBV?$FixedVector@V?$FixedString@$09$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@$0BA@$00V?$StdAllocator@V?$FixedString@$09$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@23@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListBlacklistedRequest`: VTable [0x00000000033F7E88, 0x0000000000000000 offset, 12 functions] `.?AVUgcListBlacklistedRequest@bnet@@` -`class bnet::UgcListFeaturedContentRequest`: VTable [0x00000000033F80E0, 0x0000000000000000 offset, 12 functions] `.?AVUgcListFeaturedContentRequest@bnet@@` -`class bnet::UgcNotificationAcknowledgeRequest`: VTable [0x00000000033F8208, 0x0000000000000000 offset, 12 functions] `.?AVUgcNotificationAcknowledgeRequest@bnet@@` -`class bnet::UgcPreviewUploadRequest`: VTable [0x00000000033F8288, 0x0000000000000000 offset, 12 functions] `.?AVUgcPreviewUploadRequest@bnet@@` -`class bnet::UgcQueryRequest`: VTable [0x00000000033F8390, 0x0000000000000000 offset, 12 functions] `.?AVUgcQueryRequest@bnet@@` -`class bnet::UgcRateRequest`: VTable [0x00000000033F8488, 0x0000000000000000 offset, 12 functions] `.?AVUgcRateRequest@bnet@@` -`class bnet::UgcLikeCommentRequest`: VTable [0x00000000033F8588, 0x0000000000000000 offset, 12 functions] `.?AVUgcLikeCommentRequest@bnet@@` -`class bnet::HttpRequest >`: VTable [0x00000000033F87E0, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@VUgcReleaseNote@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcAddReleaseNoteRequest`: VTable [0x00000000033F8860, 0x0000000000000000 offset, 12 functions] `.?AVUgcAddReleaseNoteRequest@bnet@@` -`class bnet::UgcUpdateReleaseNoteRequest`: VTable [0x00000000033F89A8, 0x0000000000000000 offset, 12 functions] `.?AVUgcUpdateReleaseNoteRequest@bnet@@` -`class bnet::UgcRemoveReleaseNoteRequest`: VTable [0x00000000033F8AD0, 0x0000000000000000 offset, 12 functions] `.?AVUgcRemoveReleaseNoteRequest@bnet@@` -`class bnet::Ugc::RefreshEntitlementRequest`: VTable [0x00000000033F8BD8, 0x0000000000000000 offset, 12 functions] `.?AVRefreshEntitlementRequest@Ugc@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F8EB0, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VBalance@Wallet@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::VCCS::Wallet::BalanceRequest`: VTable [0x00000000033F8F30, 0x0000000000000000 offset, 12 functions] `.?AVBalanceRequest@Wallet@VCCS@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F9208, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedString@$0CF@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::VCCS::Wallet::PurchaseRequest`: VTable [0x00000000033F9288, 0x0000000000000000 offset, 12 functions] `.?AVPurchaseRequest@Wallet@VCCS@bnet@@` -`class bnet::VCCS::Fulfillment::UpdateFirstPartyEntitlementRequest`: VTable [0x00000000033F9470, 0x0000000000000000 offset, 12 functions] `.?AVUpdateFirstPartyEntitlementRequest@Fulfillment@VCCS@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F9EE8, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::NetworkHelper::detail::BaseCustomHttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F9F68, 0x0000000000000000 offset, 12 functions] `.?AV?$BaseCustomHttpRequest@V?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@detail@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::detail::JsonBody,class bnet::HttpResponseInfo> >`: VTable [0x00000000033F9FE8, 0x0000000000000000 offset, 12 functions] `.?AV?$JsonBody@V?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@detail@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::JsonResponseRequest`: VTable [0x00000000033FA068, 0x0000000000000000 offset, 12 functions] `.?AVJsonResponseRequest@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::detail::BaseCustomHttpRequest >`: VTable [0x00000000033FA0E8, 0x0000000000000000 offset, 12 functions] `.?AV?$BaseCustomHttpRequest@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@detail@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::detail::JsonBody >`: VTable [0x00000000033FA168, 0x0000000000000000 offset, 12 functions] `.?AV?$JsonBody@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@detail@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::EmptyResponseRequest`: VTable [0x00000000033FA1E8, 0x0000000000000000 offset, 12 functions] `.?AVEmptyResponseRequest@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::detail::RawHttpRequest >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033FA268, 0x0000000000000000 offset, 12 functions] `.?AV?$RawHttpRequest@V?$Callback@V?$vector@EV?$StdAllocator@E@_impl@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@detail@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::RawToRawHttpRequest`: VTable [0x00000000033FA2E8, 0x0000000000000000 offset, 12 functions] `.?AVRawToRawHttpRequest@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::detail::RawHttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000033FA368, 0x0000000000000000 offset, 12 functions] `.?AV?$RawHttpRequest@V?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@detail@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::RawToJsonHttpRequest`: VTable [0x00000000033FA3E8, 0x0000000000000000 offset, 12 functions] `.?AVRawToJsonHttpRequest@NetworkHelper@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033FA748, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VMessage@CMS@bnet@@$04$00V?$StdAllocator@VMessage@CMS@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::CMS::ListMessagesRequest`: VTable [0x00000000033FA7C8, 0x0000000000000000 offset, 12 functions] `.?AVListMessagesRequest@CMS@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000033FACF0, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VExtServerStatusResult@Status@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Status::GetExtServerStatusRequest`: VTable [0x00000000033FAD70, 0x0000000000000000 offset, 12 functions] `.?AVGetExtServerStatusRequest@Status@bnet@@` -`class bnet::HttpTransport`: VTable [0x00000000033FB218, 0x0000000000000000 offset, 6 functions] `.?AVHttpTransport@bnet@@` -`class bnet::HttpTransport`: VTable [0x00000000033FB260, 0x0000000000000010 offset, 2 functions] `.?AVHttpTransport@bnet@@` -`class bnet::WinHttpTransport`: VTable [0x00000000033FB280, 0x0000000000000000 offset, 6 functions] `.?AVWinHttpTransport@bnet@@` -`class bnet::WinHttpTransport`: VTable [0x00000000033FB2C8, 0x0000000000000010 offset, 2 functions] `.?AVWinHttpTransport@bnet@@` -`class bnet::Callback`: VTable [0x00000000033FDE78, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@VFrame@Notification@bnet@@VWebSocketStatus@3@@bnet@@` -`class bnet::Notification::UserWebSocket::OnConnected`: VTable [0x00000000033FDEC0, 0x0000000000000000 offset, 6 functions] `.?AVOnConnected@UserWebSocket@Notification@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000033FDF08, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@VFrame@Notification@bnet@@VWebSocketStatus@3@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000033FDF50, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000033FDF98, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@V?$FixedVector@USystemModel@Notification@bnet@@$07$00V?$StdAllocator@USystemModel@Notification@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::Notification::UserData::OnSystemIdFetchedRegister`: VTable [0x00000000033FDFE0, 0x0000000000000000 offset, 6 functions] `.?AVOnSystemIdFetchedRegister@UserData@Notification@bnet@@` -`class bnet::Notification::UserWebSocket::OnSystemIdFetchedSend`: VTable [0x00000000033FE0C0, 0x0000000000000000 offset, 6 functions] `.?AVOnSystemIdFetchedSend@UserWebSocket@Notification@bnet@@` -`class bnet::Notification::UserWebSocket::OnSystemIdFetchedSend`: VTable [0x00000000033FE108, 0x0000000000000010 offset, 2 functions] `.?AVOnSystemIdFetchedSend@UserWebSocket@Notification@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class bnet::Notification::UserWebSocket::OnSystemIdFetchedSend>`: VTable [0x00000000033FE128, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@USystemModel@Notification@bnet@@$07$00V?$StdAllocator@USystemModel@Notification@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VOnSystemIdFetchedSend@UserWebSocket@Notification@2@@bnet@@` -`class bnet::CallbackBind,class bnet::Notification::UserWebSocket::OnSystemIdFetchedSend>`: VTable [0x00000000033FE170, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@VOnSystemIdFetchedSend@UserWebSocket@Notification@2@@bnet@@` -`class bnet::Notification::UserData::ReconnectJob`: VTable [0x00000000033FE1F0, 0x0000000000000000 offset, 6 functions] `.?AVReconnectJob@UserData@Notification@bnet@@` -`class bnet::CallbackBind,class bnet::Notification::UserData::ReconnectJob>`: VTable [0x00000000033FE238, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@VReconnectJob@UserData@Notification@2@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000033FE280, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class std::_Ref_count_obj_alloc >`: VTable [0x00000000033FE428, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj_alloc@VUserWebSocket@Notification@bnet@@V?$StdAllocator@X@_impl@3@@std@@` -`class std::_Ref_count_del_alloc,class bnet::_impl::StdAllocator >`: VTable [0x00000000033FE458, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_del_alloc@VUserWebSocket@Notification@bnet@@U?$MemoryDeleter@VUserWebSocket@Notification@bnet@@@_impl@3@V?$StdAllocator@X@53@@std@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::LegalDocument>`: VTable [0x00000000033FEE70, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VFileChunk@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VLegalDocument@2@@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000033FF128, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VLegalDocument@bnet@@$04$00V?$StdAllocator@VLegalDocument@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::ListRequiredLegalDocumentsRequest`: VTable [0x00000000033FF1A8, 0x0000000000000000 offset, 12 functions] `.?AVListRequiredLegalDocumentsRequest@bnet@@` -`class bnet::Callback`: VTable [0x00000000033FFBD0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@UHydraAuthenticationResult@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::Callback >,class bnet::HttpResponseInfo>`: VTable [0x00000000033FFC18, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$FixedString@$0CAA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@VHttpResponseInfo@3@@bnet@@` -`class bnet::AuthenticationFlow`: VTable [0x00000000033FFC60, 0x0000000000000000 offset, 9 functions] `.?AVAuthenticationFlow@bnet@@` -`class bnet::AuthenticationFlow`: VTable [0x00000000033FFCC0, 0x0000000000000010 offset, 1 functions] `.?AVAuthenticationFlow@bnet@@` -`class bnet::AuthenticationFlow`: VTable [0x00000000033FFCD8, 0x0000000000000118 offset, 2 functions] `.?AVAuthenticationFlow@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000033FFCF8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VCdpAuthenticationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::AuthenticationFlow>`: VTable [0x00000000033FFD40, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VCdpAuthenticationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::AuthenticationFlow>`: VTable [0x00000000033FFD88, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@UHydraAuthenticationResult@bnet@@VHttpResponseInfo@2@@bnet@@VAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::AuthenticationFlow>`: VTable [0x00000000033FFDD0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@VAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind >,class bnet::HttpResponseInfo>,class bnet::AuthenticationFlow>`: VTable [0x00000000033FFE38, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$FixedString@$0CAA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@VHttpResponseInfo@3@@bnet@@VAuthenticationFlow@2@@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x0000000003400088, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUser@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::AccountQuickCreationRequest`: VTable [0x0000000003400108, 0x0000000000000000 offset, 12 functions] `.?AVAccountQuickCreationRequest@bnet@@` -`class bnet::HttpRequest >`: VTable [0x0000000003400368, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@VSessionToken@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::SessionAuthRequest`: VTable [0x00000000034003E8, 0x0000000000000000 offset, 12 functions] `.?AVSessionAuthRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x0000000003400610, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VAccountResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::AccountUserCredentialsAuthenticationRequest`: VTable [0x0000000003400690, 0x0000000000000000 offset, 12 functions] `.?AVAccountUserCredentialsAuthenticationRequest@bnet@@` -`class bnet::AccountExternalAuthenticationRequest`: VTable [0x00000000034007A0, 0x0000000000000000 offset, 12 functions] `.?AVAccountExternalAuthenticationRequest@bnet@@` -`class bnet::SessionExternalAuthRequest`: VTable [0x0000000003400898, 0x0000000000000000 offset, 12 functions] `.?AVSessionExternalAuthRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x0000000003400B88, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUpgradeTokenResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::TokenUpgradeRequest`: VTable [0x0000000003400C08, 0x0000000000000000 offset, 12 functions] `.?AVTokenUpgradeRequest@bnet@@` -`class bnet::AccountUnlinkingRequest`: VTable [0x0000000003400F58, 0x0000000000000000 offset, 12 functions] `.?AVAccountUnlinkingRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x0000000003401240, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::RetrieveExternalAccountRequest`: VTable [0x00000000034012C0, 0x0000000000000000 offset, 12 functions] `.?AVRetrieveExternalAccountRequest@bnet@@` -`class bnet::UgcCancelUploadRequest`: VTable [0x00000000034018F8, 0x0000000000000000 offset, 12 functions] `.?AVUgcCancelUploadRequest@bnet@@` -`class bnet::UgcChunkedUploadCompletionRequest`: VTable [0x0000000003401A08, 0x0000000000000000 offset, 12 functions] `.?AVUgcChunkedUploadCompletionRequest@bnet@@` -`class bnet::HttpRequest >`: VTable [0x0000000003401C38, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@_KVHttpResponseInfo@bnet@@@bnet@@@bnet@@` -`class bnet::UgcChunkedUploadInitiationRequest`: VTable [0x0000000003401CB8, 0x0000000000000000 offset, 12 functions] `.?AVUgcChunkedUploadInitiationRequest@bnet@@` -`class bnet::UgcChunkUploadRequest`: VTable [0x0000000003401E50, 0x0000000000000000 offset, 12 functions] `.?AVUgcChunkUploadRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x0000000003402498, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VCdpFileInfoResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::CdpFileInfoRequest`: VTable [0x0000000003402518, 0x0000000000000000 offset, 12 functions] `.?AVCdpFileInfoRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x0000000003402B30, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VCdpKeyResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::CdpKeyRequest`: VTable [0x0000000003402BB0, 0x0000000000000000 offset, 12 functions] `.?AVCdpKeyRequest@bnet@@` -`class bnet::Parallel`: VTable [0x0000000003402E28, 0x0000000000000000 offset, 9 functions] `.?AV?$Parallel@UNonThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@` -`class bnet::Parallel`: VTable [0x0000000003402E88, 0x0000000000000010 offset, 1 functions] `.?AV?$Parallel@UNonThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@` -`class bnet::BaseFileDownloader`: VTable [0x0000000003402EA0, 0x0000000000000000 offset, 11 functions] `.?AVBaseFileDownloader@bnet@@` -`class bnet::BaseFileDownloader`: VTable [0x0000000003402F18, 0x0000000000000010 offset, 1 functions] `.?AVBaseFileDownloader@bnet@@` -`class bnet::BaseFileDownloader`: VTable [0x0000000003402F30, 0x0000000000000118 offset, 2 functions] `.?AVBaseFileDownloader@bnet@@` -`class bnet::BaseFileDownloader`: VTable [0x0000000003402F50, 0x0000000000000140 offset, 2 functions] `.?AVBaseFileDownloader@bnet@@` -`class bnet::CustomData::ElementalValue<2>`: VTable [0x00000000034050E0, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$01@CustomData@bnet@@` -`class bnet::CustomData::ElementalValue<4>`: VTable [0x0000000003405128, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$03@CustomData@bnet@@` -`class bnet::CustomData::ElementalValue<5>`: VTable [0x0000000003405170, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$04@CustomData@bnet@@` -`class bnet::CustomData::ElementalValue<6>`: VTable [0x00000000034051B8, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$05@CustomData@bnet@@` -`class bnet::CustomData::ElementalValue<7>`: VTable [0x0000000003405200, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$06@CustomData@bnet@@` -`class std::_Ref_count_obj_alloc >`: VTable [0x00000000034057B8, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj_alloc@VEventData@Notification@bnet@@V?$StdAllocator@X@_impl@3@@std@@` -`class std::_Ref_count_del_alloc,class bnet::_impl::StdAllocator >`: VTable [0x00000000034057E8, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_del_alloc@VEventData@Notification@bnet@@U?$MemoryDeleter@VEventData@Notification@bnet@@@_impl@3@V?$StdAllocator@X@53@@std@@` -`class bnet::ISocket`: VTable [0x0000000003407678, 0x0000000000000000 offset, 10 functions] `.?AVISocket@bnet@@` -`class bnet::CSocket`: VTable [0x00000000034076E8, 0x0000000000000000 offset, 10 functions] `.?AVCSocket@bnet@@` -`class bnet::CSecureSocket`: VTable [0x0000000003407758, 0x0000000000000000 offset, 10 functions] `.?AVCSecureSocket@bnet@@` -`class bnet::SharedSRWMutex`: VTable [0x00000000034077C8, 0x0000000000000000 offset, 1 functions] `.?AVSharedSRWMutex@bnet@@` -`class bnet::Callback`: VTable [0x0000000003407860, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@` -`class bnet::Callback,class bnet::SocketStatus>`: VTable [0x00000000034078A8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$ArrayView@E@bnet@@VSocketStatus@2@@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::InitJob::SocketInitJob`: VTable [0x00000000034078F0, 0x0000000000000000 offset, 6 functions] `.?AVSocketInitJob@InitJob@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::InitJob::SendHandshakeJob`: VTable [0x0000000003407938, 0x0000000000000000 offset, 6 functions] `.?AVSendHandshakeJob@InitJob@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::InitJob::ReceiveHandshakeJob`: VTable [0x0000000003407980, 0x0000000000000000 offset, 6 functions] `.?AVReceiveHandshakeJob@InitJob@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::InitJob`: VTable [0x00000000034079C8, 0x0000000000000000 offset, 9 functions] `.?AVInitJob@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::InitJob`: VTable [0x0000000003407A28, 0x0000000000000010 offset, 1 functions] `.?AVInitJob@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::InitJob`: VTable [0x0000000003407A40, 0x0000000000000118 offset, 2 functions] `.?AVInitJob@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::IWriteJobSequence`: VTable [0x0000000003407A60, 0x0000000000000000 offset, 2 functions] `.?AVIWriteJobSequence@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::_impl::Observable`: VTable [0x0000000003407A80, 0x0000000000000000 offset, 2 functions] `.?AV?$Observable@VIWriteJobSequence@WebSocketJob@pImpl@WebSocket@bnet@@Uvoid_t@bnet_std@@@_impl@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::WriteJobSequence::WriteJob`: VTable [0x0000000003407AA0, 0x0000000000000000 offset, 6 functions] `.?AVWriteJob@WriteJobSequence@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::WriteJobSequence::WriteJob`: VTable [0x0000000003407AE8, 0x0000000000000010 offset, 2 functions] `.?AVWriteJob@WriteJobSequence@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::WriteJobSequence`: VTable [0x0000000003407B08, 0x0000000000000000 offset, 9 functions] `.?AVWriteJobSequence@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::WriteJobSequence`: VTable [0x0000000003407B68, 0x0000000000000010 offset, 1 functions] `.?AVWriteJobSequence@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::WriteJobSequence`: VTable [0x0000000003407B80, 0x0000000000000170 offset, 2 functions] `.?AVWriteJobSequence@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::ReadJob`: VTable [0x0000000003407BA0, 0x0000000000000000 offset, 6 functions] `.?AVReadJob@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob::ReadJob`: VTable [0x0000000003407BE8, 0x0000000000000010 offset, 2 functions] `.?AVReadJob@WebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob`: VTable [0x0000000003407C08, 0x0000000000000000 offset, 9 functions] `.?AVWebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob`: VTable [0x0000000003407C68, 0x0000000000000010 offset, 1 functions] `.?AVWebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::WebSocket::pImpl::WebSocketJob`: VTable [0x0000000003407C80, 0x0000000000000170 offset, 2 functions] `.?AVWebSocketJob@pImpl@WebSocket@bnet@@` -`class bnet::CallbackBind,class bnet::WebSocket::pImpl>`: VTable [0x0000000003407CA0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@VpImpl@WebSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::WebSocket::pImpl::WebSocketJob>`: VTable [0x0000000003407D18, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VWebSocketJob@pImpl@WebSocket@2@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x0000000003407D60, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackBind,class bnet::WebSocket::pImpl::WebSocketJob::InitJob>`: VTable [0x0000000003407DA8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VInitJob@WebSocketJob@pImpl@WebSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SocketStatus>,class bnet::WebSocket::pImpl::WebSocketJob::InitJob>`: VTable [0x0000000003407DF0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$ArrayView@E@bnet@@VSocketStatus@2@@bnet@@VInitJob@WebSocketJob@pImpl@WebSocket@2@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x0000000003407EE8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackBind,class bnet::SocketStatus>,class bnet::WebSocket::pImpl::WebSocketJob::ReadJob>`: VTable [0x0000000003407F30, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$ArrayView@E@bnet@@VSocketStatus@2@@bnet@@VReadJob@WebSocketJob@pImpl@WebSocket@2@@bnet@@` -`class bnet::Evaluator::IEvaluator`: VTable [0x0000000003407F98, 0x0000000000000000 offset, 3 functions] `.?AVIEvaluator@?$Evaluator@$$A6A_N_K@Z@bnet@@` -`class bnet::Evaluator::EvaluateBind >`: VTable [0x0000000003407FC0, 0x0000000000000000 offset, 3 functions] `.?AV?$EvaluateBind@V@@@?$Evaluator@$$A6A_N_K@Z@bnet@@` -`class bnet::Evaluator::EvaluateBind >`: VTable [0x0000000003407FE8, 0x0000000000000000 offset, 3 functions] `.?AV?$EvaluateBind@V@@@?$Evaluator@$$A6A_N_K@Z@bnet@@` -`class bnet::Evaluator::EvaluateBind >`: VTable [0x0000000003408010, 0x0000000000000000 offset, 3 functions] `.?AV?$EvaluateBind@V@@@?$Evaluator@$$A6A_N_K@Z@bnet@@` -`class bnet::Callback`: VTable [0x0000000003408820, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@VWebSocketReadResult@bnet@@VWebSocketStatus@2@@bnet@@` -`class bnet::Notification::`anonymous namespace'::OnReadFrame`: VTable [0x0000000003408868, 0x0000000000000000 offset, 6 functions] `.?AVOnReadFrame@?A0x8d4d89c9@Notification@bnet@@` -`class bnet::Notification::Context::OnSystemFetched`: VTable [0x0000000003408D50, 0x0000000000000000 offset, 6 functions] `.?AVOnSystemFetched@Context@Notification@bnet@@` -`class bnet::Notification::ReceiveJob`: VTable [0x0000000003408F78, 0x0000000000000000 offset, 6 functions] `.?AVReceiveJob@Notification@bnet@@` -`class bnet::Notification::ReceiveJob`: VTable [0x0000000003408FC0, 0x0000000000000010 offset, 2 functions] `.?AVReceiveJob@Notification@bnet@@` -`class bnet::CallbackBind,class bnet::Notification::ReceiveJob>`: VTable [0x0000000003408FF0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VFrame@Notification@bnet@@VWebSocketStatus@3@@bnet@@VReceiveJob@Notification@2@@bnet@@` -`class bnet::Notification::FilterJob`: VTable [0x0000000003409158, 0x0000000000000000 offset, 9 functions] `.?AVFilterJob@Notification@bnet@@` -`class bnet::Notification::FilterJob`: VTable [0x00000000034091B8, 0x0000000000000010 offset, 1 functions] `.?AVFilterJob@Notification@bnet@@` -`class bnet::Notification::FilterJob`: VTable [0x00000000034091D0, 0x0000000000000170 offset, 2 functions] `.?AVFilterJob@Notification@bnet@@` -`class bnet::SessionRefreshRequest`: VTable [0x0000000003409268, 0x0000000000000000 offset, 12 functions] `.?AVSessionRefreshRequest@bnet@@` -`class bnet::Presence::UpdateRequest`: VTable [0x00000000034093B0, 0x0000000000000000 offset, 12 functions] `.?AVUpdateRequest@Presence@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x0000000003409748, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@USystemModel@Notification@bnet@@$07$00V?$StdAllocator@USystemModel@Notification@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Notification::ListSystemRequest`: VTable [0x00000000034097C8, 0x0000000000000000 offset, 12 functions] `.?AVListSystemRequest@Notification@bnet@@` -`class bnet::_impl::FixedPool<163840,3>`: VTable [0x00000000034098D8, 0x0000000000000000 offset, 3 functions] `.?AV?$FixedPool@$0CIAAA@$02@_impl@bnet@@` -`class bnet::NotificationConnectRequest`: VTable [0x0000000003409B70, 0x0000000000000000 offset, 6 functions] `.?AVNotificationConnectRequest@bnet@@` -`class bnet::NotificationConnectRequest`: VTable [0x0000000003409BB8, 0x0000000000000010 offset, 2 functions] `.?AVNotificationConnectRequest@bnet@@` -`class bnet::HttpRequest >,class bnet::HttpResponseInfo> >`: VTable [0x0000000003409E00, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$FixedString@$0CAA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@VHttpResponseInfo@3@@bnet@@@bnet@@` -`class bnet::HydraAccessRequest`: VTable [0x0000000003409E80, 0x0000000000000000 offset, 12 functions] `.?AVHydraAccessRequest@bnet@@` -`class bnet::HttpRequest >`: VTable [0x000000000340A158, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@UHydraAuthenticationResult@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::HydraAuthenticationRequest`: VTable [0x000000000340A1D8, 0x0000000000000000 offset, 12 functions] `.?AVHydraAuthenticationRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x000000000340A4C8, 0x0000000000000000 offset, 12 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VCdpAuthenticationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::CdpAuthenticationRequest`: VTable [0x000000000340A548, 0x0000000000000000 offset, 12 functions] `.?AVCdpAuthenticationRequest@bnet@@` -`class bnet::SessionTokenRequest`: VTable [0x000000000340A8D8, 0x0000000000000000 offset, 12 functions] `.?AVSessionTokenRequest@bnet@@` -`class bnet::AccountAuthenticationRequest`: VTable [0x000000000340AB30, 0x0000000000000000 offset, 12 functions] `.?AVAccountAuthenticationRequest@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob::InitializeJob`: VTable [0x00000000034116D0, 0x0000000000000000 offset, 6 functions] `.?AVInitializeJob@SocketJob@WinSocket@?A0xa45e9361@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob::InitializeJob`: VTable [0x0000000003411718, 0x0000000000000010 offset, 2 functions] `.?AVInitializeJob@SocketJob@WinSocket@?A0xa45e9361@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob::ReceiveJob`: VTable [0x0000000003411738, 0x0000000000000000 offset, 6 functions] `.?AVReceiveJob@SocketJob@WinSocket@?A0xa45e9361@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob::ReceiveJob`: VTable [0x0000000003411780, 0x0000000000000010 offset, 2 functions] `.?AVReceiveJob@SocketJob@WinSocket@?A0xa45e9361@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob::WriteJob`: VTable [0x00000000034117A0, 0x0000000000000000 offset, 6 functions] `.?AVWriteJob@SocketJob@WinSocket@?A0xa45e9361@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob::WriteJob`: VTable [0x00000000034117E8, 0x0000000000000010 offset, 2 functions] `.?AVWriteJob@SocketJob@WinSocket@?A0xa45e9361@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob`: VTable [0x0000000003411808, 0x0000000000000000 offset, 9 functions] `.?AVSocketJob@WinSocket@?A0xa45e9361@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob`: VTable [0x0000000003411868, 0x0000000000000010 offset, 1 functions] `.?AVSocketJob@WinSocket@?A0xa45e9361@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob`: VTable [0x0000000003411880, 0x0000000000000170 offset, 2 functions] `.?AVSocketJob@WinSocket@?A0xa45e9361@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000034118A0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::HandshakeJob`: VTable [0x0000000003413158, 0x0000000000000000 offset, 6 functions] `.?AVHandshakeJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::HandshakeJob`: VTable [0x00000000034131A0, 0x0000000000000010 offset, 2 functions] `.?AVHandshakeJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::InitializeJob`: VTable [0x00000000034131C0, 0x0000000000000000 offset, 9 functions] `.?AVInitializeJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::InitializeJob`: VTable [0x0000000003413220, 0x0000000000000010 offset, 1 functions] `.?AVInitializeJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::InitializeJob`: VTable [0x0000000003413238, 0x0000000000000118 offset, 2 functions] `.?AVInitializeJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::WriteJob`: VTable [0x0000000003413258, 0x0000000000000000 offset, 6 functions] `.?AVWriteJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::WriteJob`: VTable [0x00000000034132A0, 0x0000000000000010 offset, 2 functions] `.?AVWriteJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob::DecodeJob`: VTable [0x00000000034132C0, 0x0000000000000000 offset, 6 functions] `.?AVDecodeJob@ReceiveJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob::DecodeJob`: VTable [0x0000000003413308, 0x0000000000000010 offset, 2 functions] `.?AVDecodeJob@ReceiveJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::Callback,class bnet::SocketStatus>`: VTable [0x0000000003413328, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@U?$SecBufferList@$03@?A0xdfe5091c@bnet@@VSocketStatus@3@@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob`: VTable [0x0000000003413370, 0x0000000000000000 offset, 9 functions] `.?AVReceiveJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob`: VTable [0x00000000034133D0, 0x0000000000000010 offset, 1 functions] `.?AVReceiveJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob`: VTable [0x00000000034133E8, 0x0000000000000118 offset, 2 functions] `.?AVReceiveJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob`: VTable [0x0000000003413408, 0x0000000000000000 offset, 9 functions] `.?AVSecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob`: VTable [0x0000000003413468, 0x0000000000000010 offset, 1 functions] `.?AVSecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob`: VTable [0x0000000003413480, 0x0000000000000170 offset, 2 functions] `.?AVSecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::CallbackBind,class bnet::SecureSocket::pImpl::SecureSocketJob>`: VTable [0x00000000034134A0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VSecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x0000000003413508, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackBind,class bnet::SecureSocket::pImpl::SecureSocketJob::HandshakeJob>`: VTable [0x0000000003413550, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VHandshakeJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SocketStatus>,class bnet::SecureSocket::pImpl::SecureSocketJob::HandshakeJob>`: VTable [0x0000000003413598, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$ArrayView@E@bnet@@VSocketStatus@2@@bnet@@VHandshakeJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SecureSocket::pImpl::SecureSocketJob::InitializeJob>`: VTable [0x00000000034135F8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VInitializeJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SecureSocket::pImpl::SecureSocketJob::WriteJob>`: VTable [0x0000000003413658, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VWriteJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SocketStatus>,class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob::DecodeJob>`: VTable [0x00000000034136E0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$ArrayView@E@bnet@@VSocketStatus@2@@bnet@@VDecodeJob@ReceiveJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SocketStatus>,class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob>`: VTable [0x0000000003413760, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@U?$SecBufferList@$03@?A0xdfe5091c@bnet@@VSocketStatus@3@@bnet@@VReceiveJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob>`: VTable [0x00000000034137A8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VReceiveJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::Evaluator::EvaluateBind >`: VTable [0x00000000034137F0, 0x0000000000000000 offset, 3 functions] `.?AV?$EvaluateBind@V@@@?$Evaluator@$$A6A_N_K@Z@bnet@@` -`class bnet::Notification::ChangeFilterRequest`: VTable [0x0000000003413C08, 0x0000000000000000 offset, 6 functions] `.?AVChangeFilterRequest@Notification@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x0000000003413C50, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::User`: VTable [0x0000000003413F30, 0x0000000000000000 offset, 3 functions] `.?AVUser@bnet@@` -`class bnet::InternalUser`: VTable [0x0000000003414048, 0x0000000000000000 offset, 3 functions] `.?AVInternalUser@bnet@@` -`class bnet::_impl::Observable`: VTable [0x0000000003414070, 0x0000000000000000 offset, 3 functions] `.?AV?$Observable@VInternalUser@bnet@@Uvoid_t@bnet_std@@@_impl@bnet@@` -`class bnet::LogoutFlow`: VTable [0x0000000003414458, 0x0000000000000000 offset, 9 functions] `.?AVLogoutFlow@bnet@@` -`class bnet::LogoutFlow`: VTable [0x00000000034144B8, 0x0000000000000010 offset, 1 functions] `.?AVLogoutFlow@bnet@@` -`class bnet::LogoutFlow`: VTable [0x00000000034144D0, 0x0000000000000118 offset, 2 functions] `.?AVLogoutFlow@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000034144F0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x0000000003414538, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x0000000003414580, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::SessionLogoutRequest`: VTable [0x0000000003414638, 0x0000000000000000 offset, 12 functions] `.?AVSessionLogoutRequest@bnet@@` -`class bnet::NotificationLogoutRequest`: VTable [0x00000000034147A8, 0x0000000000000000 offset, 6 functions] `.?AVNotificationLogoutRequest@bnet@@` -`class bnet::NotificationLogoutRequest`: VTable [0x00000000034147F0, 0x0000000000000010 offset, 2 functions] `.?AVNotificationLogoutRequest@bnet@@` -`struct BSScript::IVMObjectBindInterface`: VTable [0x0000000003415798, 0x0000000000000000 offset, 11 functions] `.?AUIVMObjectBindInterface@BSScript@@` -`class BSScript::IFunctionArguments`: VTable [0x0000000003415A40, 0x0000000000000000 offset, 2 functions] `.?AVIFunctionArguments@BSScript@@` -`class BSScript::IForEachScriptObjectFunctor`: VTable [0x0000000003415A60, 0x0000000000000000 offset, 2 functions] `.?AVIForEachScriptObjectFunctor@BSScript@@` -`class BSScript::IVMSaveLoadInterface`: VTable [0x0000000003415A80, 0x0000000000000000 offset, 23 functions] `.?AVIVMSaveLoadInterface@BSScript@@` -`class BSScript::IVMDebugInterface`: VTable [0x0000000003415B68, 0x0000000000000000 offset, 2 functions] `.?AVIVMDebugInterface@BSScript@@` -`class BSScript::IVirtualMachine`: VTable [0x0000000003415B88, 0x0000000000000000 offset, 54 functions] `.?AVIVirtualMachine@BSScript@@` -`class BSScript::ErrorLogger`: VTable [0x0000000003418098, 0x0000000000000000 offset, 3 functions] `.?AVErrorLogger@BSScript@@` -`struct BSScript::IMemoryPagePolicy`: VTable [0x0000000003418398, 0x0000000000000000 offset, 5 functions] `.?AUIMemoryPagePolicy@BSScript@@` -`class BSScript::SimpleAllocMemoryPagePolicy`: VTable [0x00000000034183D8, 0x0000000000000000 offset, 5 functions] `.?AVSimpleAllocMemoryPagePolicy@BSScript@@` -`class BSScript::CompiledScriptLoader`: VTable [0x0000000003418D38, 0x0000000000000000 offset, 4 functions] `.?AVCompiledScriptLoader@BSScript@@` -`class BSScript::Internal::IFuncCallQuery`: VTable [0x000000000341D910, 0x0000000000000000 offset, 2 functions] `.?AVIFuncCallQuery@Internal@BSScript@@` -`class BSScript::Internal::RawFuncCallQuery`: VTable [0x000000000341D930, 0x0000000000000000 offset, 2 functions] `.?AVRawFuncCallQuery@Internal@BSScript@@` -`class BSScript::IObjectProcessor`: VTable [0x000000000341DA78, 0x0000000000000000 offset, 4 functions] `.?AVIObjectProcessor@BSScript@@` -`class BSTFreeList`: VTable [0x000000000341DAA8, 0x0000000000000000 offset, 1 functions] `.?AV?$BSTFreeList@UFunctionMessage@Internal@BSScript@@@@` -`class BSTStaticFreeList`: VTable [0x000000000341DAC0, 0x0000000000000000 offset, 1 functions] `.?AV?$BSTStaticFreeList@UFunctionMessage@Internal@BSScript@@$0EAA@@@` -`class BSTMessageQueue`: VTable [0x000000000341DAD8, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@UFunctionMessage@Internal@BSScript@@@@` -`class BSTCommonMessageQueue`: VTable [0x000000000341DB18, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@UFunctionMessage@Internal@BSScript@@@@` -`class BSTCommonLLMessageQueue`: VTable [0x000000000341DB68, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonLLMessageQueue@UFunctionMessage@Internal@BSScript@@@@` -`class BSTMessageQueue`: VTable [0x000000000341DBB8, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@USuspendedStack@Internal@BSScript@@@@` -`class BSTCommonMessageQueue`: VTable [0x000000000341DBF8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@USuspendedStack@Internal@BSScript@@@@` -`class BSTCommonStaticMessageQueue`: VTable [0x000000000341DC48, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonStaticMessageQueue@USuspendedStack@Internal@BSScript@@$0IA@@@` -`class BSScript::Internal::VirtualMachine`: VTable [0x000000000341DC98, 0x0000000000000000 offset, 54 functions] `.?AVVirtualMachine@Internal@BSScript@@` -`class BSScript::Internal::VirtualMachine`: VTable [0x000000000341DEA8, 0x0000000000000010 offset, 11 functions] `.?AVVirtualMachine@Internal@BSScript@@` -`class BSScript::Internal::VirtualMachine`: VTable [0x000000000341DF20, 0x0000000000000018 offset, 23 functions] `.?AVVirtualMachine@Internal@BSScript@@` -`class BSScript::Internal::VirtualMachine`: VTable [0x000000000341E008, 0x0000000000000020 offset, 2 functions] `.?AVVirtualMachine@Internal@BSScript@@` -`class BSScript::Internal::`anonymous namespace'::ZeroArguments`: VTable [0x000000000341E108, 0x0000000000000000 offset, 2 functions] `.?AVZeroArguments@?A0xb895c65a@Internal@BSScript@@` -`class BSScript::Internal::`anonymous namespace'::OneVariableArgument`: VTable [0x000000000341E128, 0x0000000000000000 offset, 2 functions] `.?AVOneVariableArgument@?A0xb895c65a@Internal@BSScript@@` -`class BSScript::IStackCallbackFunctor`: VTable [0x0000000003420978, 0x0000000000000000 offset, 4 functions] `.?AVIStackCallbackFunctor@BSScript@@` -`class BSScript::IProfilePolicy`: VTable [0x00000000034209A8, 0x0000000000000000 offset, 5 functions] `.?AVIProfilePolicy@BSScript@@` -`class BSScript::UnlinkedTypes::Function::ConvertTypeFunctor`: VTable [0x00000000034209E8, 0x0000000000000000 offset, 2 functions] `.?AVConvertTypeFunctor@Function@UnlinkedTypes@BSScript@@` -`class BSScript::`anonymous namespace'::VMTypeResolveFunctor`: VTable [0x0000000003420BD0, 0x0000000000000000 offset, 2 functions] `.?AVVMTypeResolveFunctor@?A0x97b1c2c0@BSScript@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000034215E0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0DA@@@@@` -`class BSScript::ByteCode::PackedInstructionStream::InstructionFunctor`: VTable [0x0000000003422008, 0x0000000000000000 offset, 3 functions] `.?AVInstructionFunctor@PackedInstructionStream@ByteCode@BSScript@@` -`class BSScript::IFunction`: VTable [0x0000000003422C00, 0x0000000000000000 offset, 21 functions] `.?AVIFunction@BSScript@@` -`class BSScript::Internal::NativeFunctionStub`: VTable [0x0000000003422D38, 0x0000000000000000 offset, 21 functions] `.?AVNativeFunctionStub@Internal@BSScript@@` -`class BSScript::UnlinkedTypes::InstructionStream::InstructionFunctor`: VTable [0x0000000003422E10, 0x0000000000000000 offset, 3 functions] `.?AVInstructionFunctor@InstructionStream@UnlinkedTypes@BSScript@@` -`class BSScript::UnlinkedTypes::`anonymous namespace'::CountInstructionInfo`: VTable [0x0000000003422EB8, 0x0000000000000000 offset, 3 functions] `.?AVCountInstructionInfo@?A0xe290cd65@UnlinkedTypes@BSScript@@` -`class BSScript::UnlinkedTypes::`anonymous namespace'::WriteInstructionsFunctor`: VTable [0x0000000003422EE0, 0x0000000000000000 offset, 3 functions] `.?AVWriteInstructionsFunctor@?A0xe290cd65@UnlinkedTypes@BSScript@@` -`class BSScript::UnlinkedTypes::`anonymous namespace'::BuildInstructionOffsetMapFunctor`: VTable [0x0000000003422F08, 0x0000000000000000 offset, 3 functions] `.?AVBuildInstructionOffsetMapFunctor@?A0xe290cd65@UnlinkedTypes@BSScript@@` -`class BSScript::UnlinkedTypes::`anonymous namespace'::UnpackInstructionsFunctor`: VTable [0x0000000003422F30, 0x0000000000000000 offset, 3 functions] `.?AVUnpackInstructionsFunctor@?A0xe290cd65@UnlinkedTypes@BSScript@@` -`class BSScript::UnlinkedTypes::`anonymous namespace'::CollectStringsFunctor`: VTable [0x0000000003422FA8, 0x0000000000000000 offset, 3 functions] `.?AVCollectStringsFunctor@?A0xe290cd65@UnlinkedTypes@BSScript@@` -`class BSScript::Internal::CodeTasklet`: VTable [0x00000000034243C8, 0x0000000000000000 offset, 2 functions] `.?AVCodeTasklet@Internal@BSScript@@` -`class BSScript::Internal::AutoPropGetFunction`: VTable [0x0000000003425238, 0x0000000000000000 offset, 21 functions] `.?AVAutoPropGetFunction@Internal@BSScript@@` -`class BSScript::Internal::AutoPropSetFunction`: VTable [0x0000000003425310, 0x0000000000000000 offset, 21 functions] `.?AVAutoPropSetFunction@Internal@BSScript@@` -`class BSScript::LinkerProcessor`: VTable [0x0000000003425C58, 0x0000000000000000 offset, 4 functions] `.?AVLinkerProcessor@BSScript@@` -`class BSScript::`anonymous namespace'::LinkerConvertTypeFunctor`: VTable [0x0000000003425C88, 0x0000000000000000 offset, 2 functions] `.?AVLinkerConvertTypeFunctor@?A0x2d37b4ff@BSScript@@` -`class BSScript::Internal::ScriptFunction`: VTable [0x00000000034269A8, 0x0000000000000000 offset, 21 functions] `.?AVScriptFunction@Internal@BSScript@@` -`class BSGraphics::Include`: VTable [0x00000000034294E8, 0x0000000000000000 offset, 2 functions] `.?AVInclude@BSGraphics@@` -`class BSImagespaceShaderLensFlare`: VTable [0x0000000003431858, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderLensFlare@@` -`class BSImagespaceShaderLensFlare`: VTable [0x0000000003431910, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderLensFlare@@` -`class BSImagespaceShaderLensFlare`: VTable [0x0000000003431930, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderLensFlare@@` -`class BSImagespaceShaderLensFlare`: VTable [0x0000000003431948, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderLensFlare@@` -`class BSImagespaceShaderLensFlareVisibility`: VTable [0x00000000034319C0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderLensFlareVisibility@@` -`class BSImagespaceShaderLensFlareVisibility`: VTable [0x0000000003431A78, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderLensFlareVisibility@@` -`class BSImagespaceShaderLensFlareVisibility`: VTable [0x0000000003431A98, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderLensFlareVisibility@@` -`class BSImagespaceShaderLensFlareVisibility`: VTable [0x0000000003431AB0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderLensFlareVisibility@@` -`class BSShaderProperty`: VTable [0x0000000003433BE8, 0x0000000000000000 offset, 65 functions] `.?AVBSShaderProperty@@` -`class BSGrassShaderProperty`: VTable [0x0000000003434668, 0x0000000000000000 offset, 67 functions] `.?AVBSGrassShaderProperty@@` -`class BSLightingShaderProperty`: VTable [0x00000000034370E0, 0x0000000000000000 offset, 65 functions] `.?AVBSLightingShaderProperty@@` -`class BSGrassShader`: VTable [0x0000000003437F80, 0x0000000000000000 offset, 12 functions] `.?AVBSGrassShader@@` -`class BSGrassShader`: VTable [0x0000000003438000, 0x0000000000000010 offset, 2 functions] `.?AVBSGrassShader@@` -`class BSGrassShader`: VTable [0x0000000003438020, 0x0000000000000018 offset, 1 functions] `.?AVBSGrassShader@@` -`class BSFadeNode`: VTable [0x0000000003438798, 0x0000000000000000 offset, 66 functions] `.?AVBSFadeNode@@` -`class BSEffectShaderProperty`: VTable [0x0000000003438FA8, 0x0000000000000000 offset, 65 functions] `.?AVBSEffectShaderProperty@@` -`class BSFogProperty`: VTable [0x00000000034393F0, 0x0000000000000000 offset, 41 functions] `.?AVBSFogProperty@@` -`class NiTArray >`: VTable [0x000000000343B128, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVImageSpaceEffect@@V?$NiTMallocInterface@PEAVImageSpaceEffect@@@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000343B140, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVImageSpaceEffect@@@@` -`class BSImagespaceShaderAlphaBlend`: VTable [0x000000000343B158, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderAlphaBlend@@` -`class BSImagespaceShaderAlphaBlend`: VTable [0x000000000343B210, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderAlphaBlend@@` -`class BSImagespaceShaderAlphaBlend`: VTable [0x000000000343B230, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderAlphaBlend@@` -`class BSImagespaceShaderAlphaBlend`: VTable [0x000000000343B248, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderAlphaBlend@@` -`class BSImagespaceShaderBlur3`: VTable [0x000000000343B4E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur3@@` -`class BSImagespaceShaderBlur3`: VTable [0x000000000343B5A0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur3@@` -`class BSImagespaceShaderBlur3`: VTable [0x000000000343B5C0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur3@@` -`class BSImagespaceShaderBlur3`: VTable [0x000000000343B5D8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur3@@` -`class BSImagespaceShaderBlur5`: VTable [0x000000000343B6F0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur5@@` -`class BSImagespaceShaderBlur5`: VTable [0x000000000343B7A8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur5@@` -`class BSImagespaceShaderBlur5`: VTable [0x000000000343B7C8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur5@@` -`class BSImagespaceShaderBlur5`: VTable [0x000000000343B7E0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur5@@` -`class BSImagespaceShaderBlur7`: VTable [0x000000000343B8B8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur7@@` -`class BSImagespaceShaderBlur7`: VTable [0x000000000343B970, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur7@@` -`class BSImagespaceShaderBlur7`: VTable [0x000000000343B990, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur7@@` -`class BSImagespaceShaderBlur7`: VTable [0x000000000343B9A8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur7@@` -`class BSImagespaceShaderBlur9`: VTable [0x000000000343BA80, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur9@@` -`class BSImagespaceShaderBlur9`: VTable [0x000000000343BB38, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur9@@` -`class BSImagespaceShaderBlur9`: VTable [0x000000000343BB58, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur9@@` -`class BSImagespaceShaderBlur9`: VTable [0x000000000343BB70, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur9@@` -`class BSImagespaceShaderBlur11`: VTable [0x000000000343BC48, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur11@@` -`class BSImagespaceShaderBlur11`: VTable [0x000000000343BD00, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur11@@` -`class BSImagespaceShaderBlur11`: VTable [0x000000000343BD20, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur11@@` -`class BSImagespaceShaderBlur11`: VTable [0x000000000343BD38, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur11@@` -`class BSImagespaceShaderBlur13`: VTable [0x000000000343BE10, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur13@@` -`class BSImagespaceShaderBlur13`: VTable [0x000000000343BEC8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur13@@` -`class BSImagespaceShaderBlur13`: VTable [0x000000000343BEE8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur13@@` -`class BSImagespaceShaderBlur13`: VTable [0x000000000343BF00, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur13@@` -`class BSImagespaceShaderBlur15`: VTable [0x000000000343BFD8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur15@@` -`class BSImagespaceShaderBlur15`: VTable [0x000000000343C090, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur15@@` -`class BSImagespaceShaderBlur15`: VTable [0x000000000343C0B0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur15@@` -`class BSImagespaceShaderBlur15`: VTable [0x000000000343C0C8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur15@@` -`class BSImagespaceShaderNonHDRBlur3`: VTable [0x000000000343C1A0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur3@@` -`class BSImagespaceShaderNonHDRBlur3`: VTable [0x000000000343C258, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur3@@` -`class BSImagespaceShaderNonHDRBlur3`: VTable [0x000000000343C278, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur3@@` -`class BSImagespaceShaderNonHDRBlur3`: VTable [0x000000000343C290, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur3@@` -`class BSImagespaceShaderNonHDRBlur5`: VTable [0x000000000343C340, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur5@@` -`class BSImagespaceShaderNonHDRBlur5`: VTable [0x000000000343C3F8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur5@@` -`class BSImagespaceShaderNonHDRBlur5`: VTable [0x000000000343C418, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur5@@` -`class BSImagespaceShaderNonHDRBlur5`: VTable [0x000000000343C430, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur5@@` -`class BSImagespaceShaderNonHDRBlur7`: VTable [0x000000000343C4E0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur7@@` -`class BSImagespaceShaderNonHDRBlur7`: VTable [0x000000000343C598, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur7@@` -`class BSImagespaceShaderNonHDRBlur7`: VTable [0x000000000343C5B8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur7@@` -`class BSImagespaceShaderNonHDRBlur7`: VTable [0x000000000343C5D0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur7@@` -`class BSImagespaceShaderNonHDRBlur9`: VTable [0x000000000343C680, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur9@@` -`class BSImagespaceShaderNonHDRBlur9`: VTable [0x000000000343C738, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur9@@` -`class BSImagespaceShaderNonHDRBlur9`: VTable [0x000000000343C758, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur9@@` -`class BSImagespaceShaderNonHDRBlur9`: VTable [0x000000000343C770, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur9@@` -`class BSImagespaceShaderNonHDRBlur11`: VTable [0x000000000343C820, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur11@@` -`class BSImagespaceShaderNonHDRBlur11`: VTable [0x000000000343C8D8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur11@@` -`class BSImagespaceShaderNonHDRBlur11`: VTable [0x000000000343C8F8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur11@@` -`class BSImagespaceShaderNonHDRBlur11`: VTable [0x000000000343C910, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur11@@` -`class BSImagespaceShaderNonHDRBlur13`: VTable [0x000000000343C9C8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur13@@` -`class BSImagespaceShaderNonHDRBlur13`: VTable [0x000000000343CA80, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur13@@` -`class BSImagespaceShaderNonHDRBlur13`: VTable [0x000000000343CAA0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur13@@` -`class BSImagespaceShaderNonHDRBlur13`: VTable [0x000000000343CAB8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur13@@` -`class BSImagespaceShaderNonHDRBlur15`: VTable [0x000000000343CB70, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur15@@` -`class BSImagespaceShaderNonHDRBlur15`: VTable [0x000000000343CC28, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur15@@` -`class BSImagespaceShaderNonHDRBlur15`: VTable [0x000000000343CC48, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur15@@` -`class BSImagespaceShaderNonHDRBlur15`: VTable [0x000000000343CC60, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur15@@` -`class BSImagespaceShaderBrightPassBlur3`: VTable [0x000000000343CD18, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur3@@` -`class BSImagespaceShaderBrightPassBlur3`: VTable [0x000000000343CDD0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur3@@` -`class BSImagespaceShaderBrightPassBlur3`: VTable [0x000000000343CDF0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur3@@` -`class BSImagespaceShaderBrightPassBlur3`: VTable [0x000000000343CE08, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur3@@` -`class BSImagespaceShaderBrightPassBlur5`: VTable [0x000000000343CEF0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur5@@` -`class BSImagespaceShaderBrightPassBlur5`: VTable [0x000000000343CFA8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur5@@` -`class BSImagespaceShaderBrightPassBlur5`: VTable [0x000000000343CFC8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur5@@` -`class BSImagespaceShaderBrightPassBlur5`: VTable [0x000000000343CFE0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur5@@` -`class BSImagespaceShaderBrightPassBlur7`: VTable [0x000000000343D098, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur7@@` -`class BSImagespaceShaderBrightPassBlur7`: VTable [0x000000000343D150, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur7@@` -`class BSImagespaceShaderBrightPassBlur7`: VTable [0x000000000343D170, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur7@@` -`class BSImagespaceShaderBrightPassBlur7`: VTable [0x000000000343D188, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur7@@` -`class BSImagespaceShaderBrightPassBlur9`: VTable [0x000000000343D240, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur9@@` -`class BSImagespaceShaderBrightPassBlur9`: VTable [0x000000000343D2F8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur9@@` -`class BSImagespaceShaderBrightPassBlur9`: VTable [0x000000000343D318, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur9@@` -`class BSImagespaceShaderBrightPassBlur9`: VTable [0x000000000343D330, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur9@@` -`class BSImagespaceShaderBrightPassBlur11`: VTable [0x000000000343D3E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur11@@` -`class BSImagespaceShaderBrightPassBlur11`: VTable [0x000000000343D4A0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur11@@` -`class BSImagespaceShaderBrightPassBlur11`: VTable [0x000000000343D4C0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur11@@` -`class BSImagespaceShaderBrightPassBlur11`: VTable [0x000000000343D4D8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur11@@` -`class BSImagespaceShaderBrightPassBlur13`: VTable [0x000000000343D598, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur13@@` -`class BSImagespaceShaderBrightPassBlur13`: VTable [0x000000000343D650, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur13@@` -`class BSImagespaceShaderBrightPassBlur13`: VTable [0x000000000343D670, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur13@@` -`class BSImagespaceShaderBrightPassBlur13`: VTable [0x000000000343D688, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur13@@` -`class BSImagespaceShaderBrightPassBlur15`: VTable [0x000000000343D748, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur15@@` -`class BSImagespaceShaderBrightPassBlur15`: VTable [0x000000000343D800, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur15@@` -`class BSImagespaceShaderBrightPassBlur15`: VTable [0x000000000343D820, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur15@@` -`class BSImagespaceShaderBrightPassBlur15`: VTable [0x000000000343D838, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur15@@` -`class BSImagespaceShaderCopy`: VTable [0x000000000343D8F8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderCopy@@` -`class BSImagespaceShaderCopy`: VTable [0x000000000343D9B0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderCopy@@` -`class BSImagespaceShaderCopy`: VTable [0x000000000343D9D0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderCopy@@` -`class BSImagespaceShaderCopy`: VTable [0x000000000343D9E8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderCopy@@` -`class BSImagespaceShaderCopyDynamicFetchDisabled`: VTable [0x000000000343DA88, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderCopyDynamicFetchDisabled@@` -`class BSImagespaceShaderCopyDynamicFetchDisabled`: VTable [0x000000000343DB40, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderCopyDynamicFetchDisabled@@` -`class BSImagespaceShaderCopyDynamicFetchDisabled`: VTable [0x000000000343DB60, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderCopyDynamicFetchDisabled@@` -`class BSImagespaceShaderCopyDynamicFetchDisabled`: VTable [0x000000000343DB78, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderCopyDynamicFetchDisabled@@` -`class BSImagespaceShaderCopyScaleBias`: VTable [0x000000000343DC60, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderCopyScaleBias@@` -`class BSImagespaceShaderCopyScaleBias`: VTable [0x000000000343DD18, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderCopyScaleBias@@` -`class BSImagespaceShaderCopyScaleBias`: VTable [0x000000000343DD38, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderCopyScaleBias@@` -`class BSImagespaceShaderCopyScaleBias`: VTable [0x000000000343DD50, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderCopyScaleBias@@` -`class BSImagespaceShaderTextureMask`: VTable [0x000000000343DE28, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderTextureMask@@` -`class BSImagespaceShaderTextureMask`: VTable [0x000000000343DEE0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderTextureMask@@` -`class BSImagespaceShaderTextureMask`: VTable [0x000000000343DF00, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderTextureMask@@` -`class BSImagespaceShaderTextureMask`: VTable [0x000000000343DF18, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderTextureMask@@` -`class BSImagespaceShaderGreyScale`: VTable [0x000000000343DFF0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderGreyScale@@` -`class BSImagespaceShaderGreyScale`: VTable [0x000000000343E0A8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderGreyScale@@` -`class BSImagespaceShaderGreyScale`: VTable [0x000000000343E0C8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderGreyScale@@` -`class BSImagespaceShaderGreyScale`: VTable [0x000000000343E0E0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderGreyScale@@` -`class BSImagespaceShaderCopyCustomViewport`: VTable [0x000000000343E1B8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderCopyCustomViewport@@` -`class BSImagespaceShaderCopyCustomViewport`: VTable [0x000000000343E270, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderCopyCustomViewport@@` -`class BSImagespaceShaderCopyCustomViewport`: VTable [0x000000000343E290, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderCopyCustomViewport@@` -`class BSImagespaceShaderCopyCustomViewport`: VTable [0x000000000343E2A8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderCopyCustomViewport@@` -`class BSImagespaceShaderDepthOfField`: VTable [0x000000000343E370, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDepthOfField@@` -`class BSImagespaceShaderDepthOfField`: VTable [0x000000000343E428, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDepthOfField@@` -`class BSImagespaceShaderDepthOfField`: VTable [0x000000000343E448, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDepthOfField@@` -`class BSImagespaceShaderDepthOfField`: VTable [0x000000000343E460, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDepthOfField@@` -`class BSImagespaceShaderDepthOfFieldFogged`: VTable [0x000000000343E570, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDepthOfFieldFogged@@` -`class BSImagespaceShaderDepthOfFieldFogged`: VTable [0x000000000343E628, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDepthOfFieldFogged@@` -`class BSImagespaceShaderDepthOfFieldFogged`: VTable [0x000000000343E648, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDepthOfFieldFogged@@` -`class BSImagespaceShaderDepthOfFieldFogged`: VTable [0x000000000343E660, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDepthOfFieldFogged@@` -`class BSImagespaceShaderDepthOfFieldMaskedFogged`: VTable [0x000000000343E750, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDepthOfFieldMaskedFogged@@` -`class BSImagespaceShaderDepthOfFieldMaskedFogged`: VTable [0x000000000343E808, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDepthOfFieldMaskedFogged@@` -`class BSImagespaceShaderDepthOfFieldMaskedFogged`: VTable [0x000000000343E828, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDepthOfFieldMaskedFogged@@` -`class BSImagespaceShaderDepthOfFieldMaskedFogged`: VTable [0x000000000343E840, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDepthOfFieldMaskedFogged@@` -`class BSImagespaceShaderDistantBlur`: VTable [0x000000000343E940, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDistantBlur@@` -`class BSImagespaceShaderDistantBlur`: VTable [0x000000000343E9F8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDistantBlur@@` -`class BSImagespaceShaderDistantBlur`: VTable [0x000000000343EA18, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDistantBlur@@` -`class BSImagespaceShaderDistantBlur`: VTable [0x000000000343EA30, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDistantBlur@@` -`class BSImagespaceShaderDistantBlurFogged`: VTable [0x000000000343EAF0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDistantBlurFogged@@` -`class BSImagespaceShaderDistantBlurFogged`: VTable [0x000000000343EBA8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDistantBlurFogged@@` -`class BSImagespaceShaderDistantBlurFogged`: VTable [0x000000000343EBC8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDistantBlurFogged@@` -`class BSImagespaceShaderDistantBlurFogged`: VTable [0x000000000343EBE0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDistantBlurFogged@@` -`class BSImagespaceShaderDistantBlurMaskedFogged`: VTable [0x000000000343ECA0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDistantBlurMaskedFogged@@` -`class BSImagespaceShaderDistantBlurMaskedFogged`: VTable [0x000000000343ED58, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDistantBlurMaskedFogged@@` -`class BSImagespaceShaderDistantBlurMaskedFogged`: VTable [0x000000000343ED78, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDistantBlurMaskedFogged@@` -`class BSImagespaceShaderDistantBlurMaskedFogged`: VTable [0x000000000343ED90, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDistantBlurMaskedFogged@@` -`class BSImagespaceShaderDoubleVision`: VTable [0x000000000343EE60, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDoubleVision@@` -`class BSImagespaceShaderDoubleVision`: VTable [0x000000000343EF18, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDoubleVision@@` -`class BSImagespaceShaderDoubleVision`: VTable [0x000000000343EF38, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDoubleVision@@` -`class BSImagespaceShaderDoubleVision`: VTable [0x000000000343EF50, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDoubleVision@@` -`class BSImagespaceShaderFXAA`: VTable [0x000000000343F040, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderFXAA@@` -`class BSImagespaceShaderFXAA`: VTable [0x000000000343F0F8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderFXAA@@` -`class BSImagespaceShaderFXAA`: VTable [0x000000000343F118, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderFXAA@@` -`class BSImagespaceShaderFXAA`: VTable [0x000000000343F130, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderFXAA@@` -`class BSImagespaceShaderHDRDownSample4`: VTable [0x000000000343F238, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample4@@` -`class BSImagespaceShaderHDRDownSample4`: VTable [0x000000000343F2F0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample4@@` -`class BSImagespaceShaderHDRDownSample4`: VTable [0x000000000343F310, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample4@@` -`class BSImagespaceShaderHDRDownSample4`: VTable [0x000000000343F328, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample4@@` -`class BSImagespaceShaderHDRDownSample16Lum`: VTable [0x000000000343F3F8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample16Lum@@` -`class BSImagespaceShaderHDRDownSample16Lum`: VTable [0x000000000343F4B0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample16Lum@@` -`class BSImagespaceShaderHDRDownSample16Lum`: VTable [0x000000000343F4D0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample16Lum@@` -`class BSImagespaceShaderHDRDownSample16Lum`: VTable [0x000000000343F4E8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample16Lum@@` -`class BSImagespaceShaderHDRDownSample4RGB2Lum`: VTable [0x000000000343F5C8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample4RGB2Lum@@` -`class BSImagespaceShaderHDRDownSample4RGB2Lum`: VTable [0x000000000343F680, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample4RGB2Lum@@` -`class BSImagespaceShaderHDRDownSample4RGB2Lum`: VTable [0x000000000343F6A0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample4RGB2Lum@@` -`class BSImagespaceShaderHDRDownSample4RGB2Lum`: VTable [0x000000000343F6B8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample4RGB2Lum@@` -`class BSImagespaceShaderHDRDownSample16`: VTable [0x000000000343F790, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample16@@` -`class BSImagespaceShaderHDRDownSample16`: VTable [0x000000000343F848, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample16@@` -`class BSImagespaceShaderHDRDownSample16`: VTable [0x000000000343F868, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample16@@` -`class BSImagespaceShaderHDRDownSample16`: VTable [0x000000000343F880, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample16@@` -`class BSImagespaceShaderHDRDownSample4LumClamp`: VTable [0x000000000343F938, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample4LumClamp@@` -`class BSImagespaceShaderHDRDownSample4LumClamp`: VTable [0x000000000343F9F0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample4LumClamp@@` -`class BSImagespaceShaderHDRDownSample4LumClamp`: VTable [0x000000000343FA10, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample4LumClamp@@` -`class BSImagespaceShaderHDRDownSample4LumClamp`: VTable [0x000000000343FA28, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample4LumClamp@@` -`class BSImagespaceShaderHDRDownSample16LumClamp`: VTable [0x000000000343FB10, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample16LumClamp@@` -`class BSImagespaceShaderHDRDownSample16LumClamp`: VTable [0x000000000343FBC8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample16LumClamp@@` -`class BSImagespaceShaderHDRDownSample16LumClamp`: VTable [0x000000000343FBE8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample16LumClamp@@` -`class BSImagespaceShaderHDRDownSample16LumClamp`: VTable [0x000000000343FC00, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample16LumClamp@@` -`class BSImagespaceShaderHDRDownSample4LightAdapt`: VTable [0x000000000343FCD0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample4LightAdapt@@` -`class BSImagespaceShaderHDRDownSample4LightAdapt`: VTable [0x000000000343FD88, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample4LightAdapt@@` -`class BSImagespaceShaderHDRDownSample4LightAdapt`: VTable [0x000000000343FDA8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample4LightAdapt@@` -`class BSImagespaceShaderHDRDownSample4LightAdapt`: VTable [0x000000000343FDC0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample4LightAdapt@@` -`class BSImagespaceShaderHDRDownSample16LightAdapt`: VTable [0x000000000343FEB8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample16LightAdapt@@` -`class BSImagespaceShaderHDRDownSample16LightAdapt`: VTable [0x000000000343FF70, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample16LightAdapt@@` -`class BSImagespaceShaderHDRDownSample16LightAdapt`: VTable [0x000000000343FF90, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample16LightAdapt@@` -`class BSImagespaceShaderHDRDownSample16LightAdapt`: VTable [0x000000000343FFA8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample16LightAdapt@@` -`class BSImagespaceShaderHDRTonemapBlendCinematic`: VTable [0x0000000003440080, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematic@@` -`class BSImagespaceShaderHDRTonemapBlendCinematic`: VTable [0x0000000003440138, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematic@@` -`class BSImagespaceShaderHDRTonemapBlendCinematic`: VTable [0x0000000003440158, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematic@@` -`class BSImagespaceShaderHDRTonemapBlendCinematic`: VTable [0x0000000003440170, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematic@@` -`class BSImagespaceShaderHDRTonemapBlendCinematicFade`: VTable [0x0000000003440260, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematicFade@@` -`class BSImagespaceShaderHDRTonemapBlendCinematicFade`: VTable [0x0000000003440318, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematicFade@@` -`class BSImagespaceShaderHDRTonemapBlendCinematicFade`: VTable [0x0000000003440338, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematicFade@@` -`class BSImagespaceShaderHDRTonemapBlendCinematicFade`: VTable [0x0000000003440350, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematicFade@@` -`class BSImagespaceShaderLocalMap`: VTable [0x0000000003440438, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderLocalMap@@` -`class BSImagespaceShaderLocalMap`: VTable [0x00000000034404F0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderLocalMap@@` -`class BSImagespaceShaderLocalMap`: VTable [0x0000000003440510, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderLocalMap@@` -`class BSImagespaceShaderLocalMap`: VTable [0x0000000003440528, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderLocalMap@@` -`class BSImagespaceShaderMap`: VTable [0x00000000034405E0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderMap@@` -`class BSImagespaceShaderMap`: VTable [0x0000000003440698, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderMap@@` -`class BSImagespaceShaderMap`: VTable [0x00000000034406B8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderMap@@` -`class BSImagespaceShaderMap`: VTable [0x00000000034406D0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderMap@@` -`class BSImagespaceShaderWorldMap`: VTable [0x0000000003440780, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWorldMap@@` -`class BSImagespaceShaderWorldMap`: VTable [0x0000000003440838, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWorldMap@@` -`class BSImagespaceShaderWorldMap`: VTable [0x0000000003440858, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWorldMap@@` -`class BSImagespaceShaderWorldMap`: VTable [0x0000000003440870, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWorldMap@@` -`class BSImagespaceShaderWorldMapNoSkyBlur`: VTable [0x0000000003440948, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWorldMapNoSkyBlur@@` -`class BSImagespaceShaderWorldMapNoSkyBlur`: VTable [0x0000000003440A00, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWorldMapNoSkyBlur@@` -`class BSImagespaceShaderWorldMapNoSkyBlur`: VTable [0x0000000003440A20, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWorldMapNoSkyBlur@@` -`class BSImagespaceShaderWorldMapNoSkyBlur`: VTable [0x0000000003440A38, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWorldMapNoSkyBlur@@` -`class BSImagespaceShaderNoiseScrollAndBlend`: VTable [0x0000000003440B00, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNoiseScrollAndBlend@@` -`class BSImagespaceShaderNoiseScrollAndBlend`: VTable [0x0000000003440BB8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNoiseScrollAndBlend@@` -`class BSImagespaceShaderNoiseScrollAndBlend`: VTable [0x0000000003440BD8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNoiseScrollAndBlend@@` -`class BSImagespaceShaderNoiseScrollAndBlend`: VTable [0x0000000003440BF0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNoiseScrollAndBlend@@` -`class BSImagespaceShaderNoiseNormalmap`: VTable [0x0000000003440D50, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNoiseNormalmap@@` -`class BSImagespaceShaderNoiseNormalmap`: VTable [0x0000000003440E08, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNoiseNormalmap@@` -`class BSImagespaceShaderNoiseNormalmap`: VTable [0x0000000003440E28, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNoiseNormalmap@@` -`class BSImagespaceShaderNoiseNormalmap`: VTable [0x0000000003440E40, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNoiseNormalmap@@` -`class BSImagespaceShaderRadialBlur`: VTable [0x0000000003440F08, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderRadialBlur@@` -`class BSImagespaceShaderRadialBlur`: VTable [0x0000000003440FC0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderRadialBlur@@` -`class BSImagespaceShaderRadialBlur`: VTable [0x0000000003440FE0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderRadialBlur@@` -`class BSImagespaceShaderRadialBlur`: VTable [0x0000000003440FF8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderRadialBlur@@` -`class BSImagespaceShaderRadialBlurMedium`: VTable [0x00000000034410C0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderRadialBlurMedium@@` -`class BSImagespaceShaderRadialBlurMedium`: VTable [0x0000000003441178, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderRadialBlurMedium@@` -`class BSImagespaceShaderRadialBlurMedium`: VTable [0x0000000003441198, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderRadialBlurMedium@@` -`class BSImagespaceShaderRadialBlurMedium`: VTable [0x00000000034411B0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderRadialBlurMedium@@` -`class BSImagespaceShaderRadialBlurHigh`: VTable [0x0000000003441270, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderRadialBlurHigh@@` -`class BSImagespaceShaderRadialBlurHigh`: VTable [0x0000000003441328, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderRadialBlurHigh@@` -`class BSImagespaceShaderRadialBlurHigh`: VTable [0x0000000003441348, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderRadialBlurHigh@@` -`class BSImagespaceShaderRadialBlurHigh`: VTable [0x0000000003441360, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderRadialBlurHigh@@` -`class BSImagespaceShaderRefraction`: VTable [0x0000000003441418, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderRefraction@@` -`class BSImagespaceShaderRefraction`: VTable [0x00000000034414D0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderRefraction@@` -`class BSImagespaceShaderRefraction`: VTable [0x00000000034414F0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderRefraction@@` -`class BSImagespaceShaderRefraction`: VTable [0x0000000003441508, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderRefraction@@` -`class BSImagespaceShaderWaterDisplacementClearSimulation`: VTable [0x00000000034415B8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementClearSimulation@@` -`class BSImagespaceShaderWaterDisplacementClearSimulation`: VTable [0x0000000003441670, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementClearSimulation@@` -`class BSImagespaceShaderWaterDisplacementClearSimulation`: VTable [0x0000000003441690, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementClearSimulation@@` -`class BSImagespaceShaderWaterDisplacementClearSimulation`: VTable [0x00000000034416A8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementClearSimulation@@` -`class BSImagespaceShaderWaterDisplacementTexOffset`: VTable [0x00000000034417B0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementTexOffset@@` -`class BSImagespaceShaderWaterDisplacementTexOffset`: VTable [0x0000000003441868, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementTexOffset@@` -`class BSImagespaceShaderWaterDisplacementTexOffset`: VTable [0x0000000003441888, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementTexOffset@@` -`class BSImagespaceShaderWaterDisplacementTexOffset`: VTable [0x00000000034418A0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementTexOffset@@` -`class BSImagespaceShaderWaterDisplacementWadingRipple`: VTable [0x00000000034419E0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementWadingRipple@@` -`class BSImagespaceShaderWaterDisplacementWadingRipple`: VTable [0x0000000003441A98, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementWadingRipple@@` -`class BSImagespaceShaderWaterDisplacementWadingRipple`: VTable [0x0000000003441AB8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementWadingRipple@@` -`class BSImagespaceShaderWaterDisplacementWadingRipple`: VTable [0x0000000003441AD0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementWadingRipple@@` -`class BSImagespaceShaderWaterDisplacementRainRipple`: VTable [0x0000000003441BE0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementRainRipple@@` -`class BSImagespaceShaderWaterDisplacementRainRipple`: VTable [0x0000000003441C98, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementRainRipple@@` -`class BSImagespaceShaderWaterDisplacementRainRipple`: VTable [0x0000000003441CB8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementRainRipple@@` -`class BSImagespaceShaderWaterDisplacementRainRipple`: VTable [0x0000000003441CD0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementRainRipple@@` -`class BSImagespaceShaderWaterWadingHeightmap`: VTable [0x0000000003441DB0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterWadingHeightmap@@` -`class BSImagespaceShaderWaterWadingHeightmap`: VTable [0x0000000003441E68, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterWadingHeightmap@@` -`class BSImagespaceShaderWaterWadingHeightmap`: VTable [0x0000000003441E88, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterWadingHeightmap@@` -`class BSImagespaceShaderWaterWadingHeightmap`: VTable [0x0000000003441EA0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterWadingHeightmap@@` -`class BSImagespaceShaderWaterRainHeightmap`: VTable [0x0000000003441F80, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterRainHeightmap@@` -`class BSImagespaceShaderWaterRainHeightmap`: VTable [0x0000000003442038, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterRainHeightmap@@` -`class BSImagespaceShaderWaterRainHeightmap`: VTable [0x0000000003442058, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterRainHeightmap@@` -`class BSImagespaceShaderWaterRainHeightmap`: VTable [0x0000000003442070, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterRainHeightmap@@` -`class BSImagespaceShaderWaterBlendHeightmaps`: VTable [0x0000000003442140, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterBlendHeightmaps@@` -`class BSImagespaceShaderWaterBlendHeightmaps`: VTable [0x00000000034421F8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterBlendHeightmaps@@` -`class BSImagespaceShaderWaterBlendHeightmaps`: VTable [0x0000000003442218, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterBlendHeightmaps@@` -`class BSImagespaceShaderWaterBlendHeightmaps`: VTable [0x0000000003442230, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterBlendHeightmaps@@` -`class BSImagespaceShaderWaterSmoothHeightmap`: VTable [0x0000000003442320, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterSmoothHeightmap@@` -`class BSImagespaceShaderWaterSmoothHeightmap`: VTable [0x00000000034423D8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterSmoothHeightmap@@` -`class BSImagespaceShaderWaterSmoothHeightmap`: VTable [0x00000000034423F8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterSmoothHeightmap@@` -`class BSImagespaceShaderWaterSmoothHeightmap`: VTable [0x0000000003442410, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterSmoothHeightmap@@` -`class BSImagespaceShaderWaterDisplacementNormals`: VTable [0x00000000034424E0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementNormals@@` -`class BSImagespaceShaderWaterDisplacementNormals`: VTable [0x0000000003442598, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementNormals@@` -`class BSImagespaceShaderWaterDisplacementNormals`: VTable [0x00000000034425B8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementNormals@@` -`class BSImagespaceShaderWaterDisplacementNormals`: VTable [0x00000000034425D0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementNormals@@` -`class BSImagespaceShaderVolumetricLighting`: VTable [0x00000000034426B0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderVolumetricLighting@@` -`class BSImagespaceShaderVolumetricLighting`: VTable [0x0000000003442768, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderVolumetricLighting@@` -`class BSImagespaceShaderVolumetricLighting`: VTable [0x0000000003442788, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderVolumetricLighting@@` -`class BSImagespaceShaderVolumetricLighting`: VTable [0x00000000034427A0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderVolumetricLighting@@` -`class BSImagespaceShaderWaterFlow`: VTable [0x00000000034429D0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterFlow@@` -`class BSImagespaceShaderWaterFlow`: VTable [0x0000000003442A88, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterFlow@@` -`class BSImagespaceShaderWaterFlow`: VTable [0x0000000003442AA8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterFlow@@` -`class BSImagespaceShaderWaterFlow`: VTable [0x0000000003442AC0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterFlow@@` -`class BSImagespaceShaderApplyReflections`: VTable [0x0000000003442BE0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderApplyReflections@@` -`class BSImagespaceShaderApplyReflections`: VTable [0x0000000003442C98, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderApplyReflections@@` -`class BSImagespaceShaderApplyReflections`: VTable [0x0000000003442CB8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderApplyReflections@@` -`class BSImagespaceShaderApplyReflections`: VTable [0x0000000003442CD0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderApplyReflections@@` -`class BSImagespaceShaderISApplyVolumetricLighting`: VTable [0x0000000003442DE8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISApplyVolumetricLighting@@` -`class BSImagespaceShaderISApplyVolumetricLighting`: VTable [0x0000000003442EA0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISApplyVolumetricLighting@@` -`class BSImagespaceShaderISApplyVolumetricLighting`: VTable [0x0000000003442EC0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISApplyVolumetricLighting@@` -`class BSImagespaceShaderISApplyVolumetricLighting`: VTable [0x0000000003442ED8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISApplyVolumetricLighting@@` -`class BSImagespaceShaderISBasicCopy`: VTable [0x0000000003443010, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISBasicCopy@@` -`class BSImagespaceShaderISBasicCopy`: VTable [0x00000000034430C8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISBasicCopy@@` -`class BSImagespaceShaderISBasicCopy`: VTable [0x00000000034430E8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISBasicCopy@@` -`class BSImagespaceShaderISBasicCopy`: VTable [0x0000000003443100, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISBasicCopy@@` -`class BSImagespaceShaderISBlur`: VTable [0x00000000034431B0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISBlur@@` -`class BSImagespaceShaderISBlur`: VTable [0x0000000003443268, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISBlur@@` -`class BSImagespaceShaderISBlur`: VTable [0x0000000003443288, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISBlur@@` -`class BSImagespaceShaderISBlur`: VTable [0x00000000034432A0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISBlur@@` -`class BSImagespaceShaderISVolumetricLightingBlurHCS`: VTable [0x0000000003443390, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurHCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurHCS`: VTable [0x0000000003443448, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurHCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurHCS`: VTable [0x0000000003443468, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurHCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurHCS`: VTable [0x0000000003443480, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurHCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurVCS`: VTable [0x0000000003443638, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurVCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurVCS`: VTable [0x00000000034436F0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurVCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurVCS`: VTable [0x0000000003443710, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurVCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurVCS`: VTable [0x0000000003443728, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurVCS@@` -`class BSImagespaceShaderReflectionBlurHCS`: VTable [0x0000000003443818, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderReflectionBlurHCS@@` -`class BSImagespaceShaderReflectionBlurHCS`: VTable [0x00000000034438D0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderReflectionBlurHCS@@` -`class BSImagespaceShaderReflectionBlurHCS`: VTable [0x00000000034438F0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderReflectionBlurHCS@@` -`class BSImagespaceShaderReflectionBlurHCS`: VTable [0x0000000003443908, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderReflectionBlurHCS@@` -`class BSImagespaceShaderReflectionBlurVCS`: VTable [0x00000000034439C8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderReflectionBlurVCS@@` -`class BSImagespaceShaderReflectionBlurVCS`: VTable [0x0000000003443A80, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderReflectionBlurVCS@@` -`class BSImagespaceShaderReflectionBlurVCS`: VTable [0x0000000003443AA0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderReflectionBlurVCS@@` -`class BSImagespaceShaderReflectionBlurVCS`: VTable [0x0000000003443AB8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderReflectionBlurVCS@@` -`class BSImagespaceShaderISParallaxMaskBlurHCS`: VTable [0x0000000003443B78, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurHCS@@` -`class BSImagespaceShaderISParallaxMaskBlurHCS`: VTable [0x0000000003443C30, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurHCS@@` -`class BSImagespaceShaderISParallaxMaskBlurHCS`: VTable [0x0000000003443C50, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurHCS@@` -`class BSImagespaceShaderISParallaxMaskBlurHCS`: VTable [0x0000000003443C68, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurHCS@@` -`class BSImagespaceShaderISParallaxMaskBlurVCS`: VTable [0x0000000003443D50, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurVCS@@` -`class BSImagespaceShaderISParallaxMaskBlurVCS`: VTable [0x0000000003443E08, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurVCS@@` -`class BSImagespaceShaderISParallaxMaskBlurVCS`: VTable [0x0000000003443E28, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurVCS@@` -`class BSImagespaceShaderISParallaxMaskBlurVCS`: VTable [0x0000000003443E40, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurVCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurHCS`: VTable [0x0000000003443F08, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurHCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurHCS`: VTable [0x0000000003443FC0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurHCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurHCS`: VTable [0x0000000003443FE0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurHCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurHCS`: VTable [0x0000000003443FF8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurHCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurVCS`: VTable [0x00000000034440D0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurVCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurVCS`: VTable [0x0000000003444188, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurVCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurVCS`: VTable [0x00000000034441A8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurVCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurVCS`: VTable [0x00000000034441C0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurVCS@@` -`class BSImagespaceShaderISCompositeVolumetricLighting`: VTable [0x0000000003444290, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISCompositeVolumetricLighting@@` -`class BSImagespaceShaderISCompositeVolumetricLighting`: VTable [0x0000000003444348, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISCompositeVolumetricLighting@@` -`class BSImagespaceShaderISCompositeVolumetricLighting`: VTable [0x0000000003444368, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISCompositeVolumetricLighting@@` -`class BSImagespaceShaderISCompositeVolumetricLighting`: VTable [0x0000000003444380, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISCompositeVolumetricLighting@@` -`class BSImagespaceShaderISCompositeLensFlare`: VTable [0x00000000034444E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISCompositeLensFlare@@` -`class BSImagespaceShaderISCompositeLensFlare`: VTable [0x00000000034445A0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISCompositeLensFlare@@` -`class BSImagespaceShaderISCompositeLensFlare`: VTable [0x00000000034445C0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISCompositeLensFlare@@` -`class BSImagespaceShaderISCompositeLensFlare`: VTable [0x00000000034445D8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISCompositeLensFlare@@` -`class BSImagespaceShaderISCompositeLensFlareVolumetricLighting`: VTable [0x00000000034446B0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISCompositeLensFlareVolumetricLighting@@` -`class BSImagespaceShaderISCompositeLensFlareVolumetricLighting`: VTable [0x0000000003444768, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISCompositeLensFlareVolumetricLighting@@` -`class BSImagespaceShaderISCompositeLensFlareVolumetricLighting`: VTable [0x0000000003444788, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISCompositeLensFlareVolumetricLighting@@` -`class BSImagespaceShaderISCompositeLensFlareVolumetricLighting`: VTable [0x00000000034447A0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISCompositeLensFlareVolumetricLighting@@` -`class BSImagespaceShaderISCopySubRegionCS`: VTable [0x0000000003444860, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISCopySubRegionCS@@` -`class BSImagespaceShaderISCopySubRegionCS`: VTable [0x0000000003444918, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISCopySubRegionCS@@` -`class BSImagespaceShaderISCopySubRegionCS`: VTable [0x0000000003444938, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISCopySubRegionCS@@` -`class BSImagespaceShaderISCopySubRegionCS`: VTable [0x0000000003444950, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISCopySubRegionCS@@` -`class BSImagespaceShaderISDebugSnow`: VTable [0x0000000003444A50, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDebugSnow@@` -`class BSImagespaceShaderISDebugSnow`: VTable [0x0000000003444B08, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDebugSnow@@` -`class BSImagespaceShaderISDebugSnow`: VTable [0x0000000003444B28, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDebugSnow@@` -`class BSImagespaceShaderISDebugSnow`: VTable [0x0000000003444B40, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDebugSnow@@` -`class BSImagespaceShaderISDownsample`: VTable [0x0000000003444C00, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDownsample@@` -`class BSImagespaceShaderISDownsample`: VTable [0x0000000003444CB8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDownsample@@` -`class BSImagespaceShaderISDownsample`: VTable [0x0000000003444CD8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDownsample@@` -`class BSImagespaceShaderISDownsample`: VTable [0x0000000003444CF0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDownsample@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightest`: VTable [0x0000000003444E30, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightest@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightest`: VTable [0x0000000003444EE8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightest@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightest`: VTable [0x0000000003444F08, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightest@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightest`: VTable [0x0000000003444F20, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightest@@` -`class BSImagespaceShaderISDownsampleCS`: VTable [0x0000000003445010, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDownsampleCS@@` -`class BSImagespaceShaderISDownsampleCS`: VTable [0x00000000034450C8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDownsampleCS@@` -`class BSImagespaceShaderISDownsampleCS`: VTable [0x00000000034450E8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDownsampleCS@@` -`class BSImagespaceShaderISDownsampleCS`: VTable [0x0000000003445100, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDownsampleCS@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightestCS`: VTable [0x0000000003445208, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightestCS@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightestCS`: VTable [0x00000000034452C0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightestCS@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightestCS`: VTable [0x00000000034452E0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightestCS@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightestCS`: VTable [0x00000000034452F8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightestCS@@` -`class BSImagespaceShaderISExp`: VTable [0x00000000034453D8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISExp@@` -`class BSImagespaceShaderISExp`: VTable [0x0000000003445490, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISExp@@` -`class BSImagespaceShaderISExp`: VTable [0x00000000034454B0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISExp@@` -`class BSImagespaceShaderISExp`: VTable [0x00000000034454C8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISExp@@` -`class BSImagespaceShaderISIBLensFlares`: VTable [0x0000000003445578, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISIBLensFlares@@` -`class BSImagespaceShaderISIBLensFlares`: VTable [0x0000000003445630, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISIBLensFlares@@` -`class BSImagespaceShaderISIBLensFlares`: VTable [0x0000000003445650, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISIBLensFlares@@` -`class BSImagespaceShaderISIBLensFlares`: VTable [0x0000000003445668, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISIBLensFlares@@` -`class BSImagespaceShaderISLightingComposite`: VTable [0x00000000034458C8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISLightingComposite@@` -`class BSImagespaceShaderISLightingComposite`: VTable [0x0000000003445980, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISLightingComposite@@` -`class BSImagespaceShaderISLightingComposite`: VTable [0x00000000034459A0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISLightingComposite@@` -`class BSImagespaceShaderISLightingComposite`: VTable [0x00000000034459B8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISLightingComposite@@` -`class BSImagespaceShaderISLightingCompositeNoDirectionalLight`: VTable [0x0000000003445AF0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISLightingCompositeNoDirectionalLight@@` -`class BSImagespaceShaderISLightingCompositeNoDirectionalLight`: VTable [0x0000000003445BA8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISLightingCompositeNoDirectionalLight@@` -`class BSImagespaceShaderISLightingCompositeNoDirectionalLight`: VTable [0x0000000003445BC8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISLightingCompositeNoDirectionalLight@@` -`class BSImagespaceShaderISLightingCompositeNoDirectionalLight`: VTable [0x0000000003445BE0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISLightingCompositeNoDirectionalLight@@` -`class BSImagespaceShaderISLightingCompositeMenu`: VTable [0x0000000003445CD0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISLightingCompositeMenu@@` -`class BSImagespaceShaderISLightingCompositeMenu`: VTable [0x0000000003445D88, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISLightingCompositeMenu@@` -`class BSImagespaceShaderISLightingCompositeMenu`: VTable [0x0000000003445DA8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISLightingCompositeMenu@@` -`class BSImagespaceShaderISLightingCompositeMenu`: VTable [0x0000000003445DC0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISLightingCompositeMenu@@` -`class BSImagespaceShaderISPerlinNoiseCS`: VTable [0x0000000003445E98, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISPerlinNoiseCS@@` -`class BSImagespaceShaderISPerlinNoiseCS`: VTable [0x0000000003445F50, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISPerlinNoiseCS@@` -`class BSImagespaceShaderISPerlinNoiseCS`: VTable [0x0000000003445F70, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISPerlinNoiseCS@@` -`class BSImagespaceShaderISPerlinNoiseCS`: VTable [0x0000000003445F88, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISPerlinNoiseCS@@` -`class BSImagespaceShaderISPerlinNoise2DCS`: VTable [0x0000000003446068, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISPerlinNoise2DCS@@` -`class BSImagespaceShaderISPerlinNoise2DCS`: VTable [0x0000000003446120, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISPerlinNoise2DCS@@` -`class BSImagespaceShaderISPerlinNoise2DCS`: VTable [0x0000000003446140, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISPerlinNoise2DCS@@` -`class BSImagespaceShaderISPerlinNoise2DCS`: VTable [0x0000000003446158, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISPerlinNoise2DCS@@` -`class BSImagespaceShaderReflectionsRayTracing`: VTable [0x0000000003446228, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderReflectionsRayTracing@@` -`class BSImagespaceShaderReflectionsRayTracing`: VTable [0x00000000034462E0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderReflectionsRayTracing@@` -`class BSImagespaceShaderReflectionsRayTracing`: VTable [0x0000000003446300, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderReflectionsRayTracing@@` -`class BSImagespaceShaderReflectionsRayTracing`: VTable [0x0000000003446318, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderReflectionsRayTracing@@` -`class BSImagespaceShaderReflectionsDebugSpecMask`: VTable [0x0000000003446440, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderReflectionsDebugSpecMask@@` -`class BSImagespaceShaderReflectionsDebugSpecMask`: VTable [0x00000000034464F8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderReflectionsDebugSpecMask@@` -`class BSImagespaceShaderReflectionsDebugSpecMask`: VTable [0x0000000003446518, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderReflectionsDebugSpecMask@@` -`class BSImagespaceShaderReflectionsDebugSpecMask`: VTable [0x0000000003446530, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderReflectionsDebugSpecMask@@` -`class BSImagespaceShaderISSAOBlurH`: VTable [0x0000000003446610, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOBlurH@@` -`class BSImagespaceShaderISSAOBlurH`: VTable [0x00000000034466C8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOBlurH@@` -`class BSImagespaceShaderISSAOBlurH`: VTable [0x00000000034466E8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOBlurH@@` -`class BSImagespaceShaderISSAOBlurH`: VTable [0x0000000003446700, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOBlurH@@` -`class BSImagespaceShaderISSAOBlurV`: VTable [0x00000000034467D8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOBlurV@@` -`class BSImagespaceShaderISSAOBlurV`: VTable [0x0000000003446890, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOBlurV@@` -`class BSImagespaceShaderISSAOBlurV`: VTable [0x00000000034468B0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOBlurV@@` -`class BSImagespaceShaderISSAOBlurV`: VTable [0x00000000034468C8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOBlurV@@` -`class BSImagespaceShaderISSAOBlurHCS`: VTable [0x0000000003446980, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOBlurHCS@@` -`class BSImagespaceShaderISSAOBlurHCS`: VTable [0x0000000003446A38, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOBlurHCS@@` -`class BSImagespaceShaderISSAOBlurHCS`: VTable [0x0000000003446A58, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOBlurHCS@@` -`class BSImagespaceShaderISSAOBlurHCS`: VTable [0x0000000003446A70, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOBlurHCS@@` -`class BSImagespaceShaderISSAOBlurVCS`: VTable [0x0000000003446B48, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOBlurVCS@@` -`class BSImagespaceShaderISSAOBlurVCS`: VTable [0x0000000003446C00, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOBlurVCS@@` -`class BSImagespaceShaderISSAOBlurVCS`: VTable [0x0000000003446C20, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOBlurVCS@@` -`class BSImagespaceShaderISSAOBlurVCS`: VTable [0x0000000003446C38, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOBlurVCS@@` -`class BSImagespaceShaderISSAOCameraZ`: VTable [0x0000000003446CF0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCameraZ@@` -`class BSImagespaceShaderISSAOCameraZ`: VTable [0x0000000003446DA8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCameraZ@@` -`class BSImagespaceShaderISSAOCameraZ`: VTable [0x0000000003446DC8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCameraZ@@` -`class BSImagespaceShaderISSAOCameraZ`: VTable [0x0000000003446DE0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCameraZ@@` -`class BSImagespaceShaderISSAOCameraZAndMipsCS`: VTable [0x0000000003446EA0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCameraZAndMipsCS@@` -`class BSImagespaceShaderISSAOCameraZAndMipsCS`: VTable [0x0000000003446F58, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCameraZAndMipsCS@@` -`class BSImagespaceShaderISSAOCameraZAndMipsCS`: VTable [0x0000000003446F78, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCameraZAndMipsCS@@` -`class BSImagespaceShaderISSAOCameraZAndMipsCS`: VTable [0x0000000003446F90, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCameraZAndMipsCS@@` -`class BSImagespaceShaderISSAOCompositeSAO`: VTable [0x0000000003447088, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCompositeSAO@@` -`class BSImagespaceShaderISSAOCompositeSAO`: VTable [0x0000000003447140, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCompositeSAO@@` -`class BSImagespaceShaderISSAOCompositeSAO`: VTable [0x0000000003447160, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCompositeSAO@@` -`class BSImagespaceShaderISSAOCompositeSAO`: VTable [0x0000000003447178, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCompositeSAO@@` -`class BSImagespaceShaderISSAOCompositeFog`: VTable [0x0000000003447340, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCompositeFog@@` -`class BSImagespaceShaderISSAOCompositeFog`: VTable [0x00000000034473F8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCompositeFog@@` -`class BSImagespaceShaderISSAOCompositeFog`: VTable [0x0000000003447418, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCompositeFog@@` -`class BSImagespaceShaderISSAOCompositeFog`: VTable [0x0000000003447430, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCompositeFog@@` -`class BSImagespaceShaderISSAOCompositeSAOFog`: VTable [0x0000000003447500, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCompositeSAOFog@@` -`class BSImagespaceShaderISSAOCompositeSAOFog`: VTable [0x00000000034475B8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCompositeSAOFog@@` -`class BSImagespaceShaderISSAOCompositeSAOFog`: VTable [0x00000000034475D8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCompositeSAOFog@@` -`class BSImagespaceShaderISSAOCompositeSAOFog`: VTable [0x00000000034475F0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCompositeSAOFog@@` -`class BSImagespaceShaderISMinify`: VTable [0x00000000034476B8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISMinify@@` -`class BSImagespaceShaderISMinify`: VTable [0x0000000003447770, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISMinify@@` -`class BSImagespaceShaderISMinify`: VTable [0x0000000003447790, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISMinify@@` -`class BSImagespaceShaderISMinify`: VTable [0x00000000034477A8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISMinify@@` -`class BSImagespaceShaderISMinifyContrast`: VTable [0x00000000034478B8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISMinifyContrast@@` -`class BSImagespaceShaderISMinifyContrast`: VTable [0x0000000003447970, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISMinifyContrast@@` -`class BSImagespaceShaderISMinifyContrast`: VTable [0x0000000003447990, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISMinifyContrast@@` -`class BSImagespaceShaderISMinifyContrast`: VTable [0x00000000034479A8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISMinifyContrast@@` -`class BSImagespaceShaderISSAORawAO`: VTable [0x0000000003447A88, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAORawAO@@` -`class BSImagespaceShaderISSAORawAO`: VTable [0x0000000003447B40, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAORawAO@@` -`class BSImagespaceShaderISSAORawAO`: VTable [0x0000000003447B60, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAORawAO@@` -`class BSImagespaceShaderISSAORawAO`: VTable [0x0000000003447B78, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAORawAO@@` -`class BSImagespaceShaderISSAORawAONoTemporal`: VTable [0x0000000003447CB8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAORawAONoTemporal@@` -`class BSImagespaceShaderISSAORawAONoTemporal`: VTable [0x0000000003447D70, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAORawAONoTemporal@@` -`class BSImagespaceShaderISSAORawAONoTemporal`: VTable [0x0000000003447D90, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAORawAONoTemporal@@` -`class BSImagespaceShaderISSAORawAONoTemporal`: VTable [0x0000000003447DA8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAORawAONoTemporal@@` -`class BSImagespaceShaderISSAORawAOCS`: VTable [0x0000000003447E70, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAORawAOCS@@` -`class BSImagespaceShaderISSAORawAOCS`: VTable [0x0000000003447F28, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAORawAOCS@@` -`class BSImagespaceShaderISSAORawAOCS`: VTable [0x0000000003447F48, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAORawAOCS@@` -`class BSImagespaceShaderISSAORawAOCS`: VTable [0x0000000003447F60, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAORawAOCS@@` -`class BSImagespaceShaderISSILComposite`: VTable [0x0000000003448030, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSILComposite@@` -`class BSImagespaceShaderISSILComposite`: VTable [0x00000000034480E8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSILComposite@@` -`class BSImagespaceShaderISSILComposite`: VTable [0x0000000003448108, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSILComposite@@` -`class BSImagespaceShaderISSILComposite`: VTable [0x0000000003448120, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSILComposite@@` -`class BSImagespaceShaderISSILRawInd`: VTable [0x00000000034481E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSILRawInd@@` -`class BSImagespaceShaderISSILRawInd`: VTable [0x00000000034482A0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSILRawInd@@` -`class BSImagespaceShaderISSILRawInd`: VTable [0x00000000034482C0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSILRawInd@@` -`class BSImagespaceShaderISSILRawInd`: VTable [0x00000000034482D8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSILRawInd@@` -`class BSImagespaceShaderISSimpleColor`: VTable [0x00000000034483C8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSimpleColor@@` -`class BSImagespaceShaderISSimpleColor`: VTable [0x0000000003448480, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSimpleColor@@` -`class BSImagespaceShaderISSimpleColor`: VTable [0x00000000034484A0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSimpleColor@@` -`class BSImagespaceShaderISSimpleColor`: VTable [0x00000000034484B8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSimpleColor@@` -`class BSImagespaceShaderISDisplayDepth`: VTable [0x0000000003448580, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDisplayDepth@@` -`class BSImagespaceShaderISDisplayDepth`: VTable [0x0000000003448638, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDisplayDepth@@` -`class BSImagespaceShaderISDisplayDepth`: VTable [0x0000000003448658, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDisplayDepth@@` -`class BSImagespaceShaderISDisplayDepth`: VTable [0x0000000003448670, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDisplayDepth@@` -`class BSImagespaceShaderISSnowSSS`: VTable [0x0000000003448738, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSnowSSS@@` -`class BSImagespaceShaderISSnowSSS`: VTable [0x00000000034487F0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSnowSSS@@` -`class BSImagespaceShaderISSnowSSS`: VTable [0x0000000003448810, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSnowSSS@@` -`class BSImagespaceShaderISSnowSSS`: VTable [0x0000000003448828, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSnowSSS@@` -`class BSImagespaceShaderISTemporalAA`: VTable [0x0000000003448918, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISTemporalAA@@` -`class BSImagespaceShaderISTemporalAA`: VTable [0x00000000034489D0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISTemporalAA@@` -`class BSImagespaceShaderISTemporalAA`: VTable [0x00000000034489F0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISTemporalAA@@` -`class BSImagespaceShaderISTemporalAA`: VTable [0x0000000003448A08, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISTemporalAA@@` -`class BSImagespaceShaderISTemporalAA_UI`: VTable [0x0000000003448BF8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISTemporalAA_UI@@` -`class BSImagespaceShaderISTemporalAA_UI`: VTable [0x0000000003448CB0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISTemporalAA_UI@@` -`class BSImagespaceShaderISTemporalAA_UI`: VTable [0x0000000003448CD0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISTemporalAA_UI@@` -`class BSImagespaceShaderISTemporalAA_UI`: VTable [0x0000000003448CE8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISTemporalAA_UI@@` -`class BSImagespaceShaderISTemporalAA_Water`: VTable [0x0000000003448DA8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISTemporalAA_Water@@` -`class BSImagespaceShaderISTemporalAA_Water`: VTable [0x0000000003448E60, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISTemporalAA_Water@@` -`class BSImagespaceShaderISTemporalAA_Water`: VTable [0x0000000003448E80, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISTemporalAA_Water@@` -`class BSImagespaceShaderISTemporalAA_Water`: VTable [0x0000000003448E98, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISTemporalAA_Water@@` -`class BSImagespaceShaderISUpsampleDynamicResolution`: VTable [0x0000000003448F70, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISUpsampleDynamicResolution@@` -`class BSImagespaceShaderISUpsampleDynamicResolution`: VTable [0x0000000003449028, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISUpsampleDynamicResolution@@` -`class BSImagespaceShaderISUpsampleDynamicResolution`: VTable [0x0000000003449048, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISUpsampleDynamicResolution@@` -`class BSImagespaceShaderISUpsampleDynamicResolution`: VTable [0x0000000003449060, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISUpsampleDynamicResolution@@` -`class BSImagespaceShaderISWaterBlend`: VTable [0x0000000003449158, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISWaterBlend@@` -`class BSImagespaceShaderISWaterBlend`: VTable [0x0000000003449210, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISWaterBlend@@` -`class BSImagespaceShaderISWaterBlend`: VTable [0x0000000003449230, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISWaterBlend@@` -`class BSImagespaceShaderISWaterBlend`: VTable [0x0000000003449248, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISWaterBlend@@` -`class BSImagespaceShaderISUnderwaterMask`: VTable [0x0000000003449330, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISUnderwaterMask@@` -`class BSImagespaceShaderISUnderwaterMask`: VTable [0x00000000034493E8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISUnderwaterMask@@` -`class BSImagespaceShaderISUnderwaterMask`: VTable [0x0000000003449408, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISUnderwaterMask@@` -`class BSImagespaceShaderISUnderwaterMask`: VTable [0x0000000003449420, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISUnderwaterMask@@` -`class ShadowSceneNode`: VTable [0x0000000003449F88, 0x0000000000000000 offset, 64 functions] `.?AVShadowSceneNode@@` -`class BSMapBase`: VTable [0x000000000344A9E8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEBVBSFadeNode@@I@@` -`class BSMap`: VTable [0x000000000344AA38, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEBVBSFadeNode@@I@@` -`class BSShaderAccumulator`: VTable [0x000000000344AA88, 0x0000000000000000 offset, 47 functions] `.?AVBSShaderAccumulator@@` -`class BSWaterShaderProperty`: VTable [0x000000000344D130, 0x0000000000000000 offset, 65 functions] `.?AVBSWaterShaderProperty@@` -`class BSEffectShaderMaterial`: VTable [0x000000000344D4F0, 0x0000000000000000 offset, 9 functions] `.?AVBSEffectShaderMaterial@@` -`class BSBatchRenderer`: VTable [0x000000000344E920, 0x0000000000000000 offset, 4 functions] `.?AVBSBatchRenderer@@` -`class BSLight`: VTable [0x000000000344F220, 0x0000000000000000 offset, 4 functions] `.?AVBSLight@@` -`class BSShadowDirectionalLight`: VTable [0x0000000003450008, 0x0000000000000000 offset, 17 functions] `.?AVBSShadowDirectionalLight@@` -`class BSGeometryListCullingProcess`: VTable [0x00000000034500B8, 0x0000000000000000 offset, 29 functions] `.?AVBSGeometryListCullingProcess@@` -`class ImageSpaceEffectHDR`: VTable [0x00000000034509B0, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectHDR@@` -`class BSShadowLight`: VTable [0x0000000003451150, 0x0000000000000000 offset, 17 functions] `.?AVBSShadowLight@@` -`class BSUtilityShader`: VTable [0x0000000003451680, 0x0000000000000000 offset, 12 functions] `.?AVBSUtilityShader@@` -`class BSUtilityShader`: VTable [0x0000000003451700, 0x0000000000000010 offset, 2 functions] `.?AVBSUtilityShader@@` -`class BSUtilityShader`: VTable [0x0000000003451720, 0x0000000000000018 offset, 1 functions] `.?AVBSUtilityShader@@` -`class BSShaderMaterial`: VTable [0x0000000003452DE0, 0x0000000000000000 offset, 9 functions] `.?AVBSShaderMaterial@@` -`class BSLightingShader`: VTable [0x00000000034537B0, 0x0000000000000000 offset, 12 functions] `.?AVBSLightingShader@@` -`class BSLightingShader`: VTable [0x0000000003453830, 0x0000000000000010 offset, 2 functions] `.?AVBSLightingShader@@` -`class BSLightingShader`: VTable [0x0000000003453850, 0x0000000000000018 offset, 1 functions] `.?AVBSLightingShader@@` -`class BSLightingShaderMaterialBase`: VTable [0x00000000034545A8, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialBase@@` -`class BSLightingShaderMaterialEnvmap`: VTable [0x0000000003454650, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialEnvmap@@` -`class BSLightingShaderMaterialEye`: VTable [0x00000000034546F8, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialEye@@` -`class BSLightingShaderMaterialGlowmap`: VTable [0x00000000034547A0, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialGlowmap@@` -`class BSLightingShaderMaterialParallax`: VTable [0x0000000003454848, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialParallax@@` -`class BSLightingShaderMaterialParallaxOcc`: VTable [0x00000000034548F0, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialParallaxOcc@@` -`class BSLightingShaderMaterialFacegen`: VTable [0x0000000003454998, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialFacegen@@` -`class BSLightingShaderMaterialFacegenTint`: VTable [0x0000000003454A40, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialFacegenTint@@` -`class BSLightingShaderMaterialHairTint`: VTable [0x0000000003454AE8, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialHairTint@@` -`class BSLightingShaderMaterialLandscape`: VTable [0x0000000003454B90, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialLandscape@@` -`class BSLightingShaderMaterialLODLandscape`: VTable [0x0000000003454C38, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialLODLandscape@@` -`class BSLightingShaderMaterialSnow`: VTable [0x0000000003454CE0, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialSnow@@` -`class BSLightingShaderMaterialMultiLayerParallax`: VTable [0x0000000003454D88, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialMultiLayerParallax@@` -`class BSLeafAnimNode`: VTable [0x00000000034557A0, 0x0000000000000000 offset, 66 functions] `.?AVBSLeafAnimNode@@` -`class BSTreeNode`: VTable [0x0000000003455DB8, 0x0000000000000000 offset, 66 functions] `.?AVBSTreeNode@@` -`class ImageSpaceEffectParam`: VTable [0x0000000003456368, 0x0000000000000000 offset, 1 functions] `.?AVImageSpaceEffectParam@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003456380, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiTexture@@@@V?$NiTNewInterface@V?$NiPointer@VNiTexture@@@@@@@@` -`class NiTObjectArray >`: VTable [0x0000000003456398, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiTexture@@@@@@` -`class NiTArray >`: VTable [0x00000000034563B0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@W4TextureFilterMode@BSGraphics@@V?$NiTMallocInterface@W4TextureFilterMode@BSGraphics@@@@@@` -`class NiTPrimitiveArray`: VTable [0x00000000034563C8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@W4TextureFilterMode@BSGraphics@@@@` -`class ImageSpaceShaderParam`: VTable [0x00000000034563E0, 0x0000000000000000 offset, 1 functions] `.?AVImageSpaceShaderParam@@` -`class NiTArray >`: VTable [0x0000000003456A98, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@_NV?$NiTMallocInterface@_N@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003456AB0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@_N@@` -`class ImageSpaceEffectOption`: VTable [0x0000000003456AC8, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectOption@@` -`class ImageSpaceEffectDepthOfField`: VTable [0x0000000003456B40, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectDepthOfField@@` -`class BSParticleShaderProperty`: VTable [0x0000000003458F08, 0x0000000000000000 offset, 65 functions] `.?AVBSParticleShaderProperty@@` -`class BSSkyShader`: VTable [0x0000000003459310, 0x0000000000000000 offset, 12 functions] `.?AVBSSkyShader@@` -`class BSSkyShader`: VTable [0x0000000003459390, 0x0000000000000010 offset, 2 functions] `.?AVBSSkyShader@@` -`class BSSkyShader`: VTable [0x00000000034593B0, 0x0000000000000018 offset, 1 functions] `.?AVBSSkyShader@@` -`class BSSkyShaderProperty`: VTable [0x00000000034595E0, 0x0000000000000000 offset, 65 functions] `.?AVBSSkyShaderProperty@@` -`class NiTArray >`: VTable [0x0000000003459C78, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVImageSpaceEffectParam@@V?$NiTMallocInterface@PEAVImageSpaceEffectParam@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003459C90, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVImageSpaceEffectParam@@@@` -`class NiTArray >`: VTable [0x0000000003459CA8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVImageSpaceTexture@@V?$NiTMallocInterface@PEAVImageSpaceTexture@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003459CC0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVImageSpaceTexture@@@@` -`class NiTArray >`: VTable [0x0000000003459CD8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVEffectInput@ImageSpaceEffect@@V?$NiTMallocInterface@PEAVEffectInput@ImageSpaceEffect@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003459CF0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVEffectInput@ImageSpaceEffect@@@@` -`class NiTArray >`: VTable [0x0000000003459D08, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@HV?$NiTMallocInterface@H@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003459D20, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@H@@` -`class ImageSpaceEffect`: VTable [0x0000000003459D38, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffect@@` -`class BSEffectShader`: VTable [0x000000000345A068, 0x0000000000000000 offset, 12 functions] `.?AVBSEffectShader@@` -`class BSEffectShader`: VTable [0x000000000345A0E8, 0x0000000000000010 offset, 2 functions] `.?AVBSEffectShader@@` -`class BSEffectShader`: VTable [0x000000000345A108, 0x0000000000000018 offset, 1 functions] `.?AVBSEffectShader@@` -`class BSDistantTreeShaderProperty`: VTable [0x000000000345A358, 0x0000000000000000 offset, 65 functions] `.?AVBSDistantTreeShaderProperty@@` -`class BSDistantTreeShader`: VTable [0x000000000345A660, 0x0000000000000000 offset, 12 functions] `.?AVBSDistantTreeShader@@` -`class BSDistantTreeShader`: VTable [0x000000000345A6E0, 0x0000000000000010 offset, 2 functions] `.?AVBSDistantTreeShader@@` -`class BSDistantTreeShader`: VTable [0x000000000345A700, 0x0000000000000018 offset, 1 functions] `.?AVBSDistantTreeShader@@` -`class BSCubeMapCamera`: VTable [0x000000000345A8E0, 0x0000000000000000 offset, 56 functions] `.?AVBSCubeMapCamera@@` -`class BSWaterShaderMaterial`: VTable [0x000000000345ABF8, 0x0000000000000000 offset, 9 functions] `.?AVBSWaterShaderMaterial@@` -`class BSWaterShader`: VTable [0x000000000345AF28, 0x0000000000000000 offset, 12 functions] `.?AVBSWaterShader@@` -`class BSWaterShader`: VTable [0x000000000345AFA8, 0x0000000000000010 offset, 2 functions] `.?AVBSWaterShader@@` -`class BSWaterShader`: VTable [0x000000000345AFC8, 0x0000000000000018 offset, 1 functions] `.?AVBSWaterShader@@` -`class NiThreadProcedure`: VTable [0x000000000345B180, 0x0000000000000000 offset, 2 functions] `.?AVNiThreadProcedure@@` -`class NiMemStream`: VTable [0x000000000345B230, 0x0000000000000000 offset, 6 functions] `.?AVNiMemStream@@` -`class BSOrderedNode`: VTable [0x000000000345B6D0, 0x0000000000000000 offset, 64 functions] `.?AVBSOrderedNode@@` -`class NiBoneMatrixSetterI`: VTable [0x000000000345BB70, 0x0000000000000000 offset, 2 functions] `.?AVNiBoneMatrixSetterI@@` -`class BSReloadShaderI`: VTable [0x000000000345BB90, 0x0000000000000000 offset, 1 functions] `.?AVBSReloadShaderI@@` -`class BSShader`: VTable [0x000000000345BBA8, 0x0000000000000000 offset, 12 functions] `.?AVBSShader@@` -`class BSShader`: VTable [0x000000000345BC28, 0x0000000000000010 offset, 2 functions] `.?AVBSShader@@` -`class BSShader`: VTable [0x000000000345BC48, 0x0000000000000018 offset, 1 functions] `.?AVBSShader@@` -`class BSImagespaceShader`: VTable [0x000000000345BF48, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShader@@` -`class BSImagespaceShader`: VTable [0x000000000345C000, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShader@@` -`class BSImagespaceShader`: VTable [0x000000000345C020, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShader@@` -`class BSImagespaceShader`: VTable [0x000000000345C038, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShader@@` -`class BSComputeShader`: VTable [0x000000000345C3D0, 0x0000000000000000 offset, 3 functions] `.?AVBSComputeShader@@` -`class BSComputeShader`: VTable [0x000000000345C3F8, 0x0000000000000010 offset, 1 functions] `.?AVBSComputeShader@@` -`class BSMultiIndexTriShape`: VTable [0x000000000345C8C8, 0x0000000000000000 offset, 58 functions] `.?AVBSMultiIndexTriShape@@` -`class BSBloodSplatterShader`: VTable [0x000000000345CBB8, 0x0000000000000000 offset, 12 functions] `.?AVBSBloodSplatterShader@@` -`class BSBloodSplatterShader`: VTable [0x000000000345CC38, 0x0000000000000010 offset, 2 functions] `.?AVBSBloodSplatterShader@@` -`class BSBloodSplatterShader`: VTable [0x000000000345CC58, 0x0000000000000018 offset, 1 functions] `.?AVBSBloodSplatterShader@@` -`class BSParticleShader`: VTable [0x000000000345CE60, 0x0000000000000000 offset, 12 functions] `.?AVBSParticleShader@@` -`class BSParticleShader`: VTable [0x000000000345CEE0, 0x0000000000000010 offset, 2 functions] `.?AVBSParticleShader@@` -`class BSParticleShader`: VTable [0x000000000345CF00, 0x0000000000000018 offset, 1 functions] `.?AVBSParticleShader@@` -`class BSLightingShaderPropertyFloatController`: VTable [0x000000000345D060, 0x0000000000000000 offset, 64 functions] `.?AVBSLightingShaderPropertyFloatController@@` -`class BSLightingShaderPropertyUShortController`: VTable [0x000000000345D3C8, 0x0000000000000000 offset, 64 functions] `.?AVBSLightingShaderPropertyUShortController@@` -`class BSLightingShaderPropertyColorController`: VTable [0x000000000345D748, 0x0000000000000000 offset, 64 functions] `.?AVBSLightingShaderPropertyColorController@@` -`class BSEffectShaderPropertyFloatController`: VTable [0x000000000345DB08, 0x0000000000000000 offset, 64 functions] `.?AVBSEffectShaderPropertyFloatController@@` -`class BSEffectShaderPropertyColorController`: VTable [0x000000000345DE40, 0x0000000000000000 offset, 64 functions] `.?AVBSEffectShaderPropertyColorController@@` -`class BSNiAlphaPropertyTestRefController`: VTable [0x000000000345E178, 0x0000000000000000 offset, 64 functions] `.?AVBSNiAlphaPropertyTestRefController@@` -`class BSPSysSimpleColorModifier`: VTable [0x000000000345E4A8, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysSimpleColorModifier@@` -`class BSPSysLODModifier`: VTable [0x000000000345E8B0, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysLODModifier@@` -`class IRendererResourceManager`: VTable [0x000000000345EB40, 0x0000000000000000 offset, 40 functions] `.?AVIRendererResourceManager@@` -`class BSShaderResourceManager`: VTable [0x000000000345ECD0, 0x0000000000000000 offset, 40 functions] `.?AVBSShaderResourceManager@@` -`class ImageSpaceEffectRefraction`: VTable [0x000000000345F8F8, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectRefraction@@` -`class ImageSpaceEffectGetHit`: VTable [0x000000000345FA38, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectGetHit@@` -`class ImageSpaceEffectBlur`: VTable [0x000000000345FBF0, 0x0000000000000000 offset, 14 functions] `.?AVImageSpaceEffectBlur@@` -`class ImageSpaceEffectFullScreenBlur`: VTable [0x000000000345FCE8, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectFullScreenBlur@@` -`class ImageSpaceEffectMap`: VTable [0x000000000345FDD8, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectMap@@` -`class ImageSpaceEffectWorldMap`: VTable [0x000000000345FEF8, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectWorldMap@@` -`class ImageSpaceEffectRadialBlur`: VTable [0x00000000034600D8, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectRadialBlur@@` -`class ImageSpaceEffectNoise`: VTable [0x0000000003460218, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectNoise@@` -`class ImageSpaceEffectWaterDisplacement`: VTable [0x0000000003460430, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectWaterDisplacement@@` -`class ImageSpaceEffectVolumetricLighting`: VTable [0x0000000003460690, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectVolumetricLighting@@` -`class BSParabolicCullingProcess`: VTable [0x00000000034619D8, 0x0000000000000000 offset, 29 functions] `.?AVBSParabolicCullingProcess@@` -`class BSShadowFrustumLight`: VTable [0x0000000003461CD0, 0x0000000000000000 offset, 17 functions] `.?AVBSShadowFrustumLight@@` -`class BSShadowParabolicLight`: VTable [0x0000000003461F40, 0x0000000000000000 offset, 17 functions] `.?AVBSShadowParabolicLight@@` -`class BSLODMultiIndexTriShape`: VTable [0x0000000003462238, 0x0000000000000000 offset, 58 functions] `.?AVBSLODMultiIndexTriShape@@` -`class BSMeshLODTriShape`: VTable [0x0000000003463538, 0x0000000000000000 offset, 58 functions] `.?AVBSMeshLODTriShape@@` -`class BSSubIndexLandTriShape`: VTable [0x0000000003463808, 0x0000000000000000 offset, 58 functions] `.?AVBSSubIndexLandTriShape@@` -`class BSSceneGraph`: VTable [0x0000000003465060, 0x0000000000000000 offset, 67 functions] `.?AVBSSceneGraph@@` -`class BSSystemMonitor::SocketThread`: VTable [0x0000000003465A78, 0x0000000000000000 offset, 3 functions] `.?AVSocketThread@BSSystemMonitor@@` -`class BSSystemMonitor::MemOpsThread`: VTable [0x0000000003465AA0, 0x0000000000000000 offset, 3 functions] `.?AVMemOpsThread@BSSystemMonitor@@` -`class `anonymous namespace'::MemoryBlockSender`: VTable [0x0000000003465B10, 0x0000000000000000 offset, 6 functions] `.?AVMemoryBlockSender@?A0x5e0b0c69@@` -`class BSGameDataSystemUtility`: VTable [0x00000000034660E8, 0x0000000000000000 offset, 6 functions] `.?AVBSGameDataSystemUtility@@` -`class CCallback`: VTable [0x0000000003466160, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallback@VBSWin32SystemUtility@@UGameOverlayActivated_t@@$0A@@@` -`class CCallResult`: VTable [0x0000000003466188, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBSWin32SystemUtility@@UEncryptedAppTicketResponse_t@@@@` -`class BSTEventSink`: VTable [0x0000000003466300, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UBSGamepadEvent@@@@` -`class BSSystemUtility`: VTable [0x0000000003466320, 0x0000000000000000 offset, 17 functions] `.?AVBSSystemUtility@@` -`class BSWin32SaveDataSystemUtility`: VTable [0x00000000034664A8, 0x0000000000000000 offset, 18 functions] `.?AVBSWin32SaveDataSystemUtility@@` -`class BSWin32SystemUtility`: VTable [0x0000000003466560, 0x0000000000000000 offset, 17 functions] `.?AVBSWin32SystemUtility@@` -`class BSCacheDriveSystemUtility`: VTable [0x0000000003466640, 0x0000000000000000 offset, 4 functions] `.?AVBSCacheDriveSystemUtility@@` -`class BSSysInfoSystemUtility`: VTable [0x00000000034667C8, 0x0000000000000000 offset, 3 functions] `.?AVBSSysInfoSystemUtility@@` -`class BSSystemUtilitiesStrings`: VTable [0x0000000003466880, 0x0000000000000000 offset, 3 functions] `.?AVBSSystemUtilitiesStrings@@` -`class BSSaveDataSystemUtility::Entry`: VTable [0x00000000034669C8, 0x0000000000000000 offset, 1 functions] `.?AVEntry@BSSaveDataSystemUtility@@` -`class BSSaveDataSystemUtility`: VTable [0x00000000034669E0, 0x0000000000000000 offset, 18 functions] `.?AVBSSaveDataSystemUtility@@` -`class BSSaveDataSystemUtilityFile`: VTable [0x0000000003466E10, 0x0000000000000000 offset, 22 functions] `.?AVBSSaveDataSystemUtilityFile@@` -`class `anonymous namespace'::Win32FileType`: VTable [0x0000000003466F00, 0x0000000000000000 offset, 22 functions] `.?AVWin32FileType@?A0x72dcab58@@` -`class BSDiscBootSystemUtility`: VTable [0x0000000003467080, 0x0000000000000000 offset, 3 functions] `.?AVBSDiscBootSystemUtility@@` -`class type_info`: VTable [0x0000000003467BC0, 0x0000000000000000 offset, 1 functions] `.?AVtype_info@@` -`class BSSocketServer`: VTable [0x0000000003468368, 0x0000000000000000 offset, 4 functions] `.?AVBSSocketServer@@` diff --git a/Stuffs/rtti_se_1_6_1378_1.txt b/Stuffs/rtti_se_1_6_1378_1.txt new file mode 100644 index 00000000..e0448780 --- /dev/null +++ b/Stuffs/rtti_se_1_6_1378_1.txt @@ -0,0 +1,5518 @@ +`struct BSTArrayBase::IAllocatorFunctor`: VTable [0x0000000002F4F8F8, 0x0000000000000000 offset, 4 functions] `.?AUIAllocatorFunctor@BSTArrayBase@@` +`class Dialog::BaseDialog`: VTable [0x0000000002F4F940, 0x0000000000000000 offset, 3 functions] `.?AVBaseDialog@Dialog@@` +`struct BSTArrayAllocatorFunctor`: VTable [0x0000000002F4FB78, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@VBSTArrayHeapAllocator@@@@` +`class Json::FastWriter`: VTable [0x0000000002F4FEB0, 0x0000000000000000 offset, 2 functions] `.?AVFastWriter@Json@@` +`class IFormFactory`: VTable [0x0000000002F50368, 0x0000000000000000 offset, 7 functions] `.?AVIFormFactory@@` +`class BGSLensFlare`: VTable [0x0000000002F503D0, 0x0000000000000000 offset, 101 functions] `.?AVBGSLensFlare@@` +`class ConcreteFormFactory`: VTable [0x0000000002F507A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSLensFlare@@$0IH@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002F507F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSLensFlare@@$0IH@$0GH@$05@@` +`class NiRefObject`: VTable [0x0000000002F50A98, 0x0000000000000000 offset, 2 functions] `.?AVNiRefObject@@` +`class BSLensFlareSpriteRenderData`: VTable [0x0000000002F50AB8, 0x0000000000000000 offset, 3 functions] `.?AVBSLensFlareSpriteRenderData@@` +`class BGSLensFlareSprite`: VTable [0x0000000002F50AE0, 0x0000000000000000 offset, 3 functions] `.?AVBGSLensFlareSprite@@` +`class BGSVolumetricLighting`: VTable [0x0000000002F50CB8, 0x0000000000000000 offset, 101 functions] `.?AVBGSVolumetricLighting@@` +`class ConcreteFormFactory`: VTable [0x0000000002F51090, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSVolumetricLighting@@$0IJ@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002F510E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSVolumetricLighting@@$0IJ@$0GJ@$05@@` +`class NiTMapBase >,char const * __ptr64,class ArchiveFileData * __ptr64>`: VTable [0x0000000002F52DC0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEBDPEAVArchiveFileData@@@@@@PEBDPEAVArchiveFileData@@@@` +`class NiTMap`: VTable [0x0000000002F52E10, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEBDPEAVArchiveFileData@@@@` +`class NiTStringTemplateMap,class ArchiveFileData * __ptr64>`: VTable [0x0000000002F52E60, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTMap@PEBDPEAVArchiveFileData@@@@PEAVArchiveFileData@@@@` +`class NiTStringMap`: VTable [0x0000000002F52EB0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringMap@PEAVArchiveFileData@@@@` +`class BSTCaseInsensitiveStringMap`: VTable [0x0000000002F52F00, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCaseInsensitiveStringMap@PEAVArchiveFileData@@@@` +`class NiTMapBase >,char const * __ptr64,class ArchiveFileOwner * __ptr64>`: VTable [0x0000000002F52F50, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEBDPEAVArchiveFileOwner@@@@@@PEBDPEAVArchiveFileOwner@@@@` +`class NiTMap`: VTable [0x0000000002F52FA0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEBDPEAVArchiveFileOwner@@@@` +`class NiTStringTemplateMap,class ArchiveFileOwner * __ptr64>`: VTable [0x0000000002F52FF0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTMap@PEBDPEAVArchiveFileOwner@@@@PEAVArchiveFileOwner@@@@` +`class NiTStringMap`: VTable [0x0000000002F53040, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringMap@PEAVArchiveFileOwner@@@@` +`class BSTCaseInsensitiveStringMap`: VTable [0x0000000002F53090, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCaseInsensitiveStringMap@PEAVArchiveFileOwner@@@@` +`class Dialog::ModalDialog`: VTable [0x0000000002F53CE0, 0x0000000000000000 offset, 3 functions] `.?AVModalDialog@Dialog@@` +`class AdminTasks::ITask`: VTable [0x0000000002F53D08, 0x0000000000000000 offset, 4 functions] `.?AVITask@AdminTasks@@` +`class AdminTasks::DllServerRegistrationTask`: VTable [0x0000000002F53D38, 0x0000000000000000 offset, 4 functions] `.?AVDllServerRegistrationTask@AdminTasks@@` +`class AdminTasks::RegisterDllServerRegistrationTask`: VTable [0x0000000002F53DE8, 0x0000000000000000 offset, 1 functions] `.?AVRegisterDllServerRegistrationTask@AdminTasks@@` +`class AdminTasks::`anonymous namespace'::QueryElevationDialog`: VTable [0x0000000002F53E00, 0x0000000000000000 offset, 3 functions] `.?AVQueryElevationDialog@?A0xaa84d462@AdminTasks@@` +`class AdminTasks::`anonymous namespace'::ErrorDlg`: VTable [0x0000000002F53E28, 0x0000000000000000 offset, 3 functions] `.?AVErrorDlg@?A0xaa84d462@AdminTasks@@` +`struct BSTArrayAllocatorFunctor`: VTable [0x0000000002F54198, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@VBSScrapArrayAllocator@@@@` +`class Setting`: VTable [0x0000000002F55200, 0x0000000000000000 offset, 2 functions] `.?AVSetting@@` +`class SettingCollection`: VTable [0x0000000002F55220, 0x0000000000000000 offset, 11 functions] `.?AV?$SettingCollection@VSetting@@@@` +`class SettingCollectionList`: VTable [0x0000000002F55298, 0x0000000000000000 offset, 11 functions] `.?AV?$SettingCollectionList@VSetting@@@@` +`class INISettingCollection`: VTable [0x0000000002F55310, 0x0000000000000000 offset, 11 functions] `.?AVINISettingCollection@@` +`class SettingT`: VTable [0x0000000002F55388, 0x0000000000000000 offset, 2 functions] `.?AV?$SettingT@VINISettingCollection@@@@` +`class BGSArchiveBrowser`: VTable [0x0000000002F55480, 0x0000000000000000 offset, 2 functions] `.?AVBGSArchiveBrowser@@` +`class std::basic_filebuf >`: VTable [0x0000000002F55CC0, 0x0000000000000000 offset, 15 functions] `.?AV?$basic_filebuf@DU?$char_traits@D@std@@@std@@` +`class std::basic_ofstream >`: VTable [0x0000000002F55D60, 0x00000000000000A8 offset, 1 functions] `.?AV?$basic_ofstream@DU?$char_traits@D@std@@@std@@` +`class std::basic_ifstream >`: VTable [0x0000000002F55E28, 0x00000000000000B0 offset, 1 functions] `.?AV?$basic_ifstream@DU?$char_traits@D@std@@@std@@` +`class std::_Func_impl_no_alloc,void,char const * __ptr64>`: VTable [0x0000000002F56180, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XPEBD@std@@` +`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002F561C8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` +`class std::_Func_impl_no_alloc,void,char const * __ptr64>`: VTable [0x0000000002F56210, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XPEBD@std@@` +`class std::_Func_impl_no_alloc,void,char const * __ptr64>`: VTable [0x0000000002F56258, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XPEBD@std@@` +`class std::_Func_impl_no_alloc`: VTable [0x0000000002F562F8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@P6A_NPEAUHWND__@@W4BNetPlatform@BSPlatform@@PEBD2@Z_NPEAU1@W423@PEBDPEBD@std@@` +`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002F56380, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` +`class `anonymous namespace'::IAutomatedProcessRunner`: VTable [0x0000000002F56720, 0x0000000000000000 offset, 2 functions] `.?AVIAutomatedProcessRunner@?A0x3ddba77a@@` +`class `anonymous namespace'::MasterfileOptimizer`: VTable [0x0000000002F56740, 0x0000000000000000 offset, 2 functions] `.?AVMasterfileOptimizer@?A0x3ddba77a@@` +`class `anonymous namespace'::DLCMasterfileOptimizer`: VTable [0x0000000002F56760, 0x0000000000000000 offset, 2 functions] `.?AVDLCMasterfileOptimizer@?A0x3ddba77a@@` +`class `anonymous namespace'::SEQExporter`: VTable [0x0000000002F56780, 0x0000000000000000 offset, 2 functions] `.?AVSEQExporter@?A0x3ddba77a@@` +`class `anonymous namespace'::ShaderListBuilder`: VTable [0x0000000002F567A0, 0x0000000000000000 offset, 2 functions] `.?AVShaderListBuilder@?A0x3ddba77a@@` +`class `anonymous namespace'::DialogueExporter`: VTable [0x0000000002F567C0, 0x0000000000000000 offset, 2 functions] `.?AVDialogueExporter@?A0x3ddba77a@@` +`class `anonymous namespace'::FaceGenDataExporter`: VTable [0x0000000002F567E0, 0x0000000000000000 offset, 2 functions] `.?AVFaceGenDataExporter@?A0x3ddba77a@@` +`class `anonymous namespace'::MasterfileTagifier`: VTable [0x0000000002F56800, 0x0000000000000000 offset, 2 functions] `.?AVMasterfileTagifier@?A0x3ddba77a@@` +`class `anonymous namespace'::MasterfileTextExporter`: VTable [0x0000000002F56828, 0x0000000000000000 offset, 2 functions] `.?AVMasterfileTextExporter@?A0x3ddba77a@@` +`class `anonymous namespace'::MasterfileDelocalizer`: VTable [0x0000000002F56848, 0x0000000000000000 offset, 2 functions] `.?AVMasterfileDelocalizer@?A0x3ddba77a@@` +`class `anonymous namespace'::NeededFileDumper`: VTable [0x0000000002F56868, 0x0000000000000000 offset, 2 functions] `.?AVNeededFileDumper@?A0x3ddba77a@@` +`class `anonymous namespace'::ESLConverter`: VTable [0x0000000002F568E0, 0x0000000000000000 offset, 2 functions] `.?AVESLConverter@?A0x3ddba77a@@` +`class INIPrefSettingCollection`: VTable [0x0000000002F571E8, 0x0000000000000000 offset, 11 functions] `.?AVINIPrefSettingCollection@@` +`class SettingT`: VTable [0x0000000002F57260, 0x0000000000000000 offset, 2 functions] `.?AV?$SettingT@VINIPrefSettingCollection@@@@` +`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002F574B0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` +`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002F574F8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` +`class BSPlatform::BSUserContent`: VTable [0x0000000002F583B0, 0x0000000000000000 offset, 2 functions] `.?AVBSUserContent@BSPlatform@@` +`class BGSBNetMarketPlaceCreationSelect`: VTable [0x0000000002F583D0, 0x0000000000000000 offset, 3 functions] `.?AVBGSBNetMarketPlaceCreationSelect@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x0000000002F58728, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSPlatform::BSUserContent const & __ptr64>`: VTable [0x0000000002F58770, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBVBSUserContent@3@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSPlatform::BSUserContent const & __ptr64>`: VTable [0x0000000002F587B8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBVBSUserContent@3@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x0000000002F58800, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002F58848, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` +`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002F58890, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` +`class std::basic_stringbuf,class std::allocator >`: VTable [0x0000000002F58EE0, 0x0000000000000000 offset, 15 functions] `.?AV?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@` +`class std::basic_ostringstream,class std::allocator >`: VTable [0x0000000002F58FA0, 0x0000000000000088 offset, 1 functions] `.?AV?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@` +`class std::_Func_impl_no_alloc,void,enum TESCreationUploader::PrepareUploadResult>`: VTable [0x0000000002F59BB8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4PrepareUploadResult@TESCreationUploader@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,bool>`: VTable [0x0000000002F59C00, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_N@std@@` +`class BGSErrorDlg`: VTable [0x0000000002F5B3F8, 0x0000000000000000 offset, 3 functions] `.?AVBGSErrorDlg@@` +`class NiProperty`: VTable [0x0000000002F5C498, 0x0000000000000000 offset, 41 functions] `.?AVNiProperty@@` +`class NiAlphaProperty`: VTable [0x0000000002F5C630, 0x0000000000000000 offset, 41 functions] `.?AVNiAlphaProperty@@` +`class BSResource::Location`: VTable [0x0000000002F5C810, 0x0000000000000000 offset, 12 functions] `.?AVLocation@BSResource@@` +`class BSQueuedResourceCollection,2>`: VTable [0x0000000002F5C890, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@$01@@` +`class BSQueuedResourceCollection,2>`: VTable [0x0000000002F5C960, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@$01@@` +`class BGSQueuedGrassModelHandles`: VTable [0x0000000002F5C988, 0x0000000000000000 offset, 20 functions] `.?AVBGSQueuedGrassModelHandles@@` +`class BGSQueuedGrassModelHandles`: VTable [0x0000000002F5CA58, 0x0000000000000038 offset, 3 functions] `.?AVBGSQueuedGrassModelHandles@@` +`class BSResource::LooseFileLocation`: VTable [0x0000000002F5CA80, 0x0000000000000000 offset, 12 functions] `.?AVLooseFileLocation@BSResource@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002F5D398, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0CA@@@@@` +`class BGSGenericCategoryLayout::Manager`: VTable [0x0000000002F5D8C8, 0x0000000000000000 offset, 7 functions] `.?AVManager@BGSGenericCategoryLayout@@` +`class BGSListViewDialog`: VTable [0x0000000002F5DFA8, 0x0000000000000000 offset, 2 functions] `.?AVBGSListViewDialog@@` +`class BGSFormListViewDialog`: VTable [0x0000000002F5DFC8, 0x0000000000000000 offset, 2 functions] `.?AVBGSFormListViewDialog@@` +`class BGSFileListViewDialog`: VTable [0x0000000002F5DFE8, 0x0000000000000000 offset, 2 functions] `.?AVBGSFileListViewDialog@@` +`class BGSOKCancelListViewDialog`: VTable [0x0000000002F5E008, 0x0000000000000000 offset, 2 functions] `.?AVBGSOKCancelListViewDialog@@` +`class std::collate`: VTable [0x0000000002F5FE08, 0x0000000000000000 offset, 6 functions] `.?AV?$collate@_W@std@@` +`class std::_Node_base`: VTable [0x0000000002F5FFA0, 0x0000000000000000 offset, 1 functions] `.?AV_Node_base@std@@` +`class std::_Root_node`: VTable [0x0000000002F5FFB8, 0x0000000000000000 offset, 1 functions] `.?AV_Root_node@std@@` +`class std::_Node_end_group`: VTable [0x0000000002F5FFD0, 0x0000000000000000 offset, 1 functions] `.?AV_Node_end_group@std@@` +`class std::_Node_assert`: VTable [0x0000000002F5FFE8, 0x0000000000000000 offset, 1 functions] `.?AV_Node_assert@std@@` +`class std::_Node_capture`: VTable [0x0000000002F60000, 0x0000000000000000 offset, 1 functions] `.?AV_Node_capture@std@@` +`class std::_Node_back`: VTable [0x0000000002F60018, 0x0000000000000000 offset, 1 functions] `.?AV_Node_back@std@@` +`class std::_Node_endif`: VTable [0x0000000002F60030, 0x0000000000000000 offset, 1 functions] `.?AV_Node_endif@std@@` +`class std::_Node_if`: VTable [0x0000000002F60048, 0x0000000000000000 offset, 1 functions] `.?AV_Node_if@std@@` +`class std::_Node_end_rep`: VTable [0x0000000002F60060, 0x0000000000000000 offset, 1 functions] `.?AV_Node_end_rep@std@@` +`class std::_Node_rep`: VTable [0x0000000002F60078, 0x0000000000000000 offset, 1 functions] `.?AV_Node_rep@std@@` +`class BGSModUtils::`anonymous namespace'::PickESMDialog`: VTable [0x0000000002F600D0, 0x0000000000000000 offset, 3 functions] `.?AVPickESMDialog@?A0xd467da0a@BGSModUtils@@` +`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002F607B0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` +`class std::_Node_str`: VTable [0x0000000002F60838, 0x0000000000000000 offset, 1 functions] `.?AV?$_Node_str@_W@std@@` +`class std::_Node_class >`: VTable [0x0000000002F60850, 0x0000000000000000 offset, 1 functions] `.?AV?$_Node_class@_WV?$regex_traits@_W@std@@@std@@` +`class NiTMapBase,class TESForm * __ptr64,class TESForm * __ptr64>`: VTable [0x0000000002F61B10, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEAVTESForm@@PEAV2@@@` +`class NiTPointerMap`: VTable [0x0000000002F61B60, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEAVTESForm@@PEAV1@@@` +`class IFormFactory::IFactoryVisitor`: VTable [0x0000000002F624A8, 0x0000000000000000 offset, 2 functions] `.?AVIFactoryVisitor@IFormFactory@@` +`struct `anonymous namespace'::ObjectTypeEnumerator`: VTable [0x0000000002F624F0, 0x0000000000000000 offset, 2 functions] `.?AUObjectTypeEnumerator@?A0x719bfb65@@` +`struct `anonymous namespace'::ObjectTreeItemAdder`: VTable [0x0000000002F62510, 0x0000000000000000 offset, 2 functions] `.?AUObjectTreeItemAdder@?A0x719bfb65@@` +`class BGSRenderOrthoGrid`: VTable [0x0000000002F64128, 0x0000000000000000 offset, 1 functions] `.?AVBGSRenderOrthoGrid@@` +`class BSTEventSink`: VTable [0x0000000002F64B10, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UTESDataHandlerEditorEvent@@@@` +`class BGSRenderWindow`: VTable [0x0000000002F64B30, 0x0000000000000000 offset, 2 functions] `.?AVBGSRenderWindow@@` +`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002F65540, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` +`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002F65588, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` +`class BGSRenderWindowBorder`: VTable [0x0000000002F655F0, 0x0000000000000000 offset, 1 functions] `.?AVBGSRenderWindowBorder@@` +`class BGSRenderWindowCamera`: VTable [0x0000000002F65838, 0x0000000000000000 offset, 1 functions] `.?AVBGSRenderWindowCamera@@` +`class hkpRayHitCollector`: VTable [0x0000000002F65850, 0x0000000000000000 offset, 2 functions] `.?AVhkpRayHitCollector@@` +`class hkpAllRayHitCollector`: VTable [0x0000000002F65870, 0x0000000000000000 offset, 2 functions] `.?AVhkpAllRayHitCollector@@` +`class BGSRenderWindowEditModule`: VTable [0x0000000002F65BE0, 0x0000000000000000 offset, 71 functions] `.?AVBGSRenderWindowEditModule@@` +`class BGSRenderWindowEditModuleManager`: VTable [0x0000000002F66C10, 0x0000000000000000 offset, 2 functions] `.?AVBGSRenderWindowEditModuleManager@@` +`class BGSRenderWindowGizmo`: VTable [0x0000000002F66EC0, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowGizmo@@` +`class BSFixedScreenSizeNode`: VTable [0x0000000002F66F20, 0x0000000000000000 offset, 66 functions] `.?AVBSFixedScreenSizeNode@@` +`class BGSRenderWindowEditModuleFactory`: VTable [0x0000000002F67410, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowEditModuleFactory@@` +`class BGSRenderWindowLandscapeEditModule`: VTable [0x0000000002F67440, 0x0000000000000000 offset, 71 functions] `.?AVBGSRenderWindowLandscapeEditModule@@` +`class BGSRenderWindowLandscapeEditModuleFactory`: VTable [0x0000000002F676F8, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowLandscapeEditModuleFactory@@` +`class BSExtraData`: VTable [0x0000000002F6A6C8, 0x0000000000000000 offset, 3 functions] `.?AVBSExtraData@@` +`class ExtraNavMeshPortal`: VTable [0x0000000002F6A750, 0x0000000000000000 offset, 3 functions] `.?AVExtraNavMeshPortal@@` +`class PathingDebugGeometryData`: VTable [0x0000000002F6A7B0, 0x0000000000000000 offset, 2 functions] `.?AVPathingDebugGeometryData@@` +`class BGSRenderWindowNavMeshEditModule`: VTable [0x0000000002F6A7D0, 0x0000000000000000 offset, 71 functions] `.?AVBGSRenderWindowNavMeshEditModule@@` +`class BGSRenderWindowNavMeshEditModuleFactory`: VTable [0x0000000002F6AA88, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowNavMeshEditModuleFactory@@` +`class BGSRecastModule::RecastJob`: VTable [0x0000000002F6AAB8, 0x0000000000000000 offset, 2 functions] `.?AVRecastJob@BGSRecastModule@@` +`class `anonymous namespace'::ReRecast`: VTable [0x0000000002F6AAD8, 0x0000000000000000 offset, 2 functions] `.?AVReRecast@?A0x03fa6633@@` +`class BGSRenderWindowPrimitiveEditModule`: VTable [0x0000000002F6C3D8, 0x0000000000000000 offset, 73 functions] `.?AVBGSRenderWindowPrimitiveEditModule@@` +`class BGSRenderWindowPrimitiveEditModuleFactory`: VTable [0x0000000002F6C6A0, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowPrimitiveEditModuleFactory@@` +`class BGSRenderWindowPrimitiveGizmo`: VTable [0x0000000002F6C850, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowPrimitiveGizmo@@` +`class BGSRenderWindowReferenceEditModule`: VTable [0x0000000002F6DB20, 0x0000000000000000 offset, 71 functions] `.?AVBGSRenderWindowReferenceEditModule@@` +`class BGSRenderWindowReferenceEditModuleFactory`: VTable [0x0000000002F6DDD8, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowReferenceEditModuleFactory@@` +`class NiTMapBase,class BSPointerHandle >,class BSPointerHandle > >`: VTable [0x0000000002F6E958, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V2@@@` +`class NiTPointerMap >,class BSPointerHandle > >`: VTable [0x0000000002F6E9A8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V1@@@` +`class NiTArray >`: VTable [0x0000000002F6EB50, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVNiNode@@V?$NiTMallocInterface@PEAVNiNode@@@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000002F6EB68, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVNiNode@@@@` +`class NiTArray >`: VTable [0x0000000002F6EBD8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEBVNiPoint3@@V?$NiTMallocInterface@PEBVNiPoint3@@@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000002F6EBF0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEBVNiPoint3@@@@` +`class BGSRenderWindowRotationGizmo`: VTable [0x0000000002F6F120, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowRotationGizmo@@` +`class BGSRenderWindowScaleGizmo`: VTable [0x0000000002F6F1D0, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowScaleGizmo@@` +`class BGSRenderWindowTranslationGizmo`: VTable [0x0000000002F6F280, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowTranslationGizmo@@` +`class NiTMapBase >,class NiTexture * __ptr64,struct TEX_USER_DATA * __ptr64>`: VTable [0x0000000002F6F988, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVNiTexture@@PEAUTEX_USER_DATA@@@@@@PEAVNiTexture@@PEAUTEX_USER_DATA@@@@` +`class NiTMap`: VTable [0x0000000002F6F9D8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVNiTexture@@PEAUTEX_USER_DATA@@@@` +`class NiTMapBase >,bool> >,class BSPointerHandle >,bool>`: VTable [0x0000000002F6FA88, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@` +`class NiTMap >,bool>`: VTable [0x0000000002F6FAD8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@` +`class NiTMapBase >,class NiTexture * __ptr64,bool>`: VTable [0x0000000002F6FB28, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVNiTexture@@_N@@@@PEAVNiTexture@@_N@@` +`class NiTMap`: VTable [0x0000000002F6FB78, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVNiTexture@@_N@@` +`class NiTMapBase >,class BSGeometry * __ptr64,bool>`: VTable [0x0000000002F6FC78, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVBSGeometry@@_N@@@@PEAVBSGeometry@@_N@@` +`class NiTMap`: VTable [0x0000000002F6FCC8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVBSGeometry@@_N@@` +`class BGSSearchReplaceDialog`: VTable [0x0000000002F70258, 0x0000000000000000 offset, 1 functions] `.?AVBGSSearchReplaceDialog@@` +`struct TESObjectCELL::IDecalRefFunctor`: VTable [0x0000000002F70798, 0x0000000000000000 offset, 2 functions] `.?AUIDecalRefFunctor@TESObjectCELL@@` +`struct `anonymous namespace'::CullOrShowDecalRefFunctor`: VTable [0x0000000002F70990, 0x0000000000000000 offset, 3 functions] `.?AUCullOrShowDecalRefFunctor@?A0xbc029ab0@@` +`struct `anonymous namespace'::CullOrShowDecalsPerCellFunctor::Adapter`: VTable [0x0000000002F709B8, 0x0000000000000000 offset, 3 functions] `.?AUAdapter@CullOrShowDecalsPerCellFunctor@?A0xbc029ab0@@` +`class BGSSkillPerkTreeNode`: VTable [0x0000000002F715E0, 0x0000000000000000 offset, 2 functions] `.?AVBGSSkillPerkTreeNode@@` +`class BGSSkillPerkTreeWindow`: VTable [0x0000000002F71600, 0x0000000000000000 offset, 1 functions] `.?AVBGSSkillPerkTreeWindow@@` +`class BGSSkillPerkTreeEventSink`: VTable [0x0000000002F71630, 0x0000000000000000 offset, 8 functions] `.?AVBGSSkillPerkTreeEventSink@@` +`class CCallbackBase`: VTable [0x0000000002F71DC8, 0x0000000000000000 offset, 3 functions] `.?AVCCallbackBase@@` +`class CCallResult`: VTable [0x0000000002F71E30, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@UCreateItemResult_t@@@@` +`class CCallResult`: VTable [0x0000000002F71E58, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageEnumerateUserPublishedFilesResult_t@@@@` +`class CCallResult`: VTable [0x0000000002F71E80, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageGetPublishedFileDetailsResult_t@@@@` +`class CCallResult`: VTable [0x0000000002F71EA8, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStoragePublishFileResult_t@@@@` +`class CCallResult`: VTable [0x0000000002F71ED0, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageSubscribePublishedFileResult_t@@@@` +`class CCallResult`: VTable [0x0000000002F71EF8, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageDownloadUGCResult_t@@@@` +`class CCallResult`: VTable [0x0000000002F71F20, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageUpdatePublishedFileResult_t@@@@` +`class CCallResult`: VTable [0x0000000002F71F48, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@USubmitItemUpdateResult_t@@@@` +`class CCallResult`: VTable [0x0000000002F71F70, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@USteamUGCRequestUGCDetailsResult_t@@@@` +`class BGSThreadedProgressDlg`: VTable [0x0000000002F72698, 0x0000000000000000 offset, 3 functions] `.?AVBGSThreadedProgressDlg@@` +`class ProgressInternal::TaskThread`: VTable [0x0000000002F72710, 0x0000000000000000 offset, 4 functions] `.?AVTaskThread@ProgressInternal@@` +`class BGSWarningsDialog`: VTable [0x0000000002F72C30, 0x0000000000000000 offset, 1 functions] `.?AVBGSWarningsDialog@@` +`class `anonymous namespace'::LayoutManager`: VTable [0x0000000002F72C98, 0x0000000000000000 offset, 7 functions] `.?AVLayoutManager@?A0x299da45f@@` +`class BSTEventSink`: VTable [0x0000000002F72D48, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UEvent@BSCoreMessage@@@@` +`class BGSWarningsHandler::WarningsSink`: VTable [0x0000000002F72D68, 0x0000000000000000 offset, 2 functions] `.?AVWarningsSink@BGSWarningsHandler@@` +`class WindowLayout::ResizableObject`: VTable [0x0000000002F73AC0, 0x0000000000000000 offset, 5 functions] `.?AVResizableObject@WindowLayout@@` +`class WindowLayout::Panel`: VTable [0x0000000002F73B00, 0x0000000000000000 offset, 5 functions] `.?AVPanel@WindowLayout@@` +`class WindowLayout::SplitPanel`: VTable [0x0000000002F73B40, 0x0000000000000000 offset, 5 functions] `.?AVSplitPanel@WindowLayout@@` +`class WindowLayout::`anonymous namespace'::ResizableControl`: VTable [0x0000000002F73B80, 0x0000000000000000 offset, 5 functions] `.?AVResizableControl@?A0xd5bdd7e4@WindowLayout@@` +`class ClientSite`: VTable [0x0000000002F73D80, 0x0000000000000000 offset, 9 functions] `.?AVClientSite@@` +`class ClientSite`: VTable [0x0000000002F73DE0, 0x0000000000000008 offset, 15 functions] `.?AVClientSite@@` +`class BSMapBase`: VTable [0x0000000002F74988, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVBGSVoiceType@@PEAUphonemeMap@?A0x96e575a6@@@@` +`class BSScrapMap`: VTable [0x0000000002F749D8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@PEAVBGSVoiceType@@PEAUphonemeMap@?A0x96e575a6@@@@` +`class std::_Func_impl_no_alloc,void,char const * __ptr64>`: VTable [0x0000000002F74BF8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XPEBD@std@@` +`class NiWindow`: VTable [0x0000000002F75660, 0x0000000000000000 offset, 5 functions] `.?AVNiWindow@@` +`class BSTreeManager::IQueryCullingCamera`: VTable [0x0000000002F756A0, 0x0000000000000000 offset, 2 functions] `.?AVIQueryCullingCamera@BSTreeManager@@` +`class `anonymous namespace'::AppCullingCamera`: VTable [0x0000000002F75750, 0x0000000000000000 offset, 2 functions] `.?AVAppCullingCamera@?A0x49c3c9dc@@` +`class BSTEventSink`: VTable [0x0000000002F763A0, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UCellAttachDetachEvent@@@@` +`class `anonymous namespace'::CellAttachDetachHandler`: VTable [0x0000000002F763C0, 0x0000000000000000 offset, 2 functions] `.?AVCellAttachDetachHandler@?A0x9801bc14@@` +`class TESList`: VTable [0x0000000002F76B20, 0x0000000000000000 offset, 1 functions] `.?AVTESList@@` +`class TESFileList`: VTable [0x0000000002F76B38, 0x0000000000000000 offset, 1 functions] `.?AVTESFileList@@` +`class NiTLargeArray >`: VTable [0x0000000002F76B50, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@PEAUFORMLISTITEM@@V?$NiTMallocInterface@PEAUFORMLISTITEM@@@@@@` +`class NiTLargePrimitiveArray`: VTable [0x0000000002F76B68, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargePrimitiveArray@PEAUFORMLISTITEM@@@@` +`class TESFormList`: VTable [0x0000000002F76B80, 0x0000000000000000 offset, 1 functions] `.?AVTESFormList@@` +`class std::_Ref_count_obj`: VTable [0x0000000002F772D0, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@VTESCreationUploader@@@std@@` +`class RunPrepareTask`: VTable [0x0000000002F77B18, 0x0000000000000000 offset, 3 functions] `.?AVRunPrepareTask@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x0000000002F77C38, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x0000000002F77C80, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class TESSpecifications::DetailSpecifications`: VTable [0x0000000002F77DC8, 0x0000000000000000 offset, 2 functions] `.?AVDetailSpecifications@TESSpecifications@@` +`class TESSpecifications::Specifications`: VTable [0x0000000002F780D8, 0x0000000000000000 offset, 2 functions] `.?AVSpecifications@TESSpecifications@@` +`class BSStream`: VTable [0x0000000002F78530, 0x0000000000000000 offset, 24 functions] `.?AVBSStream@@` +`class BSResource::ArchiveFoundStreamCB`: VTable [0x0000000002F78620, 0x0000000000000000 offset, 2 functions] `.?AVArchiveFoundStreamCB@BSResource@@` +`class TESSpecifications::SummarySpecifications`: VTable [0x0000000002F78640, 0x0000000000000000 offset, 2 functions] `.?AVSummarySpecifications@TESSpecifications@@` +`class `protected: void __cdecl TESSpecifications::SummarySpecifications::compileBSAData(void) __ptr64'::`7'::BSADump`: VTable [0x0000000002F786D8, 0x0000000000000000 offset, 2 functions] `.?AVBSADump@?6??compileBSAData@SummarySpecifications@TESSpecifications@@IEAAXXZ@` +`class TESSpecifications::TextSpecifications`: VTable [0x0000000002F78B50, 0x0000000000000000 offset, 2 functions] `.?AVTextSpecifications@TESSpecifications@@` +`class NiTMapBase >,char const * __ptr64,class Setting * __ptr64>`: VTable [0x0000000002F7C030, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEBDPEAVSetting@@@@@@PEBDPEAVSetting@@@@` +`class NiTMap`: VTable [0x0000000002F7C080, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEBDPEAVSetting@@@@` +`class NiTStringTemplateMap,class Setting * __ptr64>`: VTable [0x0000000002F7C0D0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTMap@PEBDPEAVSetting@@@@PEAVSetting@@@@` +`class NiTStringMap`: VTable [0x0000000002F7C120, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringMap@PEAVSetting@@@@` +`class BSTCaseInsensitiveStringMap`: VTable [0x0000000002F7C170, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCaseInsensitiveStringMap@PEAVSetting@@@@` +`class SettingCollectionMap`: VTable [0x0000000002F7C1C0, 0x0000000000000000 offset, 11 functions] `.?AV?$SettingCollectionMap@VSetting@@@@` +`class GameSettingCollection`: VTable [0x0000000002F7C238, 0x0000000000000000 offset, 12 functions] `.?AVGameSettingCollection@@` +`class GameSetting`: VTable [0x0000000002F7C2B8, 0x0000000000000000 offset, 2 functions] `.?AVGameSetting@@` +`class GameSetting`: VTable [0x0000000002F7C2D8, 0x0000000000000018 offset, 103 functions] `.?AVGameSetting@@` +`class ATL::CComModule`: VTable [0x0000000002F7CEC0, 0x0000000000000000 offset, 10 functions] `.?AVCComModule@ATL@@` +`class ATL::CRegObject`: VTable [0x0000000002F7CFD0, 0x0000000000000000 offset, 6 functions] `.?AVCRegObject@ATL@@` +`class ATL::CComObject`: VTable [0x0000000002F7D6F8, 0x0000000000000000 offset, 4 functions] `.?AV?$CComObject@VCAxFrameWindow@ATL@@@ATL@@` +`class ATL::CComObject`: VTable [0x0000000002F7D728, 0x0000000000000048 offset, 15 functions] `.?AV?$CComObject@VCAxFrameWindow@ATL@@@ATL@@` +`class ATL::CComObject`: VTable [0x0000000002F7D7C8, 0x0000000000000000 offset, 4 functions] `.?AV?$CComObject@VCAxUIWindow@ATL@@@ATL@@` +`class ATL::CComObject`: VTable [0x0000000002F7D7F8, 0x0000000000000048 offset, 9 functions] `.?AV?$CComObject@VCAxUIWindow@ATL@@@ATL@@` +`class ATL::CComObject,class ATL::CComMultiThreadModel> >`: VTable [0x0000000002F7D858, 0x0000000000000000 offset, 8 functions] `.?AV?$CComObject@V?$CComEnum@UIEnumUnknown@@$1?_GUID_00000100_0000_0000_c000_000000000046@@3U__s_GUID@@BPEAUIUnknown@@V?$_CopyInterface@UIUnknown@@@ATL@@VCComMultiThreadModel@6@@ATL@@@ATL@@` +`class NiTMapBase >,unsigned int,unsigned int>`: VTable [0x0000000002F7F798, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@II@@@@II@@` +`class NiTMap`: VTable [0x0000000002F7F7E8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@II@@` +`class ATL::CComContainedObject`: VTable [0x0000000002F80638, 0x0000000000000000 offset, 5 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` +`class ATL::CComContainedObject`: VTable [0x0000000002F80678, 0x0000000000000048 offset, 11 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` +`class ATL::CComContainedObject`: VTable [0x0000000002F806F0, 0x0000000000000050 offset, 9 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` +`class ATL::CComContainedObject`: VTable [0x0000000002F80750, 0x0000000000000058 offset, 30 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` +`class ATL::CComContainedObject`: VTable [0x0000000002F80880, 0x0000000000000060 offset, 10 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` +`class ATL::CComContainedObject`: VTable [0x0000000002F808F0, 0x0000000000000068 offset, 6 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` +`class ATL::CComContainedObject`: VTable [0x0000000002F80938, 0x0000000000000070 offset, 6 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` +`class ATL::CComContainedObject`: VTable [0x0000000002F80980, 0x0000000000000080 offset, 4 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` +`class ATL::CComContainedObject`: VTable [0x0000000002F809B0, 0x0000000000000088 offset, 8 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` +`class ATL::CComContainedObject`: VTable [0x0000000002F80A08, 0x0000000000000090 offset, 18 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` +`class ATL::CComContainedObject`: VTable [0x0000000002F80AC0, 0x0000000000000098 offset, 36 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` +`class ATL::CComPolyObject`: VTable [0x0000000002F80C28, 0x0000000000000000 offset, 4 functions] `.?AV?$CComPolyObject@VCAxHostWindow@ATL@@@ATL@@` +`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002F80D28, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` +`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002F80D70, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` +`class DialogExtraWindowStartingRects`: VTable [0x0000000002F82200, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraWindowStartingRects@@` +`class CSScript::BaseDialog`: VTable [0x0000000002F83130, 0x0000000000000000 offset, 2 functions] `.?AVBaseDialog@CSScript@@` +`class CSScript::BaseModelessDialog`: VTable [0x0000000002F83150, 0x0000000000000000 offset, 2 functions] `.?AVBaseModelessDialog@CSScript@@` +`class CSScript::EmbeddedChildDialog`: VTable [0x0000000002F83170, 0x0000000000000000 offset, 2 functions] `.?AVEmbeddedChildDialog@CSScript@@` +`class CSScript::VersionControlDlg`: VTable [0x0000000002F83190, 0x0000000000000000 offset, 2 functions] `.?AVVersionControlDlg@CSScript@@` +`class NiTArray >`: VTable [0x0000000002F83930, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVTESForm@@V?$NiTMallocInterface@PEAVTESForm@@@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000002F83948, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVTESForm@@@@` +`class NiTLargeArray >`: VTable [0x0000000002F84650, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@PEAUTEMP_DATA_BLOCK@@V?$NiTMallocInterface@PEAUTEMP_DATA_BLOCK@@@@@@` +`class NiTLargePrimitiveArray`: VTable [0x0000000002F84668, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargePrimitiveArray@PEAUTEMP_DATA_BLOCK@@@@` +`class NiTMapBase >,class TESForm * __ptr64,class TESFile * __ptr64>`: VTable [0x0000000002F85410, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESForm@@PEAVTESFile@@@@@@PEAVTESForm@@PEAVTESFile@@@@` +`class NiTMap`: VTable [0x0000000002F85460, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESForm@@PEAVTESFile@@@@` +`class NiTMapBase >,class TESForm * __ptr64,unsigned int>`: VTable [0x0000000002F856E0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESForm@@I@@@@PEAVTESForm@@I@@` +`class NiTMap`: VTable [0x0000000002F85730, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESForm@@I@@` +`class NiTMapBase >,class TESObjectCELL * __ptr64,int>`: VTable [0x0000000002F85BF8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESObjectCELL@@H@@@@PEAVTESObjectCELL@@H@@` +`class NiTMap`: VTable [0x0000000002F85C48, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESObjectCELL@@H@@` +`class NiTMapBase >,class TESTopic * __ptr64,unsigned short>`: VTable [0x0000000002F860B0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESTopic@@G@@@@PEAVTESTopic@@G@@` +`class NiTMap`: VTable [0x0000000002F86100, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESTopic@@G@@` +`class DialogExtraParam`: VTable [0x0000000002F86D78, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraParam@@` +`class DialogExtraLocalCopy`: VTable [0x0000000002F86DA0, 0x0000000000000000 offset, 6 functions] `.?AVDialogExtraLocalCopy@@` +`class DialogExtraLocalReferenceCopy`: VTable [0x0000000002F86DE8, 0x0000000000000000 offset, 6 functions] `.?AVDialogExtraLocalReferenceCopy@@` +`class DialogExtraLocalBaseObjectCopy`: VTable [0x0000000002F86E30, 0x0000000000000000 offset, 6 functions] `.?AVDialogExtraLocalBaseObjectCopy@@` +`class DialogExtraLocalBaseObjectExtraCopy`: VTable [0x0000000002F86EC8, 0x0000000000000000 offset, 6 functions] `.?AVDialogExtraLocalBaseObjectExtraCopy@@` +`class DialogExtraColorControl`: VTable [0x0000000002F86F10, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraColorControl@@` +`class DialogExtraSubWindow`: VTable [0x0000000002F86F38, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraSubWindow@@` +`class DialogExtraConditionsDialog`: VTable [0x0000000002F86F60, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraConditionsDialog@@` +`class DialogExtraCurrCondItem`: VTable [0x0000000002F86F88, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraCurrCondItem@@` +`class DialogExtraWorkingData`: VTable [0x0000000002F86FB0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraWorkingData@@` +`class DialogExtraFactionData`: VTable [0x0000000002F86FD8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraFactionData@@` +`class DialogExtraReactionData`: VTable [0x0000000002F87000, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraReactionData@@` +`class DialogExtraQuestStageData`: VTable [0x0000000002F87028, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraQuestStageData@@` +`class DialogExtraPopupMenu`: VTable [0x0000000002F87050, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraPopupMenu@@` +`class DialogExtraRefSelectControl`: VTable [0x0000000002F87078, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraRefSelectControl@@` +`class DialogExtraPreviewControl`: VTable [0x0000000002F870A0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraPreviewControl@@` +`class DialogExtraFreeformFaceControl`: VTable [0x0000000002F870C8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraFreeformFaceControl@@` +`class DialogExtraDialogData`: VTable [0x0000000002F870F0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraDialogData@@` +`class DialogExtraNotifyInfo`: VTable [0x0000000002F87118, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraNotifyInfo@@` +`class DialogExtraTimer`: VTable [0x0000000002F87140, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraTimer@@` +`class DialogExtraRects`: VTable [0x0000000002F87168, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraRects@@` +`class DialogExtraLinkedDlg`: VTable [0x0000000002F87190, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraLinkedDlg@@` +`class DialogExtraQuestFilter`: VTable [0x0000000002F871B8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraQuestFilter@@` +`class DialogExtraHavokAnimationPreview`: VTable [0x0000000002F871E0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraHavokAnimationPreview@@` +`class DialogExtraNPCDlgData`: VTable [0x0000000002F87208, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraNPCDlgData@@` +`class DialogExtraNPCAnimationPreviewData`: VTable [0x0000000002F87230, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraNPCAnimationPreviewData@@` +`class DialogExtraScriptListDlg`: VTable [0x0000000002F88708, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraScriptListDlg@@` +`class EnchantmentComboBoxValidationFunctor`: VTable [0x0000000002F88730, 0x0000000000000000 offset, 1 functions] `.?AVEnchantmentComboBoxValidationFunctor@@` +`struct MiscStatManager::IMiscStatVisitor`: VTable [0x0000000002F88748, 0x0000000000000000 offset, 1 functions] `.?AUIMiscStatVisitor@MiscStatManager@@` +`struct `anonymous namespace'::AddMiscStatToComboBoxFunc`: VTable [0x0000000002F890E8, 0x0000000000000000 offset, 1 functions] `.?AUAddMiscStatToComboBoxFunc@?A0x90cfb832@@` +`class IsValidEnchantmentForObjectFunctor`: VTable [0x0000000002F89150, 0x0000000000000000 offset, 1 functions] `.?AVIsValidEnchantmentForObjectFunctor@@` +`struct `anonymous namespace'::ComboBoxObjectAdder`: VTable [0x0000000002F89168, 0x0000000000000000 offset, 2 functions] `.?AUComboBoxObjectAdder@?A0x90cfb832@@` +`class NiTMapBase >,class TESQuest * __ptr64,unsigned int>`: VTable [0x0000000002F897E8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESQuest@@I@@@@PEAVTESQuest@@I@@` +`class NiTMap`: VTable [0x0000000002F89838, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESQuest@@I@@` +`class BSMapBase * __ptr64>`: VTable [0x0000000002F89920, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESActorBase@@PEAV?$BSMap@PEAVBGSEncounterZone@@PEAULvlActorUsage@?1??LeveledActorListDlgProc@@YA_JPEAUHWND__@@I_K_J@Z@@@@@` +`class BSMap * __ptr64>`: VTable [0x0000000002F89970, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEAVTESActorBase@@PEAV?$BSMap@PEAVBGSEncounterZone@@PEAULvlActorUsage@?1??LeveledActorListDlgProc@@YA_JPEAUHWND__@@I_K_J@Z@@@@@` +`class BSMapBase`: VTable [0x0000000002F899C0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVBGSEncounterZone@@PEAULvlActorUsage@?1??LeveledActorListDlgProc@@YA_JPEAUHWND__@@I_K_J@Z@@@` +`class BSMap`: VTable [0x0000000002F89A10, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEAVBGSEncounterZone@@PEAULvlActorUsage@?1??LeveledActorListDlgProc@@YA_JPEAUHWND__@@I_K_J@Z@@@` +`class TESFormIDListView`: VTable [0x0000000002F89B10, 0x0000000000000000 offset, 103 functions] `.?AVTESFormIDListView@@` +`class bhkSerializable`: VTable [0x0000000002F8A348, 0x0000000000000000 offset, 52 functions] `.?AVbhkSerializable@@` +`class bhkShape`: VTable [0x0000000002F8A548, 0x0000000000000000 offset, 59 functions] `.?AVbhkShape@@` +`class bhkEntity`: VTable [0x0000000002F8A788, 0x0000000000000000 offset, 55 functions] `.?AVbhkEntity@@` +`class TESPreviewControl`: VTable [0x0000000002F8A9A8, 0x0000000000000000 offset, 12 functions] `.?AVTESPreviewControl@@` +`class bhkRigidBody`: VTable [0x0000000002F8AA28, 0x0000000000000000 offset, 65 functions] `.?AVbhkRigidBody@@` +`class bhkCollisionObject`: VTable [0x0000000002F8ACA8, 0x0000000000000000 offset, 52 functions] `.?AVbhkCollisionObject@@` +`class bhkSphereRepShape`: VTable [0x0000000002F8AEA8, 0x0000000000000000 offset, 59 functions] `.?AVbhkSphereRepShape@@` +`class bhkConvexShape`: VTable [0x0000000002F8B0E8, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexShape@@` +`class bhkBoxShape`: VTable [0x0000000002F8B328, 0x0000000000000000 offset, 59 functions] `.?AVbhkBoxShape@@` +`class BSLightingShaderMaterial`: VTable [0x0000000002F8B568, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterial@@` +`class hkBaseObject`: VTable [0x0000000002F8BDA0, 0x0000000000000000 offset, 1 functions] `.?AVhkBaseObject@@` +`class hkReferencedObject`: VTable [0x0000000002F8BDB8, 0x0000000000000000 offset, 3 functions] `.?AVhkReferencedObject@@` +`class hkpWorldCinfo`: VTable [0x0000000002F8BDE0, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldCinfo@@` +`class hkpEntityListener`: VTable [0x0000000002F8BE08, 0x0000000000000000 offset, 6 functions] `.?AVhkpEntityListener@@` +`class TESRenderControl`: VTable [0x0000000002F8BE50, 0x0000000000000000 offset, 10 functions] `.?AVTESRenderControl@@` +`class TESWindListener`: VTable [0x0000000002F8BEC0, 0x0000000000000000 offset, 11 functions] `.?AVTESWindListener@@` +`class HavokAnimationPreviewContainer`: VTable [0x0000000002F8C278, 0x0000000000000000 offset, 1 functions] `.?AVHavokAnimationPreviewContainer@@` +`class HavokAnimationPreviewControl`: VTable [0x0000000002F8C460, 0x0000000000000000 offset, 1 functions] `.?AVHavokAnimationPreviewControl@@` +`class BaseFormComponent`: VTable [0x0000000002F8D050, 0x0000000000000000 offset, 14 functions] `.?AVBaseFormComponent@@` +`class TESFullName`: VTable [0x0000000002F8D0E0, 0x0000000000000000 offset, 16 functions] `.?AVTESFullName@@` +`class ActorValueInfo`: VTable [0x0000000002F8D188, 0x0000000000000000 offset, 103 functions] `.?AVActorValueInfo@@` +`class ActorValueInfo`: VTable [0x0000000002F8D570, 0x0000000000000028 offset, 16 functions] `.?AVActorValueInfo@@` +`class ActorValueInfo`: VTable [0x0000000002F8D618, 0x0000000000000040 offset, 14 functions] `.?AVActorValueInfo@@` +`class ActorValueInfo`: VTable [0x0000000002F8D6A8, 0x0000000000000068 offset, 20 functions] `.?AVActorValueInfo@@` +`class `anonymous namespace'::ActorValueFormFactory`: VTable [0x0000000002F8D790, 0x0000000000000000 offset, 7 functions] `.?AVActorValueFormFactory@?A0x0454376b@@` +`class CSScript::SavePatcher`: VTable [0x0000000002F8E6E8, 0x0000000000000000 offset, 2 functions] `.?AVSavePatcher@CSScript@@` +`class IAIWorldLocation`: VTable [0x0000000002F8EF08, 0x0000000000000000 offset, 20 functions] `.?AVIAIWorldLocation@@` +`class BGSAIWorldLocation`: VTable [0x0000000002F8EFD8, 0x0000000000000000 offset, 20 functions] `.?AVBGSAIWorldLocation@@` +`class BGSTypedItem`: VTable [0x0000000002F8F0A8, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSAIWorldLocationRefRadius@@VBGSAIWorldLocation@@@@` +`class BGSAIWorldLocationRefRadius`: VTable [0x0000000002F8F178, 0x0000000000000000 offset, 20 functions] `.?AVBGSAIWorldLocationRefRadius@@` +`class BGSTypedItem`: VTable [0x0000000002F8F248, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSAIWorldLocationPointRadius@@VBGSAIWorldLocation@@@@` +`class BGSAIWorldLocationPointRadius`: VTable [0x0000000002F8F318, 0x0000000000000000 offset, 20 functions] `.?AVBGSAIWorldLocationPointRadius@@` +`class BGSTypedItem`: VTable [0x0000000002F8F3E8, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSAIWorldLocationInteriorCell@@VBGSAIWorldLocation@@@@` +`class BGSAIWorldLocationInteriorCell`: VTable [0x0000000002F8F4B8, 0x0000000000000000 offset, 20 functions] `.?AVBGSAIWorldLocationInteriorCell@@` +`class BGSAttackData`: VTable [0x0000000002F8FAB0, 0x0000000000000000 offset, 2 functions] `.?AVBGSAttackData@@` +`class BGSAttackDataMap`: VTable [0x0000000002F8FAD0, 0x0000000000000000 offset, 2 functions] `.?AVBGSAttackDataMap@@` +`class BGSPackageDataList`: VTable [0x0000000002F90D68, 0x0000000000000000 offset, 5 functions] `.?AVBGSPackageDataList@@` +`class IPackageData`: VTable [0x0000000002F91650, 0x0000000000000000 offset, 16 functions] `.?AVIPackageData@@` +`class IAIWorldLocationHandle`: VTable [0x0000000002F916F8, 0x0000000000000000 offset, 3 functions] `.?AVIAIWorldLocationHandle@@` +`class IPackageDataAIWorldLocationHandle`: VTable [0x0000000002F91730, 0x0000000000000000 offset, 3 functions] `.?AVIPackageDataAIWorldLocationHandle@@` +`class IPackageDataAIWorldLocationHandle`: VTable [0x0000000002F91758, 0x0000000000000008 offset, 16 functions] `.?AVIPackageDataAIWorldLocationHandle@@` +`class IAITarget`: VTable [0x0000000002F91800, 0x0000000000000000 offset, 11 functions] `.?AVIAITarget@@` +`class IAITarget`: VTable [0x0000000002F91878, 0x0000000000000008 offset, 16 functions] `.?AVIAITarget@@` +`class BGSNamedPackageData`: VTable [0x0000000002F91920, 0x0000000000000000 offset, 16 functions] `.?AV?$BGSNamedPackageData@VIPackageData@@@@` +`class BGSPackageDataBool`: VTable [0x0000000002F919C8, 0x0000000000000000 offset, 16 functions] `.?AVBGSPackageDataBool@@` +`class BGSPackageDataBasicTemplate`: VTable [0x0000000002F91A70, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataBasicTemplate@VIPackageData@@M$1?kPackageDataFloatTypeName@@3VBSFixedString@@B$1?fPackageDataFloatDefault@@3MB@@` +`class BGSPackageDataSaveableTemplate`: VTable [0x0000000002F91B28, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataSaveableTemplate@VIPackageData@@M$1?kPackageDataFloatTypeName@@3VBSFixedString@@B$1?fPackageDataFloatDefault@@3MB@@` +`class BGSPackageDataFloat`: VTable [0x0000000002F91BE0, 0x0000000000000000 offset, 18 functions] `.?AVBGSPackageDataFloat@@` +`class BGSPackageDataBasicTemplate`: VTable [0x0000000002F91C98, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataBasicTemplate@VIPackageData@@H$1?kPackageDataIntTypeName@@3VBSFixedString@@B$1?iPackageDataIntDefault@@3HB@@` +`class BGSPackageDataSaveableTemplate`: VTable [0x0000000002F91D50, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataSaveableTemplate@VIPackageData@@H$1?kPackageDataIntTypeName@@3VBSFixedString@@B$1?iPackageDataIntDefault@@3HB@@` +`class BGSPackageDataInt`: VTable [0x0000000002F91E08, 0x0000000000000000 offset, 18 functions] `.?AVBGSPackageDataInt@@` +`class BGSNamedPackageData`: VTable [0x0000000002F91EC0, 0x0000000000000000 offset, 11 functions] `.?AV?$BGSNamedPackageData@VIAITarget@@@@` +`class BGSNamedPackageData`: VTable [0x0000000002F91F38, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSNamedPackageData@VIAITarget@@@@` +`class BGSPackageDataBasicTemplate >,&class BSFixedString const kPackageDataRefTypeName,0>`: VTable [0x0000000002F91FE0, 0x0000000000000000 offset, 13 functions] `.?AV?$BGSPackageDataBasicTemplate@VIAITarget@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@$1?kPackageDataRefTypeName@@3VBSFixedString@@B$0A@@@` +`class BGSPackageDataBasicTemplate >,&class BSFixedString const kPackageDataRefTypeName,0>`: VTable [0x0000000002F92068, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSPackageDataBasicTemplate@VIAITarget@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@$1?kPackageDataRefTypeName@@3VBSFixedString@@B$0A@@@` +`class BGSPackageDataRefOLD`: VTable [0x0000000002F92110, 0x0000000000000000 offset, 13 functions] `.?AVBGSPackageDataRefOLD@@` +`class BGSPackageDataRefOLD`: VTable [0x0000000002F92198, 0x0000000000000008 offset, 16 functions] `.?AVBGSPackageDataRefOLD@@` +`class BGSNamedPackageData`: VTable [0x0000000002F92240, 0x0000000000000000 offset, 3 functions] `.?AV?$BGSNamedPackageData@VIPackageDataAIWorldLocationHandle@@@@` +`class BGSNamedPackageData`: VTable [0x0000000002F92268, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSNamedPackageData@VIPackageDataAIWorldLocationHandle@@@@` +`class BGSPackageDataPointerTemplate`: VTable [0x0000000002F92310, 0x0000000000000000 offset, 5 functions] `.?AV?$BGSPackageDataPointerTemplate@VIPackageDataAIWorldLocationHandle@@VPackageLocation@@$1?kPackageDataLocationTypeName@@3VBSFixedString@@B@@` +`class BGSPackageDataPointerTemplate`: VTable [0x0000000002F92350, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSPackageDataPointerTemplate@VIPackageDataAIWorldLocationHandle@@VPackageLocation@@$1?kPackageDataLocationTypeName@@3VBSFixedString@@B@@` +`class BGSPackageDataLocation`: VTable [0x0000000002F923F8, 0x0000000000000000 offset, 5 functions] `.?AVBGSPackageDataLocation@@` +`class BGSPackageDataLocation`: VTable [0x0000000002F92438, 0x0000000000000008 offset, 16 functions] `.?AVBGSPackageDataLocation@@` +`class BGSPackageDataPointerTemplate`: VTable [0x0000000002F924E0, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataPointerTemplate@VIPackageData@@VPackageTarget@@$1?kPackageDataTargetSelectorTypeName@@3VBSFixedString@@B@@` +`class BGSPackageDataTargetSelector`: VTable [0x0000000002F92598, 0x0000000000000000 offset, 18 functions] `.?AVBGSPackageDataTargetSelector@@` +`struct IBSTCreator`: VTable [0x0000000002F928D0, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIPackageData@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F928F8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataLocation@@VIPackageData@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F92920, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataLocation@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F92948, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataLocation@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F92970, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataTargetSelector@@VIPackageData@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F92998, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataTargetSelector@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F929C0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataTargetSelector@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F929E8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataRefOLD@@VIPackageData@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F92A10, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataRefOLD@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F92A38, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataRefOLD@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F92A60, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataFloat@@VIPackageData@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F92A88, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataFloat@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F92AB0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataFloat@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F92AD8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataInt@@VIPackageData@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F92B00, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataInt@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F92B28, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataInt@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F92B50, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataBool@@VIPackageData@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F92B78, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataBool@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F92BA0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataBool@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`class ObjectListItem`: VTable [0x0000000002F93278, 0x0000000000000000 offset, 11 functions] `.?AVObjectListItem@@` +`class ObjectListItem`: VTable [0x0000000002F932F0, 0x0000000000000008 offset, 16 functions] `.?AVObjectListItem@@` +`class BGSPackageDataObjectList`: VTable [0x0000000002F93398, 0x0000000000000000 offset, 11 functions] `.?AVBGSPackageDataObjectList@@` +`class BGSPackageDataObjectList`: VTable [0x0000000002F93410, 0x0000000000000008 offset, 16 functions] `.?AVBGSPackageDataObjectList@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F93568, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataObjectList@@VIPackageData@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F93590, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataObjectList@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F935B8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataObjectList@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`class BGSPackageDataPointerTemplate`: VTable [0x0000000002F93790, 0x0000000000000000 offset, 13 functions] `.?AV?$BGSPackageDataPointerTemplate@VIAITarget@@VPackageTarget@@$1?kPackageDataRef2TypeName@@3VBSFixedString@@B@@` +`class BGSPackageDataPointerTemplate`: VTable [0x0000000002F93818, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSPackageDataPointerTemplate@VIAITarget@@VPackageTarget@@$1?kPackageDataRef2TypeName@@3VBSFixedString@@B@@` +`class BGSPackageDataRef`: VTable [0x0000000002F938C0, 0x0000000000000000 offset, 13 functions] `.?AVBGSPackageDataRef@@` +`class BGSPackageDataRef`: VTable [0x0000000002F93948, 0x0000000000000008 offset, 16 functions] `.?AVBGSPackageDataRef@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F93AA8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataRef@@VIPackageData@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F93AD0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataRef@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F93AF8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataRef@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`class BGSPackageDataTopic`: VTable [0x0000000002F93C10, 0x0000000000000000 offset, 16 functions] `.?AVBGSPackageDataTopic@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F93CB8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataTopic@@VIPackageData@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F93CE0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataTopic@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F93D08, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataTopic@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` +`class IProcedureTreeExecState`: VTable [0x0000000002F95218, 0x0000000000000000 offset, 6 functions] `.?AVIProcedureTreeExecState@@` +`class IProcedureTreeItem`: VTable [0x0000000002F95260, 0x0000000000000000 offset, 19 functions] `.?AVIProcedureTreeItem@@` +`class BGSTypedItem`: VTable [0x0000000002F95320, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureDoneExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureDoneExecState`: VTable [0x0000000002F95368, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureDoneExecState@@` +`class BGSProcedureTreeConditionalItem`: VTable [0x0000000002F953B0, 0x0000000000000000 offset, 19 functions] `.?AVBGSProcedureTreeConditionalItem@@` +`class BGSProcedureTreeBranch`: VTable [0x0000000002F95470, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeBranch@@` +`class BGSProcedureTreeOneChildExecState`: VTable [0x0000000002F95540, 0x0000000000000000 offset, 7 functions] `.?AVBGSProcedureTreeOneChildExecState@@` +`class BGSTypedItem`: VTable [0x0000000002F95590, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeSequence@@VBGSProcedureTreeBranch@@@@` +`class BGSProcedureTreeSequence`: VTable [0x0000000002F95660, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeSequence@@` +`class BGSTypedItem`: VTable [0x0000000002F95730, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeSequenceExecState@@VBGSProcedureTreeOneChildExecState@@@@` +`class BGSProcedureTreeSequenceExecState`: VTable [0x0000000002F95780, 0x0000000000000000 offset, 7 functions] `.?AVBGSProcedureTreeSequenceExecState@@` +`class BGSTypedItem`: VTable [0x0000000002F957D0, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeStacked@@VBGSProcedureTreeBranch@@@@` +`class BGSProcedureTreeStacked`: VTable [0x0000000002F958A0, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeStacked@@` +`class BGSTypedItem`: VTable [0x0000000002F95970, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeStackedExecState@@VBGSProcedureTreeOneChildExecState@@@@` +`class BGSProcedureTreeStackedExecState`: VTable [0x0000000002F959C0, 0x0000000000000000 offset, 7 functions] `.?AVBGSProcedureTreeStackedExecState@@` +`class BGSTypedItem`: VTable [0x0000000002F95A10, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeSimultaneous@@VBGSProcedureTreeBranch@@@@` +`class BGSProcedureTreeSimultaneous`: VTable [0x0000000002F95AE0, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeSimultaneous@@` +`class BGSTypedItem`: VTable [0x0000000002F95BB0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeSimultaneousExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureTreeSimultaneousExecState`: VTable [0x0000000002F95BF8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureTreeSimultaneousExecState@@` +`class BGSTypedItem`: VTable [0x0000000002F95C40, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeRandom@@VBGSProcedureTreeBranch@@@@` +`class BGSProcedureTreeRandom`: VTable [0x0000000002F95D10, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeRandom@@` +`class BGSTypedItem`: VTable [0x0000000002F95DE0, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeRandomExecState@@VBGSProcedureTreeOneChildExecState@@@@` +`class BGSProcedureTreeRandomExecState`: VTable [0x0000000002F95E30, 0x0000000000000000 offset, 7 functions] `.?AVBGSProcedureTreeRandomExecState@@` +`class BGSTypedItem`: VTable [0x0000000002F95F20, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureDialogueExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureDialogueExecState`: VTable [0x0000000002F95F68, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureDialogueExecState@@` +`class BGSTypedItem`: VTable [0x0000000002F95FB0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureEatExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureEatExecState`: VTable [0x0000000002F95FF8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureEatExecState@@` +`class BGSTypedItem`: VTable [0x0000000002F96040, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureFindExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureFindExecState`: VTable [0x0000000002F96088, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureFindExecState@@` +`class BGSTypedItem`: VTable [0x0000000002F960D0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureGuardExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureGuardExecState`: VTable [0x0000000002F96118, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureGuardExecState@@` +`class BGSTypedItem`: VTable [0x0000000002F96160, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureHoldPositionExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureHoldPositionExecState`: VTable [0x0000000002F961A8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureHoldPositionExecState@@` +`class BGSTypedItem`: VTable [0x0000000002F961F0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureKeepAnEyeOnExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureKeepAnEyeOnExecState`: VTable [0x0000000002F96238, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureKeepAnEyeOnExecState@@` +`class BGSTypedItem`: VTable [0x0000000002F96280, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureSayExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureSayExecState`: VTable [0x0000000002F962C8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureSayExecState@@` +`class BGSTypedItem`: VTable [0x0000000002F96310, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureWaitExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureWaitExecState`: VTable [0x0000000002F96358, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureWaitExecState@@` +`struct IBSTCreator`: VTable [0x0000000002F963A0, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIAIWorldLocation@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F963C8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSAIWorldLocationRefRadius@@VIAIWorldLocation@@@@` +`class AutoRegisterFactory,class BGSAIWorldLocationFactory>`: VTable [0x0000000002F963F0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSAIWorldLocationRefRadius@@VIAIWorldLocation@@@@VBGSAIWorldLocationFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96418, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSAIWorldLocationRefRadius@@VBGSAIWorldLocationFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96440, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSAIWorldLocationPointRadius@@VIAIWorldLocation@@@@` +`class AutoRegisterFactory,class BGSAIWorldLocationFactory>`: VTable [0x0000000002F96468, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSAIWorldLocationPointRadius@@VIAIWorldLocation@@@@VBGSAIWorldLocationFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96490, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSAIWorldLocationPointRadius@@VBGSAIWorldLocationFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F964B8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSAIWorldLocationInteriorCell@@VIAIWorldLocation@@@@` +`class AutoRegisterFactory,class BGSAIWorldLocationFactory>`: VTable [0x0000000002F964E0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSAIWorldLocationInteriorCell@@VIAIWorldLocation@@@@VBGSAIWorldLocationFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96508, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSAIWorldLocationInteriorCell@@VBGSAIWorldLocationFactory@@@@` +`struct IBSTCreator`: VTable [0x0000000002F96530, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIProcedureTreeItem@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96558, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeProcedure@@VIProcedureTreeItem@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F96580, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeProcedure@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F965A8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeProcedure@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F965D0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeSequence@@VIProcedureTreeItem@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F965F8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeSequence@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F96620, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeSequence@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96648, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeStacked@@VIProcedureTreeItem@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F96670, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeStacked@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F96698, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeStacked@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F966C0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeSimultaneous@@VIProcedureTreeItem@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F966E8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeSimultaneous@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F96710, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeSimultaneous@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96738, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeRandom@@VIProcedureTreeItem@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F96760, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeRandom@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F96788, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeRandom@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` +`struct IBSTCreator`: VTable [0x0000000002F967B0, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIProcedureTreeExecState@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F967D8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeSequenceExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96800, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeSequenceExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96828, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeSequenceExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96850, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeStackedExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96878, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeStackedExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F968A0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeStackedExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F968C8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeSimultaneousExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F968F0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeSimultaneousExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96918, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeSimultaneousExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96940, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeRandomExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96968, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeRandomExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96990, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeRandomExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F969B8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureAcquireExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F969E0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureAcquireExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96A08, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureAcquireExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96A30, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureActivateExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96A58, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureActivateExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96A80, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureActivateExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96AA8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDialogueActivateExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96AD0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDialogueActivateExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96AF8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDialogueActivateExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96B20, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDialogueExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96B48, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDialogueExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96B70, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDialogueExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96B98, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDoneExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96BC0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDoneExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96BE8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDoneExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96C10, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureEatExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96C38, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureEatExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96C60, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureEatExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96C88, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureEscortExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96CB0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureEscortExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96CD8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureEscortExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96D00, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFindExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96D28, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFindExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96D50, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFindExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96D78, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFleeExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96DA0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFleeExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96DC8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFleeExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96DF0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFlightGrabExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96E18, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFlightGrabExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96E40, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFlightGrabExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96E68, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFollowExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96E90, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFollowExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96EB8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFollowExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96EE0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureGuardExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96F08, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureGuardExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96F30, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureGuardExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96F58, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureHoldPositionExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96F80, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureHoldPositionExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F96FA8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureHoldPositionExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F96FD0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureHoverExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F96FF8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureHoverExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F97020, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureHoverExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F97048, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureKeepAnEyeOnExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F97070, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureKeepAnEyeOnExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F97098, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureKeepAnEyeOnExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F970C0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureLockUnlockExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F970E8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureLockUnlockExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F97110, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureLockUnlockExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F97138, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureOrbitExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F97160, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureOrbitExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F97188, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureOrbitExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F971B0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedurePatrolExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F971D8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedurePatrolExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F97200, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedurePatrolExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F97228, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSandboxExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F97250, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSandboxExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F97278, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSandboxExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F972A0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSayExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F972C8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSayExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F972F0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSayExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F97318, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureShoutExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F97340, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureShoutExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F97368, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureShoutExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F97390, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSitSleepExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F973B8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSitSleepExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F973E0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSitSleepExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F97408, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTravelExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F97430, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTravelExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F97458, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTravelExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F97480, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseIdleMarkerExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F974A8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseIdleMarkerExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F974D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseIdleMarkerExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F974F8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseMagicExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F97520, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseMagicExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F97548, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseMagicExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F97570, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseWeaponExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F97598, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseWeaponExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F975C0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseWeaponExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F975E8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureWaitExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F97610, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureWaitExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F97638, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureWaitExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F97660, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureWanderExecState@@VIProcedureTreeExecState@@@@` +`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002F97688, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureWanderExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` +`struct AutoRegisterCreator`: VTable [0x0000000002F976B0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureWanderExecState@@VBGSProcedureTreeExecStateFactory@@@@` +`class IProcedure`: VTable [0x0000000002F97BC8, 0x0000000000000000 offset, 32 functions] `.?AVIProcedure@@` +`class BGSProcedureBase`: VTable [0x0000000002F97D08, 0x0000000000000000 offset, 34 functions] `.?AVBGSProcedureBase@@` +`class BGSProcedureTyped`: VTable [0x0000000002F97E58, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureDoneParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureDone`: VTable [0x0000000002F97FB8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureDone@@` +`struct IBSTCreator`: VTable [0x0000000002F98118, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIProcedure@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F98140, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDone@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F98168, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDone@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F98190, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDone@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class IPackageDataTypeCheck`: VTable [0x0000000002F98730, 0x0000000000000000 offset, 4 functions] `.?AVIPackageDataTypeCheck@@` +`class BGSProcedureTyped`: VTable [0x0000000002F98760, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureAcquireParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureAcquire`: VTable [0x0000000002F988C0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureAcquire@@` +`class BGSTypedItem`: VTable [0x0000000002F98A20, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureAcquireExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureAcquireExecState`: VTable [0x0000000002F98A68, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureAcquireExecState@@` +`class BGSPackageDataTypeCheck`: VTable [0x0000000002F98AB0, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIAITarget@@VBGSPackageDataRef@@@@` +`class BGSPackageDataTypeCheck`: VTable [0x0000000002F98AE0, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataInt@@V1@@@` +`class BGSPackageDataTypeCheck`: VTable [0x0000000002F98B10, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataBool@@V1@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F98B88, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureAcquire@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F98BB0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureAcquire@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F98BD8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureAcquire@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F98CF0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureActivateParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureActivate`: VTable [0x0000000002F98E50, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureActivate@@` +`class BGSTypedItem`: VTable [0x0000000002F98FB0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureActivateExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureActivateExecState`: VTable [0x0000000002F98FF8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureActivateExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F99050, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureActivate@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F99078, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureActivate@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F990A0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureActivate@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F991C8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureDialogueParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureDialogue`: VTable [0x0000000002F99328, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureDialogue@@` +`class BGSPackageDataTypeCheck`: VTable [0x0000000002F99488, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataTopic@@V1@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F994F0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDialogue@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F99518, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDialogue@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F99540, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDialogue@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F996C8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureDialogueActivateParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureDialogueActivate`: VTable [0x0000000002F99828, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureDialogueActivate@@` +`class BGSTypedItem`: VTable [0x0000000002F99988, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureDialogueActivateExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureDialogueActivateExecState`: VTable [0x0000000002F999D0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureDialogueActivateExecState@@` +`class BGSPackageDataTypeCheck`: VTable [0x0000000002F99A18, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIPackageDataAIWorldLocationHandle@@VBGSPackageDataLocation@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F99A48, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDialogueActivate@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F99A70, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDialogueActivate@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F99A98, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDialogueActivate@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F99C00, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureEatParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureEat`: VTable [0x0000000002F99D60, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureEat@@` +`class BGSPackageDataTypeCheck`: VTable [0x0000000002F99EC0, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataTargetSelector@@V1@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F99F08, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureEat@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F99F30, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureEat@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F99F58, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureEat@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9A130, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureEscortParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureEscort`: VTable [0x0000000002F9A290, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureEscort@@` +`class BGSTypedItem`: VTable [0x0000000002F9A3F0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureEscortExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureEscortExecState`: VTable [0x0000000002F9A438, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureEscortExecState@@` +`class BGSPackageDataTypeCheck`: VTable [0x0000000002F9A480, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIAITarget@@VBGSPackageDataObjectList@@@@` +`class BGSPackageDataTypeCheck`: VTable [0x0000000002F9A4B0, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataFloat@@V1@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9A588, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureEscort@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9A5B0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureEscort@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9A5D8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureEscort@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9A718, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFindParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureFind`: VTable [0x0000000002F9A878, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFind@@` +`class BGSPackageDataTypeCheck`: VTable [0x0000000002F9A9D8, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataObjectList@@V1@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9AA30, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFind@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9AA58, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFind@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9AA80, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFind@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9AC18, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFleeParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureFlee`: VTable [0x0000000002F9AD78, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFlee@@` +`class BGSTypedItem`: VTable [0x0000000002F9AED8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureFleeExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureFleeExecState`: VTable [0x0000000002F9AF20, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureFleeExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9B000, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFlee@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9B028, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFlee@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9B050, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFlee@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9B168, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFlightGrabParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureFlightGrab`: VTable [0x0000000002F9B2C8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFlightGrab@@` +`class BGSTypedItem`: VTable [0x0000000002F9B428, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureFlightGrabExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureFlightGrabExecState`: VTable [0x0000000002F9B470, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureFlightGrabExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9B4D8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFlightGrab@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9B500, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFlightGrab@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9B528, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFlightGrab@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9B710, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFollowParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureFollow`: VTable [0x0000000002F9B870, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFollow@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9B9D0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFollowToParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureFollowTo`: VTable [0x0000000002F9BB30, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFollowTo@@` +`class BGSTypedItem`: VTable [0x0000000002F9BC90, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureFollowExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureFollowExecState`: VTable [0x0000000002F9BCD8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureFollowExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9BD68, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFollow@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9BD90, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFollow@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9BDB8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFollow@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSPackageDataTypeCheck`: VTable [0x0000000002F9BDE0, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIPackageDataAIWorldLocationHandle@@VBGSPackageDataRef@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9BE20, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFollowTo@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9BE48, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFollowTo@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9BE70, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFollowTo@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9BF48, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureForceGreetParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureForceGreet`: VTable [0x0000000002F9C0A8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureForceGreet@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9C240, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureForceGreet@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9C268, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureForceGreet@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9C290, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureForceGreet@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9C3B0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureGuardParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureGuard`: VTable [0x0000000002F9C510, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureGuard@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9C6B8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureGuard@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9C6E0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureGuard@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9C708, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureGuard@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9C7F0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureHoldPositionParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureHoldPosition`: VTable [0x0000000002F9C950, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureHoldPosition@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9CAB0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureHoldPosition@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9CAD8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureHoldPosition@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9CB00, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureHoldPosition@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9CC30, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureHoverParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureHover`: VTable [0x0000000002F9CD90, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureHover@@` +`class BGSTypedItem`: VTable [0x0000000002F9CEF0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureHoverExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureHoverExecState`: VTable [0x0000000002F9CF38, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureHoverExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9CF88, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureHover@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9CFB0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureHover@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9CFD8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureHover@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9D0D8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureKeepAnEyeOnParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureKeepAnEyeOn`: VTable [0x0000000002F9D238, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureKeepAnEyeOn@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9D3C8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureKeepAnEyeOn@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9D3F0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureKeepAnEyeOn@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9D418, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureKeepAnEyeOn@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9D590, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureLockParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureLock`: VTable [0x0000000002F9D6F0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureLock@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9D850, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureUnlockParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureUnlock`: VTable [0x0000000002F9D9B0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureUnlock@@` +`class BGSTypedItem`: VTable [0x0000000002F9DB10, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureLockUnlockExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureLockUnlockExecState`: VTable [0x0000000002F9DB58, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureLockUnlockExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9DBB8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureLock@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9DBE0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureLock@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9DC08, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureLock@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9DC40, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUnlock@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9DC68, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUnlock@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9DC90, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUnlock@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9DDB8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureOrbitParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureOrbit`: VTable [0x0000000002F9DF18, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureOrbit@@` +`class BGSTypedItem`: VTable [0x0000000002F9E078, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureOrbitExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureOrbitExecState`: VTable [0x0000000002F9E0C0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureOrbitExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9E198, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureOrbit@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9E1C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureOrbit@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9E1E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureOrbit@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9E328, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedurePatrolParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedurePatrol`: VTable [0x0000000002F9E488, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedurePatrol@@` +`class BGSTypedItem`: VTable [0x0000000002F9E5E8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedurePatrolExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedurePatrolExecState`: VTable [0x0000000002F9E630, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedurePatrolExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9E6C0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedurePatrol@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9E6E8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedurePatrol@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9E710, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedurePatrol@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9E810, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedurePursueParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedurePursue`: VTable [0x0000000002F9E970, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedurePursue@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9EB10, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedurePursue@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9EB38, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedurePursue@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9EB60, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedurePursue@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9EE20, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureSandboxParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureSandbox`: VTable [0x0000000002F9EF80, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureSandbox@@` +`class BGSTypedItem`: VTable [0x0000000002F9F0E0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureSandboxExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureSandboxExecState`: VTable [0x0000000002F9F128, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureSandboxExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9F238, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSandbox@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9F260, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSandbox@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9F288, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSandbox@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002F9F380, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureSayParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureSay`: VTable [0x0000000002F9F4E0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureSay@@` +`struct BSTDerivedCreator`: VTable [0x0000000002F9F640, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSay@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F9F668, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSay@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002F9F690, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSay@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002FA1828, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureShoutParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureShout`: VTable [0x0000000002FA1988, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureShout@@` +`class BGSTypedItem`: VTable [0x0000000002FA1AE8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureShoutExecState@@VIProcedureTreeExecState@@@@` +`class BSTEventSink`: VTable [0x0000000002FA1B30, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UTESSpellCastEvent@@@@` +`class BGSProcedureShoutExecState`: VTable [0x0000000002FA1B50, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureShoutExecState@@` +`class BGSProcedureShoutExecState`: VTable [0x0000000002FA1B98, 0x0000000000000008 offset, 2 functions] `.?AVBGSProcedureShoutExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002FA1BE0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureShout@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002FA1C08, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureShout@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002FA1C30, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureShout@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002FA1DE8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureSitParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureSit`: VTable [0x0000000002FA1F48, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureSit@@` +`class BGSProcedureTyped`: VTable [0x0000000002FA20A8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureSleepParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureSleep`: VTable [0x0000000002FA2208, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureSleep@@` +`class BGSTypedItem`: VTable [0x0000000002FA2368, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureSitSleepExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureSitSleepExecState`: VTable [0x0000000002FA23B0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureSitSleepExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002FA23F8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSit@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002FA2420, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSit@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002FA2448, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSit@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000002FA2470, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSleep@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002FA2498, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSleep@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002FA24C0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSleep@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002FA25D8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureTravelParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureTravel`: VTable [0x0000000002FA2738, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureTravel@@` +`class BGSTypedItem`: VTable [0x0000000002FA2898, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureTravelExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureTravelExecState`: VTable [0x0000000002FA28E0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureTravelExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002FA2928, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTravel@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002FA2950, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTravel@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002FA2978, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTravel@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSTypedItem`: VTable [0x0000000002FA2B30, 0x0000000000000000 offset, 19 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeProcedure@@VBGSProcedureTreeConditionalItem@@@@` +`class BGSProcedureTreeProcedure`: VTable [0x0000000002FA2BF0, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeProcedure@@` +`class BGSProcedureTyped`: VTable [0x0000000002FA3050, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureUseIdleMarkerParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureUseIdleMarker`: VTable [0x0000000002FA31B0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureUseIdleMarker@@` +`class BGSTypedItem`: VTable [0x0000000002FA3310, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureUseIdleMarkerExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureUseIdleMarkerExecState`: VTable [0x0000000002FA3358, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureUseIdleMarkerExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002FA33A0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseIdleMarker@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002FA33C8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseIdleMarker@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002FA33F0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseIdleMarker@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002FA3638, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureUseMagicParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureUseMagic`: VTable [0x0000000002FA3798, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureUseMagic@@` +`class BGSTypedItem`: VTable [0x0000000002FA38F8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureUseMagicExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureUseMagicExecState`: VTable [0x0000000002FA3940, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureUseMagicExecState@@` +`class BGSProcedureUseMagicExecState`: VTable [0x0000000002FA3988, 0x0000000000000008 offset, 2 functions] `.?AVBGSProcedureUseMagicExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002FA3A28, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseMagic@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002FA3A50, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseMagic@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002FA3A78, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseMagic@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002FA3D98, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureUseWeaponParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureUseWeapon`: VTable [0x0000000002FA3EF8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureUseWeapon@@` +`class BGSTypedItem`: VTable [0x0000000002FA4058, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureUseWeaponExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureUseWeaponExecState`: VTable [0x0000000002FA40A0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureUseWeaponExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002FA4218, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseWeapon@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002FA4240, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseWeapon@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002FA4268, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseWeapon@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002FA4360, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureWaitParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureWait`: VTable [0x0000000002FA44C0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureWait@@` +`struct BSTDerivedCreator`: VTable [0x0000000002FA4630, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureWait@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002FA4658, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureWait@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002FA4680, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureWait@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class BGSProcedureTyped`: VTable [0x0000000002FA47C8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureWanderParamTypes@@3QBUBGSProcedureParamInfo@@B@@` +`class BGSProcedureWander`: VTable [0x0000000002FA4928, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureWander@@` +`class BGSTypedItem`: VTable [0x0000000002FA4A88, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureWanderExecState@@VIProcedureTreeExecState@@@@` +`class BGSProcedureWanderExecState`: VTable [0x0000000002FA4AD0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureWanderExecState@@` +`struct BSTDerivedCreator`: VTable [0x0000000002FA4B48, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureWander@@VIProcedure@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002FA4B70, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureWander@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000002FA4B98, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureWander@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` +`class IVisitProcedures`: VTable [0x0000000002FA4BF0, 0x0000000000000000 offset, 2 functions] `.?AVIVisitProcedures@@` +`class BGSVisitProceduresInitActorLocation`: VTable [0x0000000002FA4C10, 0x0000000000000000 offset, 2 functions] `.?AVBGSVisitProceduresInitActorLocation@@` +`class BGSVisitProceduresCheckGuardWarnTarget`: VTable [0x0000000002FA4C30, 0x0000000000000000 offset, 2 functions] `.?AVBGSVisitProceduresCheckGuardWarnTarget@@` +`class TESPackage`: VTable [0x0000000002FA6110, 0x0000000000000000 offset, 101 functions] `.?AVTESPackage@@` +`class CSScript::ICanRemoveScriptFunctor`: VTable [0x0000000002FA64E8, 0x0000000000000000 offset, 2 functions] `.?AVICanRemoveScriptFunctor@CSScript@@` +`class CSScript::IFragmentUIHandler`: VTable [0x0000000002FA6508, 0x0000000000000000 offset, 6 functions] `.?AVIFragmentUIHandler@CSScript@@` +`class PackageCreator`: VTable [0x0000000002FA6568, 0x0000000000000000 offset, 7 functions] `.?AVPackageCreator@@` +`class `anonymous namespace'::PackageFragmentUIHandler`: VTable [0x0000000002FA65B8, 0x0000000000000000 offset, 6 functions] `.?AVPackageFragmentUIHandler@?A0x64c114c7@@` +`class PackageInternal::FragmentRemoveCheckFunctor`: VTable [0x0000000002FA6600, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@PackageInternal@@` +`class NiTMapBase >,class TESObjectREFR * __ptr64,bool>`: VTable [0x0000000002FA6D38, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESObjectREFR@@_N@@@@PEAVTESObjectREFR@@_N@@` +`class NiTMap`: VTable [0x0000000002FA6D88, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESObjectREFR@@_N@@` +`class TESPackageData`: VTable [0x0000000002FA6F00, 0x0000000000000000 offset, 9 functions] `.?AVTESPackageData@@` +`class TESAmbushPackageData`: VTable [0x0000000002FA6F60, 0x0000000000000000 offset, 9 functions] `.?AVTESAmbushPackageData@@` +`class TESCustomPackageData`: VTable [0x0000000002FA74B8, 0x0000000000000000 offset, 36 functions] `.?AVTESCustomPackageData@@` +`class IProcedureTreeVisitor`: VTable [0x0000000002FA7620, 0x0000000000000000 offset, 3 functions] `.?AVIProcedureTreeVisitor@@` +`class CustomUtils::HasForceGreetVisitor`: VTable [0x0000000002FA7648, 0x0000000000000000 offset, 3 functions] `.?AVHasForceGreetVisitor@CustomUtils@@` +`class TESDialoguePackageData`: VTable [0x0000000002FA7B20, 0x0000000000000000 offset, 9 functions] `.?AVTESDialoguePackageData@@` +`class TESEatPackageData`: VTable [0x0000000002FA7C30, 0x0000000000000000 offset, 9 functions] `.?AVTESEatPackageData@@` +`class TESEscortPackageData`: VTable [0x0000000002FA7CD0, 0x0000000000000000 offset, 9 functions] `.?AVTESEscortPackageData@@` +`class TESFindPackageData`: VTable [0x0000000002FA7D38, 0x0000000000000000 offset, 10 functions] `.?AVTESFindPackageData@@` +`class TESFollowPackageData`: VTable [0x0000000002FA7DE8, 0x0000000000000000 offset, 9 functions] `.?AVTESFollowPackageData@@` +`class TESPatrolPackageData`: VTable [0x0000000002FA7E48, 0x0000000000000000 offset, 9 functions] `.?AVTESPatrolPackageData@@` +`class TESUseItemPackageData`: VTable [0x0000000002FA7EE8, 0x0000000000000000 offset, 9 functions] `.?AVTESUseItemPackageData@@` +`class TESUseWeaponPackageData`: VTable [0x0000000002FA8008, 0x0000000000000000 offset, 9 functions] `.?AVTESUseWeaponPackageData@@` +`class PackageLocation`: VTable [0x0000000002FA8650, 0x0000000000000000 offset, 3 functions] `.?AVPackageLocation@@` +`class BGSPackageDataTypeCheck`: VTable [0x0000000002FA8B78, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIAITarget@@V1@@@` +`struct MiscStatManager::FindStatByCRC`: VTable [0x0000000002FAA600, 0x0000000000000000 offset, 1 functions] `.?AUFindStatByCRC@MiscStatManager@@` +`struct BSScript::IFindBoundObjectFunctor`: VTable [0x0000000002FAA618, 0x0000000000000000 offset, 2 functions] `.?AUIFindBoundObjectFunctor@BSScript@@` +`struct `anonymous namespace'::VMConditionalVariableExistsFunc`: VTable [0x0000000002FAA650, 0x0000000000000000 offset, 2 functions] `.?AUVMConditionalVariableExistsFunc@?A0x9603100a@@` +`class ExtraHavok`: VTable [0x0000000002FAB040, 0x0000000000000000 offset, 3 functions] `.?AVExtraHavok@@` +`class BaseExtraList`: VTable [0x0000000002FAF5B0, 0x0000000000000000 offset, 1 functions] `.?AVBaseExtraList@@` +`class ExtraCell3D`: VTable [0x0000000002FAF5C8, 0x0000000000000000 offset, 3 functions] `.?AVExtraCell3D@@` +`class ExtraRegionList`: VTable [0x0000000002FAF5F0, 0x0000000000000000 offset, 3 functions] `.?AVExtraRegionList@@` +`class ExtraCellMusicType`: VTable [0x0000000002FAF618, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellMusicType@@` +`class ExtraCellAcousticSpace`: VTable [0x0000000002FAF640, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellAcousticSpace@@` +`class ExtraCellSkyRegion`: VTable [0x0000000002FAF668, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellSkyRegion@@` +`class ExtraCellImageSpace`: VTable [0x0000000002FAF690, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellImageSpace@@` +`class ExtraCellWaterType`: VTable [0x0000000002FAF6B8, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellWaterType@@` +`class ExtraDetachTime`: VTable [0x0000000002FAF6E0, 0x0000000000000000 offset, 3 functions] `.?AVExtraDetachTime@@` +`class ExtraGIDBuffer`: VTable [0x0000000002FAF708, 0x0000000000000000 offset, 3 functions] `.?AVExtraGIDBuffer@@` +`class ExtraMagicLight`: VTable [0x0000000002FAF780, 0x0000000000000000 offset, 3 functions] `.?AVExtraMagicLight@@` +`class ExtraFromAlias`: VTable [0x0000000002FAF7A8, 0x0000000000000000 offset, 3 functions] `.?AVExtraFromAlias@@` +`class ExtraOpenCloseActivateRef`: VTable [0x0000000002FAF7D0, 0x0000000000000000 offset, 3 functions] `.?AVExtraOpenCloseActivateRef@@` +`class ExtraTeleportName`: VTable [0x0000000002FAF7F8, 0x0000000000000000 offset, 3 functions] `.?AVExtraTeleportName@@` +`class ExtraOriginalReference`: VTable [0x0000000002FAF820, 0x0000000000000000 offset, 3 functions] `.?AVExtraOriginalReference@@` +`class ExtraWorn`: VTable [0x0000000002FAF848, 0x0000000000000000 offset, 3 functions] `.?AVExtraWorn@@` +`class ExtraWornLeft`: VTable [0x0000000002FAF870, 0x0000000000000000 offset, 3 functions] `.?AVExtraWornLeft@@` +`class ExtraCannotWear`: VTable [0x0000000002FAF898, 0x0000000000000000 offset, 3 functions] `.?AVExtraCannotWear@@` +`class ExtraHealth`: VTable [0x0000000002FAF8C0, 0x0000000000000000 offset, 3 functions] `.?AVExtraHealth@@` +`class ExtraHealthPerc`: VTable [0x0000000002FAF8E8, 0x0000000000000000 offset, 3 functions] `.?AVExtraHealthPerc@@` +`class ExtraTimeLeft`: VTable [0x0000000002FAF910, 0x0000000000000000 offset, 3 functions] `.?AVExtraTimeLeft@@` +`class ExtraCharge`: VTable [0x0000000002FAF938, 0x0000000000000000 offset, 3 functions] `.?AVExtraCharge@@` +`class ExtraScale`: VTable [0x0000000002FAF960, 0x0000000000000000 offset, 3 functions] `.?AVExtraScale@@` +`class ExtraCachedScale`: VTable [0x0000000002FAF988, 0x0000000000000000 offset, 3 functions] `.?AVExtraCachedScale@@` +`class ExtraReferenceHandle`: VTable [0x0000000002FAF9B0, 0x0000000000000000 offset, 3 functions] `.?AVExtraReferenceHandle@@` +`class ExtraLocation`: VTable [0x0000000002FAF9D8, 0x0000000000000000 offset, 3 functions] `.?AVExtraLocation@@` +`class ExtraMasterLocation`: VTable [0x0000000002FAFA00, 0x0000000000000000 offset, 3 functions] `.?AVExtraMasterLocation@@` +`class ExtraEditorFlags`: VTable [0x0000000002FAFA28, 0x0000000000000000 offset, 3 functions] `.?AVExtraEditorFlags@@` +`class ExtraEditorTestRadius`: VTable [0x0000000002FAFA50, 0x0000000000000000 offset, 3 functions] `.?AVExtraEditorTestRadius@@` +`class ExtraLeveledItem`: VTable [0x0000000002FAFA78, 0x0000000000000000 offset, 3 functions] `.?AVExtraLeveledItem@@` +`class ExtraOutfitItem`: VTable [0x0000000002FAFAA0, 0x0000000000000000 offset, 3 functions] `.?AVExtraOutfitItem@@` +`class ExtraRagDollData`: VTable [0x0000000002FAFAC8, 0x0000000000000000 offset, 3 functions] `.?AVExtraRagDollData@@` +`class ExtraEncounterZone`: VTable [0x0000000002FAFAF0, 0x0000000000000000 offset, 3 functions] `.?AVExtraEncounterZone@@` +`class ExtraEnableStateParent`: VTable [0x0000000002FAFB18, 0x0000000000000000 offset, 3 functions] `.?AVExtraEnableStateParent@@` +`class ExtraEnableStateChildren`: VTable [0x0000000002FAFB40, 0x0000000000000000 offset, 3 functions] `.?AVExtraEnableStateChildren@@` +`class ExtraAttachRef`: VTable [0x0000000002FAFB68, 0x0000000000000000 offset, 3 functions] `.?AVExtraAttachRef@@` +`class ExtraAttachRefChildren`: VTable [0x0000000002FAFB90, 0x0000000000000000 offset, 3 functions] `.?AVExtraAttachRefChildren@@` +`class ExtraRandomTeleportMarker`: VTable [0x0000000002FAFBB8, 0x0000000000000000 offset, 3 functions] `.?AVExtraRandomTeleportMarker@@` +`class ExtraAshPileRef`: VTable [0x0000000002FAFBE0, 0x0000000000000000 offset, 3 functions] `.?AVExtraAshPileRef@@` +`class ExtraLocationRefType`: VTable [0x0000000002FAFC08, 0x0000000000000000 offset, 3 functions] `.?AVExtraLocationRefType@@` +`class ExtraLeveledItemBase`: VTable [0x0000000002FAFC30, 0x0000000000000000 offset, 3 functions] `.?AVExtraLeveledItemBase@@` +`class ExtraLinkedRef`: VTable [0x0000000002FAFC58, 0x0000000000000000 offset, 3 functions] `.?AVExtraLinkedRef@@` +`class ExtraLinkedRefChildren`: VTable [0x0000000002FAFC80, 0x0000000000000000 offset, 3 functions] `.?AVExtraLinkedRefChildren@@` +`class ExtraActivateRef`: VTable [0x0000000002FAFCA8, 0x0000000000000000 offset, 3 functions] `.?AVExtraActivateRef@@` +`class ExtraActivateRefChildren`: VTable [0x0000000002FAFCD0, 0x0000000000000000 offset, 3 functions] `.?AVExtraActivateRefChildren@@` +`class ExtraReflectedRefs`: VTable [0x0000000002FAFCF8, 0x0000000000000000 offset, 3 functions] `.?AVExtraReflectedRefs@@` +`class ExtraReflectorRefs`: VTable [0x0000000002FAFD20, 0x0000000000000000 offset, 3 functions] `.?AVExtraReflectorRefs@@` +`class ExtraWaterLightRefs`: VTable [0x0000000002FAFD48, 0x0000000000000000 offset, 3 functions] `.?AVExtraWaterLightRefs@@` +`class ExtraLitWaterRefs`: VTable [0x0000000002FAFD70, 0x0000000000000000 offset, 3 functions] `.?AVExtraLitWaterRefs@@` +`class ExtraLevCreaModifier`: VTable [0x0000000002FAFD98, 0x0000000000000000 offset, 3 functions] `.?AVExtraLevCreaModifier@@` +`class ExtraPoison`: VTable [0x0000000002FAFDC0, 0x0000000000000000 offset, 3 functions] `.?AVExtraPoison@@` +`class ExtraEnchantment`: VTable [0x0000000002FAFDE8, 0x0000000000000000 offset, 3 functions] `.?AVExtraEnchantment@@` +`class ExtraLastFinishedSequence`: VTable [0x0000000002FAFE10, 0x0000000000000000 offset, 3 functions] `.?AVExtraLastFinishedSequence@@` +`class ExtraSpawnContainer`: VTable [0x0000000002FAFE38, 0x0000000000000000 offset, 3 functions] `.?AVExtraSpawnContainer@@` +`class ExtraEmittanceSource`: VTable [0x0000000002FAFE60, 0x0000000000000000 offset, 3 functions] `.?AVExtraEmittanceSource@@` +`class ExtraMultiBoundRef`: VTable [0x0000000002FAFE88, 0x0000000000000000 offset, 3 functions] `.?AVExtraMultiBoundRef@@` +`class ExtraMultiBound`: VTable [0x0000000002FAFEB0, 0x0000000000000000 offset, 3 functions] `.?AVExtraMultiBound@@` +`class ExtraRoom`: VTable [0x0000000002FAFED8, 0x0000000000000000 offset, 3 functions] `.?AVExtraRoom@@` +`class ExtraItemDropper`: VTable [0x0000000002FAFF00, 0x0000000000000000 offset, 3 functions] `.?AVExtraItemDropper@@` +`class ExtraDroppedItemList`: VTable [0x0000000002FAFF28, 0x0000000000000000 offset, 3 functions] `.?AVExtraDroppedItemList@@` +`class ExtraHeadingTarget`: VTable [0x0000000002FAFF50, 0x0000000000000000 offset, 3 functions] `.?AVExtraHeadingTarget@@` +`class ExtraRefractionProperty`: VTable [0x0000000002FAFF78, 0x0000000000000000 offset, 3 functions] `.?AVExtraRefractionProperty@@` +`class ExtraStartingWorldOrCell`: VTable [0x0000000002FAFFA0, 0x0000000000000000 offset, 3 functions] `.?AVExtraStartingWorldOrCell@@` +`class ExtraHasNoRumors`: VTable [0x0000000002FAFFC8, 0x0000000000000000 offset, 3 functions] `.?AVExtraHasNoRumors@@` +`class ExtraSound`: VTable [0x0000000002FAFFF0, 0x0000000000000000 offset, 3 functions] `.?AVExtraSound@@` +`class ExtraCreatureAwakeSound`: VTable [0x0000000002FB0018, 0x0000000000000000 offset, 3 functions] `.?AVExtraCreatureAwakeSound@@` +`class ExtraCreatureMovementSound`: VTable [0x0000000002FB0040, 0x0000000000000000 offset, 3 functions] `.?AVExtraCreatureMovementSound@@` +`class ExtraWeaponIdleSound`: VTable [0x0000000002FB0068, 0x0000000000000000 offset, 3 functions] `.?AVExtraWeaponIdleSound@@` +`class ExtraWeaponAttackSound`: VTable [0x0000000002FB0090, 0x0000000000000000 offset, 3 functions] `.?AVExtraWeaponAttackSound@@` +`class ExtraActivateLoopSound`: VTable [0x0000000002FB00B8, 0x0000000000000000 offset, 3 functions] `.?AVExtraActivateLoopSound@@` +`class ExtraObjectHealth`: VTable [0x0000000002FB00E0, 0x0000000000000000 offset, 3 functions] `.?AVExtraObjectHealth@@` +`class ExtraTerminalState`: VTable [0x0000000002FB0108, 0x0000000000000000 offset, 3 functions] `.?AVExtraTerminalState@@` +`class ExtraModelSwap`: VTable [0x0000000002FB0130, 0x0000000000000000 offset, 3 functions] `.?AVExtraModelSwap@@` +`class ExtraRadius`: VTable [0x0000000002FB0158, 0x0000000000000000 offset, 3 functions] `.?AVExtraRadius@@` +`class ExtraFactionChanges`: VTable [0x0000000002FB0180, 0x0000000000000000 offset, 3 functions] `.?AVExtraFactionChanges@@` +`class ExtraActorCause`: VTable [0x0000000002FB01A8, 0x0000000000000000 offset, 3 functions] `.?AVExtraActorCause@@` +`class ExtraAmmo`: VTable [0x0000000002FB01D0, 0x0000000000000000 offset, 3 functions] `.?AVExtraAmmo@@` +`class ExtraCombatStyle`: VTable [0x0000000002FB01F8, 0x0000000000000000 offset, 3 functions] `.?AVExtraCombatStyle@@` +`class ExtraLinkColorPair`: VTable [0x0000000002FB0220, 0x0000000000000000 offset, 3 functions] `.?AVExtraLinkColorPair@@` +`class ExtraPrimitive`: VTable [0x0000000002FB0248, 0x0000000000000000 offset, 3 functions] `.?AVExtraPrimitive@@` +`class ExtraPatrolRefData`: VTable [0x0000000002FB0270, 0x0000000000000000 offset, 3 functions] `.?AVExtraPatrolRefData@@` +`class ExtraOcclusionPlaneRefData`: VTable [0x0000000002FB0298, 0x0000000000000000 offset, 3 functions] `.?AVExtraOcclusionPlaneRefData@@` +`class ExtraPortalRefData`: VTable [0x0000000002FB02C0, 0x0000000000000000 offset, 3 functions] `.?AVExtraPortalRefData@@` +`class ExtraRoomRefData`: VTable [0x0000000002FB02E8, 0x0000000000000000 offset, 3 functions] `.?AVExtraRoomRefData@@` +`class ExtraCollisionData`: VTable [0x0000000002FB0310, 0x0000000000000000 offset, 3 functions] `.?AVExtraCollisionData@@` +`class ExtraGuardedRefData`: VTable [0x0000000002FB0338, 0x0000000000000000 offset, 3 functions] `.?AVExtraGuardedRefData@@` +`class ExtraIgnoredBySandbox`: VTable [0x0000000002FB0360, 0x0000000000000000 offset, 3 functions] `.?AVExtraIgnoredBySandbox@@` +`class ExtraAliasInstanceArray`: VTable [0x0000000002FB0388, 0x0000000000000000 offset, 3 functions] `.?AVExtraAliasInstanceArray@@` +`class ExtraPromotedRef`: VTable [0x0000000002FB03B0, 0x0000000000000000 offset, 3 functions] `.?AVExtraPromotedRef@@` +`class ExtraLightData`: VTable [0x0000000002FB03D8, 0x0000000000000000 offset, 3 functions] `.?AVExtraLightData@@` +`class ExtraSceneData`: VTable [0x0000000002FB0400, 0x0000000000000000 offset, 3 functions] `.?AVExtraSceneData@@` +`class ExtraBadPosition`: VTable [0x0000000002FB0428, 0x0000000000000000 offset, 3 functions] `.?AVExtraBadPosition@@` +`class ExtraHeadTrackingWeight`: VTable [0x0000000002FB0450, 0x0000000000000000 offset, 3 functions] `.?AVExtraHeadTrackingWeight@@` +`class ExtraFavorCost`: VTable [0x0000000002FB0478, 0x0000000000000000 offset, 3 functions] `.?AVExtraFavorCost@@` +`class ExtraMissingLinkedRefIDs`: VTable [0x0000000002FB04A0, 0x0000000000000000 offset, 3 functions] `.?AVExtraMissingLinkedRefIDs@@` +`class ExtraMissingRefIDs`: VTable [0x0000000002FB04C8, 0x0000000000000000 offset, 3 functions] `.?AVExtraMissingRefIDs@@` +`class ExtraAttachedArrows3D`: VTable [0x0000000002FB04F0, 0x0000000000000000 offset, 3 functions] `.?AVExtraAttachedArrows3D@@` +`class ExtraAlphaCutoff`: VTable [0x0000000002FB0518, 0x0000000000000000 offset, 3 functions] `.?AVExtraAlphaCutoff@@` +`class ExtraHorse`: VTable [0x0000000002FB0540, 0x0000000000000000 offset, 3 functions] `.?AVExtraHorse@@` +`class ExtraForcedTarget`: VTable [0x0000000002FB0568, 0x0000000000000000 offset, 3 functions] `.?AVExtraForcedTarget@@` +`class ExtraForcedLandingMarker`: VTable [0x0000000002FB0590, 0x0000000000000000 offset, 3 functions] `.?AVExtraForcedLandingMarker@@` +`class ExtraUniqueID`: VTable [0x0000000002FB05B8, 0x0000000000000000 offset, 3 functions] `.?AVExtraUniqueID@@` +`class ExtraFlags`: VTable [0x0000000002FB05E0, 0x0000000000000000 offset, 3 functions] `.?AVExtraFlags@@` +`class ExtraDecalGroup`: VTable [0x0000000002FB0608, 0x0000000000000000 offset, 3 functions] `.?AVExtraDecalGroup@@` +`class ExtraCellWaterEnvMap`: VTable [0x0000000002FB0630, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellWaterEnvMap@@` +`class ExtraWaterData`: VTable [0x0000000002FB0658, 0x0000000000000000 offset, 3 functions] `.?AVExtraWaterData@@` +`class ExtraWaterCurrentZoneData`: VTable [0x0000000002FB0680, 0x0000000000000000 offset, 3 functions] `.?AVExtraWaterCurrentZoneData@@` +`class ExtraScriptedAnimDependence`: VTable [0x0000000002FB06A8, 0x0000000000000000 offset, 3 functions] `.?AVExtraScriptedAnimDependence@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002FB1F20, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0BA@@@@@` +`class ExtraAnimGraphManager`: VTable [0x0000000002FB3800, 0x0000000000000000 offset, 3 functions] `.?AVExtraAnimGraphManager@@` +`class ExtraDismemberedLimbs`: VTable [0x0000000002FB3828, 0x0000000000000000 offset, 3 functions] `.?AVExtraDismemberedLimbs@@` +`class ExtraBiped`: VTable [0x0000000002FB3850, 0x0000000000000000 offset, 3 functions] `.?AVExtraBiped@@` +`class ExtraLight`: VTable [0x0000000002FB3878, 0x0000000000000000 offset, 3 functions] `.?AVExtraLight@@` +`class ExtraLock`: VTable [0x0000000002FB38A0, 0x0000000000000000 offset, 3 functions] `.?AVExtraLock@@` +`class ExtraLeveledCreature`: VTable [0x0000000002FB38C8, 0x0000000000000000 offset, 3 functions] `.?AVExtraLeveledCreature@@` +`class ExtraTeleport`: VTable [0x0000000002FB38F0, 0x0000000000000000 offset, 3 functions] `.?AVExtraTeleport@@` +`class ExtraMapMarker`: VTable [0x0000000002FB3918, 0x0000000000000000 offset, 3 functions] `.?AVExtraMapMarker@@` +`class ExtraAction`: VTable [0x0000000002FB3940, 0x0000000000000000 offset, 3 functions] `.?AVExtraAction@@` +`class ExtraStartingPosition`: VTable [0x0000000002FB3968, 0x0000000000000000 offset, 3 functions] `.?AVExtraStartingPosition@@` +`class ExtraContainerChanges`: VTable [0x0000000002FB3990, 0x0000000000000000 offset, 3 functions] `.?AVExtraContainerChanges@@` +`class ExtraOwnership`: VTable [0x0000000002FB39B8, 0x0000000000000000 offset, 3 functions] `.?AVExtraOwnership@@` +`class ExtraLockList`: VTable [0x0000000002FB39E0, 0x0000000000000000 offset, 3 functions] `.?AVExtraLockList@@` +`class ExtraGlobal`: VTable [0x0000000002FB3A08, 0x0000000000000000 offset, 3 functions] `.?AVExtraGlobal@@` +`class ExtraRank`: VTable [0x0000000002FB3A30, 0x0000000000000000 offset, 3 functions] `.?AVExtraRank@@` +`class ExtraCount`: VTable [0x0000000002FB3A58, 0x0000000000000000 offset, 3 functions] `.?AVExtraCount@@` +`class ExtraGhost`: VTable [0x0000000002FB3A80, 0x0000000000000000 offset, 3 functions] `.?AVExtraGhost@@` +`class ExtraShouldWear`: VTable [0x0000000002FB3AA8, 0x0000000000000000 offset, 3 functions] `.?AVExtraShouldWear@@` +`class ExtraSoul`: VTable [0x0000000002FB3AD0, 0x0000000000000000 offset, 3 functions] `.?AVExtraSoul@@` +`class ExtraPackageStartLocation`: VTable [0x0000000002FB3AF8, 0x0000000000000000 offset, 3 functions] `.?AVExtraPackageStartLocation@@` +`class ExtraPackage`: VTable [0x0000000002FB3B20, 0x0000000000000000 offset, 3 functions] `.?AVExtraPackage@@` +`class ExtraTresPassPackage`: VTable [0x0000000002FB3B48, 0x0000000000000000 offset, 3 functions] `.?AVExtraTresPassPackage@@` +`class ExtraPlayerCrimeList`: VTable [0x0000000002FB3B70, 0x0000000000000000 offset, 3 functions] `.?AVExtraPlayerCrimeList@@` +`class ExtraPersistentCell`: VTable [0x0000000002FB3B98, 0x0000000000000000 offset, 3 functions] `.?AVExtraPersistentCell@@` +`class ExtraRunOncePacks`: VTable [0x0000000002FB3BC0, 0x0000000000000000 offset, 3 functions] `.?AVExtraRunOncePacks@@` +`class ExtraDistantData`: VTable [0x0000000002FB3BE8, 0x0000000000000000 offset, 3 functions] `.?AVExtraDistantData@@` +`class ExtraResourcesPreload`: VTable [0x0000000002FB3C10, 0x0000000000000000 offset, 3 functions] `.?AVExtraResourcesPreload@@` +`class ExtraPortal`: VTable [0x0000000002FB3C38, 0x0000000000000000 offset, 3 functions] `.?AVExtraPortal@@` +`class ExtraOcclusionShape`: VTable [0x0000000002FB3C60, 0x0000000000000000 offset, 3 functions] `.?AVExtraOcclusionShape@@` +`class ExtraEditorRef3DData`: VTable [0x0000000002FB3C88, 0x0000000000000000 offset, 3 functions] `.?AVExtraEditorRef3DData@@` +`class ExtraEditorRefMoveData`: VTable [0x0000000002FB3CB0, 0x0000000000000000 offset, 3 functions] `.?AVExtraEditorRefMoveData@@` +`class ExtraAnimNoteReceiver`: VTable [0x0000000002FB3CD8, 0x0000000000000000 offset, 3 functions] `.?AVExtraAnimNoteReceiver@@` +`class ExtraPatrolRefInUseData`: VTable [0x0000000002FB3D00, 0x0000000000000000 offset, 3 functions] `.?AVExtraPatrolRefInUseData@@` +`class ExtraSayTopicInfoOnceADay`: VTable [0x0000000002FB3D28, 0x0000000000000000 offset, 3 functions] `.?AVExtraSayTopicInfoOnceADay@@` +`class ExtraFollowerSwimBreadcrumbs`: VTable [0x0000000002FB3D50, 0x0000000000000000 offset, 3 functions] `.?AVExtraFollowerSwimBreadcrumbs@@` +`class ExtraAnimationSequencer`: VTable [0x0000000002FB3D78, 0x0000000000000000 offset, 3 functions] `.?AVExtraAnimationSequencer@@` +`class ExtraCellGrassData`: VTable [0x0000000002FB3DA0, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellGrassData@@` +`class ExtraGroupConstraint`: VTable [0x0000000002FB3DC8, 0x0000000000000000 offset, 3 functions] `.?AVExtraGroupConstraint@@` +`class ExtraRaceData`: VTable [0x0000000002FB3DF0, 0x0000000000000000 offset, 3 functions] `.?AVExtraRaceData@@` +`class MultiBoundMarkerData`: VTable [0x0000000002FB4B30, 0x0000000000000000 offset, 3 functions] `.?AVMultiBoundMarkerData@@` +`class InterfacedClass`: VTable [0x0000000002FB6508, 0x0000000000000000 offset, 2 functions] `.?AVInterfacedClass@@` +`class BSTask`: VTable [0x0000000002FB6528, 0x0000000000000000 offset, 6 functions] `.?AVBSTask@@` +`class IOTask`: VTable [0x0000000002FB6570, 0x0000000000000000 offset, 10 functions] `.?AVIOTask@@` +`class SynchronizedPriorityQueue >`: VTable [0x0000000002FB65E0, 0x0000000000000000 offset, 4 functions] `.?AV?$SynchronizedPriorityQueue@V?$NiPointer@VIOTask@@@@@@` +`class BSModelDB::QueuedHandles`: VTable [0x0000000002FB6610, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHandles@BSModelDB@@` +`class BSModelDB::QueuedHandles`: VTable [0x0000000002FB66E0, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHandles@BSModelDB@@` +`class TESModelDB::TESQueuedHandles`: VTable [0x0000000002FB6708, 0x0000000000000000 offset, 20 functions] `.?AVTESQueuedHandles@TESModelDB@@` +`class TESModelDB::TESQueuedHandles`: VTable [0x0000000002FB67D8, 0x0000000000000038 offset, 3 functions] `.?AVTESQueuedHandles@TESModelDB@@` +`class BSQueuedResourceCollection,42>`: VTable [0x0000000002FB6800, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@$0CK@@@` +`class BSQueuedResourceCollection,42>`: VTable [0x0000000002FB68D0, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@$0CK@@@` +`class QueuedHelmet`: VTable [0x0000000002FB68F8, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHelmet@@` +`class QueuedHelmet`: VTable [0x0000000002FB69C8, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHelmet@@` +`class QueuedModel`: VTable [0x0000000002FB69F0, 0x0000000000000000 offset, 22 functions] `.?AVQueuedModel@@` +`class QueuedModel`: VTable [0x0000000002FB6AD0, 0x0000000000000038 offset, 3 functions] `.?AVQueuedModel@@` +`class QueuedReference`: VTable [0x0000000002FB6AF8, 0x0000000000000000 offset, 27 functions] `.?AVQueuedReference@@` +`class QueuedReference`: VTable [0x0000000002FB6C08, 0x0000000000000038 offset, 3 functions] `.?AVQueuedReference@@` +`class QueuedTempEffect`: VTable [0x0000000002FB6C30, 0x0000000000000000 offset, 12 functions] `.?AVQueuedTempEffect@@` +`class BackgroundProcessThread`: VTable [0x0000000002FB6CB0, 0x0000000000000000 offset, 3 functions] `.?AVBackgroundProcessThread@@` +`class SynchronizedQueue >`: VTable [0x0000000002FB6CD8, 0x0000000000000000 offset, 5 functions] `.?AV?$SynchronizedQueue@V?$NiPointer@VAttachDistant3DTask@@@@@@` +`class QueuedHead`: VTable [0x0000000002FB6D58, 0x0000000000000000 offset, 13 functions] `.?AVQueuedHead@@` +`class BSAutoQueuedResourceCollection`: VTable [0x0000000002FB6F18, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAutoQueuedResourceCollection@VQueuedHandles@BShkbHkxDB@@@@` +`class QueuedTree`: VTable [0x0000000002FB6F30, 0x0000000000000000 offset, 27 functions] `.?AVQueuedTree@@` +`class QueuedTree`: VTable [0x0000000002FB7040, 0x0000000000000038 offset, 3 functions] `.?AVQueuedTree@@` +`class QueuedActor`: VTable [0x0000000002FB70D0, 0x0000000000000000 offset, 27 functions] `.?AVQueuedActor@@` +`class QueuedActor`: VTable [0x0000000002FB71E0, 0x0000000000000038 offset, 3 functions] `.?AVQueuedActor@@` +`class QueuedCharacter`: VTable [0x0000000002FB7208, 0x0000000000000000 offset, 27 functions] `.?AVQueuedCharacter@@` +`class QueuedCharacter`: VTable [0x0000000002FB7318, 0x0000000000000038 offset, 3 functions] `.?AVQueuedCharacter@@` +`class SynchronizedQueue >`: VTable [0x0000000002FB7460, 0x0000000000000000 offset, 5 functions] `.?AV?$SynchronizedQueue@V?$NiPointer@VIOTask@@@@@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002FB7570, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0CKA@@@@@` +`class ICellAttachDetachEventSource`: VTable [0x0000000002FB8BF0, 0x0000000000000000 offset, 1 functions] `.?AVICellAttachDetachEventSource@@` +`class BSTEventSink`: VTable [0x0000000002FB8C30, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UArchiveStreamOpenedEvent@BSResource@@@@` +`class BSTEventSink`: VTable [0x0000000002FB8C50, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@VBSSystemEvent@@@@` +`class TES::SystemEventAdapter`: VTable [0x0000000002FB8C70, 0x0000000000000000 offset, 2 functions] `.?AVSystemEventAdapter@TES@@` +`class TES`: VTable [0x0000000002FB8C90, 0x0000000000000000 offset, 1 functions] `.?AVTES@@` +`class TES`: VTable [0x0000000002FB8CA8, 0x0000000000000060 offset, 2 functions] `.?AVTES@@` +`class BSTempNodeManager`: VTable [0x0000000002FB8D58, 0x0000000000000000 offset, 64 functions] `.?AVBSTempNodeManager@@` +`class BSTempNode`: VTable [0x0000000002FB8FC8, 0x0000000000000000 offset, 64 functions] `.?AVBSTempNode@@` +`class BSAutoQueuedResourceCollection`: VTable [0x0000000002FBA9F8, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAutoQueuedResourceCollection@VTESQueuedHandles@TESModelDB@@@@` +`class NiTArray >`: VTable [0x0000000002FBC660, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVTESObjectCELL@@V?$NiTMallocInterface@PEAVTESObjectCELL@@@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000002FBC678, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVTESObjectCELL@@@@` +`class NiTArray >`: VTable [0x0000000002FBC690, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVBGSAddonNode@@V?$NiTMallocInterface@PEAVBGSAddonNode@@@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000002FBC6A8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVBGSAddonNode@@@@` +`class BGSStoryManagerTreeForm`: VTable [0x0000000002FBC6C0, 0x0000000000000000 offset, 105 functions] `.?AVBGSStoryManagerTreeForm@@` +`class BGSStoryManagerNodeBase`: VTable [0x0000000002FBCAC0, 0x0000000000000000 offset, 112 functions] `.?AVBGSStoryManagerNodeBase@@` +`class BGSStoryManagerBranchNode`: VTable [0x0000000002FBCF00, 0x0000000000000000 offset, 113 functions] `.?AVBGSStoryManagerBranchNode@@` +`class TESRegionDataManager`: VTable [0x0000000002FBD348, 0x0000000000000000 offset, 10 functions] `.?AVTESRegionDataManager@@` +`class TESRegionDataManagerEditor`: VTable [0x0000000002FBD3B8, 0x0000000000000000 offset, 10 functions] `.?AVTESRegionDataManagerEditor@@` +`class BSTEventSink`: VTable [0x0000000002FBDA48, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UArchiveRegisteredEvent@BSResource@@@@` +`struct `anonymous namespace'::ArchiveRegistrationListener`: VTable [0x0000000002FBDA68, 0x0000000000000000 offset, 2 functions] `.?AUArchiveRegistrationListener@?A0x385b77ba@@` +`class BSTEventSink`: VTable [0x0000000002FBDA88, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UClearArchiveRegistryEvent@BSResource@@@@` +`struct `anonymous namespace'::ClearArchiveRegistrationListener`: VTable [0x0000000002FBDAA8, 0x0000000000000000 offset, 2 functions] `.?AUClearArchiveRegistrationListener@?A0x385b77ba@@` +`struct `anonymous namespace'::ObjectCountHelper`: VTable [0x0000000002FBDC40, 0x0000000000000000 offset, 2 functions] `.?AUObjectCountHelper@?A0x385b77ba@@` +`class NiTMapBase,unsigned int,class TESFile * __ptr64>`: VTable [0x0000000002FC1FA8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@IPEAVTESFile@@@@` +`class NiTPointerMap`: VTable [0x0000000002FC1FF8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@IPEAVTESFile@@@@` +`class NiTArray >`: VTable [0x0000000002FC2048, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@IV?$NiTMallocInterface@I@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000002FC2060, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@I@@` +`class BSModelDB::BSModelProcessor`: VTable [0x0000000002FC22B0, 0x0000000000000000 offset, 2 functions] `.?AVBSModelProcessor@BSModelDB@@` +`class TESModelDB::`anonymous namespace'::TESProcessor`: VTable [0x0000000002FC22D0, 0x0000000000000000 offset, 2 functions] `.?AVTESProcessor@?A0xe0539ed2@TESModelDB@@` +`class BGSAttackDataForm`: VTable [0x0000000002FC24B8, 0x0000000000000000 offset, 14 functions] `.?AVBGSAttackDataForm@@` +`class BGSBipedModelList`: VTable [0x0000000002FC2738, 0x0000000000000000 offset, 14 functions] `.?AVBGSBipedModelList@@` +`class BGSBipedObjectForm`: VTable [0x0000000002FC2990, 0x0000000000000000 offset, 14 functions] `.?AVBGSBipedObjectForm@@` +`class BGSBlockBashData`: VTable [0x0000000002FC2AC8, 0x0000000000000000 offset, 14 functions] `.?AVBGSBlockBashData@@` +`class BGSDestructibleObjectForm`: VTable [0x0000000002FC2F20, 0x0000000000000000 offset, 14 functions] `.?AVBGSDestructibleObjectForm@@` +`class BGSEquipType`: VTable [0x0000000002FC3558, 0x0000000000000000 offset, 16 functions] `.?AVBGSEquipType@@` +`class BGSIdleCollection`: VTable [0x0000000002FC38A8, 0x0000000000000000 offset, 14 functions] `.?AVBGSIdleCollection@@` +`class BGSKeywordForm`: VTable [0x0000000002FC3B38, 0x0000000000000000 offset, 16 functions] `.?AVBGSKeywordForm@@` +`class BGSMenuDisplayObject`: VTable [0x0000000002FC3DC0, 0x0000000000000000 offset, 15 functions] `.?AVBGSMenuDisplayObject@@` +`class BGSMessageIcon`: VTable [0x0000000002FC4090, 0x0000000000000000 offset, 14 functions] `.?AVBGSMessageIcon@@` +`class BGSOverridePackCollection`: VTable [0x0000000002FC43D0, 0x0000000000000000 offset, 14 functions] `.?AVBGSOverridePackCollection@@` +`class PerkRankVisitor`: VTable [0x0000000002FC4ED0, 0x0000000000000000 offset, 1 functions] `.?AVPerkRankVisitor@@` +`class BGSPerkRankArray`: VTable [0x0000000002FC4EE8, 0x0000000000000000 offset, 14 functions] `.?AVBGSPerkRankArray@@` +`class `anonymous namespace'::InitItemPerkRankDataVisitor`: VTable [0x0000000002FC4F78, 0x0000000000000000 offset, 1 functions] `.?AVInitItemPerkRankDataVisitor@?A0x97878284@@` +`class `anonymous namespace'::CopyPerkRankArrayVisitor`: VTable [0x0000000002FC4FD8, 0x0000000000000000 offset, 1 functions] `.?AVCopyPerkRankArrayVisitor@?A0x97878284@@` +`class `anonymous namespace'::FindPerkRankDataVisitor`: VTable [0x0000000002FC4FF0, 0x0000000000000000 offset, 1 functions] `.?AVFindPerkRankDataVisitor@?A0x97878284@@` +`class `anonymous namespace'::RemoveFormListPerkRankVisitor`: VTable [0x0000000002FC5008, 0x0000000000000000 offset, 1 functions] `.?AVRemoveFormListPerkRankVisitor@?A0x97878284@@` +`class `anonymous namespace'::SavePerkRankDataVisitor`: VTable [0x0000000002FC51A0, 0x0000000000000000 offset, 1 functions] `.?AVSavePerkRankDataVisitor@?A0xf103fb47@@` +`class `anonymous namespace'::AddRemoveUserFormPerkRankDataVisitor`: VTable [0x0000000002FC51B8, 0x0000000000000000 offset, 1 functions] `.?AVAddRemoveUserFormPerkRankDataVisitor@?A0xf103fb47@@` +`class `anonymous namespace'::GetDependencyStringPerkRankVisitor`: VTable [0x0000000002FC51D0, 0x0000000000000000 offset, 1 functions] `.?AVGetDependencyStringPerkRankVisitor@?A0xf103fb47@@` +`class `anonymous namespace'::CanCheckInPerkRankVisitor`: VTable [0x0000000002FC51E8, 0x0000000000000000 offset, 1 functions] `.?AVCanCheckInPerkRankVisitor@?A0xf103fb47@@` +`class `anonymous namespace'::ObjectCollectionPerkRankArrayVisitor`: VTable [0x0000000002FC5200, 0x0000000000000000 offset, 1 functions] `.?AVObjectCollectionPerkRankArrayVisitor@?A0xf103fb47@@` +`class `anonymous namespace'::FillListViewPerkRankArrayVisitor`: VTable [0x0000000002FC5218, 0x0000000000000000 offset, 1 functions] `.?AVFillListViewPerkRankArrayVisitor@?A0xf103fb47@@` +`class BGSPickupPutdownSounds`: VTable [0x0000000002FC52F8, 0x0000000000000000 offset, 14 functions] `.?AVBGSPickupPutdownSounds@@` +`class BGSSkinForm`: VTable [0x0000000002FC5570, 0x0000000000000000 offset, 14 functions] `.?AVBGSSkinForm@@` +`class TESActorBaseData`: VTable [0x0000000002FC5F40, 0x0000000000000000 offset, 20 functions] `.?AVTESActorBaseData@@` +`class NiTMapBase >,class TESForm * __ptr64,bool>`: VTable [0x0000000002FC6120, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESForm@@_N@@@@PEAVTESForm@@_N@@` +`class NiTMap`: VTable [0x0000000002FC6170, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESForm@@_N@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002FC66C0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0EAA@@@@@` +`class TESAIForm`: VTable [0x0000000002FC67A0, 0x0000000000000000 offset, 14 functions] `.?AVTESAIForm@@` +`class TESAttackDamageForm`: VTable [0x0000000002FC69D8, 0x0000000000000000 offset, 15 functions] `.?AVTESAttackDamageForm@@` +`class TESModelRDT`: VTable [0x0000000002FC6BA0, 0x0000000000000000 offset, 20 functions] `.?AVTESModelRDT@@` +`class TESBipedModelForm`: VTable [0x0000000002FC6C70, 0x0000000000000000 offset, 14 functions] `.?AVTESBipedModelForm@@` +`class TESContainer`: VTable [0x0000000002FC7190, 0x0000000000000000 offset, 15 functions] `.?AVTESContainer@@` +`class TESDescription`: VTable [0x0000000002FC76E0, 0x0000000000000000 offset, 14 functions] `.?AVTESDescription@@` +`class TESEnchantableForm`: VTable [0x0000000002FC79B0, 0x0000000000000000 offset, 15 functions] `.?AVTESEnchantableForm@@` +`class TESForm`: VTable [0x0000000002FC90F8, 0x0000000000000000 offset, 101 functions] `.?AVTESForm@@` +`class BSStorage`: VTable [0x0000000002FC94D0, 0x0000000000000000 offset, 6 functions] `.?AVBSStorage@@` +`class BSMemStorage`: VTable [0x0000000002FC9518, 0x0000000000000000 offset, 6 functions] `.?AVBSMemStorage@@` +`struct BSScript::IHandleReaderWriter`: VTable [0x0000000002FC9560, 0x0000000000000000 offset, 4 functions] `.?AUIHandleReaderWriter@BSScript@@` +`class CSScript::DataFileHandleReaderWriter`: VTable [0x0000000002FC9590, 0x0000000000000000 offset, 4 functions] `.?AVDataFileHandleReaderWriter@CSScript@@` +`struct `anonymous namespace'::ObjectFactoryVisitor`: VTable [0x0000000002FC95C0, 0x0000000000000000 offset, 2 functions] `.?AUObjectFactoryVisitor@?A0x8cc7d92a@@` +`struct `anonymous namespace'::ObjectTypeFinder`: VTable [0x0000000002FC95E0, 0x0000000000000000 offset, 2 functions] `.?AUObjectTypeFinder@?A0x8cc7d92a@@` +`class NiTMapBase,class TESForm const * __ptr64,class BSTArray * __ptr64>`: VTable [0x0000000002FC9808, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBVTESForm@@PEAV?$BSTArray@PEAVTESForm@@VBSTArrayHeapAllocator@@@@@@` +`class NiTPointerMap * __ptr64>`: VTable [0x0000000002FC9858, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBVTESForm@@PEAV?$BSTArray@PEAVTESForm@@VBSTArrayHeapAllocator@@@@@@` +`class BSMemStorageAllocated`: VTable [0x0000000002FC9938, 0x0000000000000000 offset, 6 functions] `.?AV?$BSMemStorageAllocated@VBSMemStorageScrapAllocator@@@@` +`class TESHealthForm`: VTable [0x0000000002FCA8D8, 0x0000000000000000 offset, 15 functions] `.?AVTESHealthForm@@` +`class TESIcon`: VTable [0x0000000002FCAA18, 0x0000000000000000 offset, 20 functions] `.?AVTESIcon@@` +`class TESImageSpaceModifiableForm`: VTable [0x0000000002FCAB40, 0x0000000000000000 offset, 14 functions] `.?AVTESImageSpaceModifiableForm@@` +`class TESLeveledList`: VTable [0x0000000002FCB010, 0x0000000000000000 offset, 23 functions] `.?AVTESLeveledList@@` +`class TESModel`: VTable [0x0000000002FCC1E0, 0x0000000000000000 offset, 20 functions] `.?AVTESModel@@` +`class BSShaderProperty::ForEachVisitor`: VTable [0x0000000002FCC2B0, 0x0000000000000000 offset, 2 functions] `.?AVForEachVisitor@BSShaderProperty@@` +`struct `anonymous namespace'::PropTexCollector`: VTable [0x0000000002FCC3F8, 0x0000000000000000 offset, 2 functions] `.?AUPropTexCollector@?A0x4b9034fc@@` +`struct `anonymous namespace'::PropTexNameCollector`: VTable [0x0000000002FCC418, 0x0000000000000000 offset, 2 functions] `.?AUPropTexNameCollector@?A0x4b9034fc@@` +`class BSAutoQueuedResourceCollection`: VTable [0x0000000002FCC4C8, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAutoQueuedResourceCollection@VQueuedHandles@BSTextureDB@@@@` +`class TESModelLODList`: VTable [0x0000000002FCC7E8, 0x0000000000000000 offset, 14 functions] `.?AVTESModelLODList@@` +`class TESModelTextureSwap`: VTable [0x0000000002FCCE10, 0x0000000000000000 offset, 20 functions] `.?AVTESModelTextureSwap@@` +`class BSMapBase`: VTable [0x0000000002FCD0F8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@HPEAUTEX_SWAP@@@@` +`class BSScrapMap`: VTable [0x0000000002FCD148, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@HPEAUTEX_SWAP@@@@` +`class TESProduceForm`: VTable [0x0000000002FCD570, 0x0000000000000000 offset, 14 functions] `.?AVTESProduceForm@@` +`class TESQualityForm`: VTable [0x0000000002FCD898, 0x0000000000000000 offset, 14 functions] `.?AVTESQualityForm@@` +`class TESRaceForm`: VTable [0x0000000002FCDA48, 0x0000000000000000 offset, 14 functions] `.?AVTESRaceForm@@` +`class TESReactionForm`: VTable [0x0000000002FCDF08, 0x0000000000000000 offset, 14 functions] `.?AVTESReactionForm@@` +`class TESSpellList`: VTable [0x0000000002FCE5E0, 0x0000000000000000 offset, 14 functions] `.?AVTESSpellList@@` +`class TESTexture`: VTable [0x0000000002FCE908, 0x0000000000000000 offset, 20 functions] `.?AVTESTexture@@` +`class TESValueForm`: VTable [0x0000000002FCEC38, 0x0000000000000000 offset, 14 functions] `.?AVTESValueForm@@` +`class TESWeightForm`: VTable [0x0000000002FCEDA0, 0x0000000000000000 offset, 14 functions] `.?AVTESWeightForm@@` +`class BSAttachTechniques::BSAttachTechnique`: VTable [0x0000000002FCF610, 0x0000000000000000 offset, 4 functions] `.?AVBSAttachTechnique@BSAttachTechniques@@` +`struct BGSAttachTechniquesUtil::ProcessTechniquesFunctor`: VTable [0x0000000002FCF650, 0x0000000000000000 offset, 2 functions] `.?AUProcessTechniquesFunctor@BGSAttachTechniquesUtil@@` +`struct BGSAttachTechniquesUtil::AttachTechniquesFunctor`: VTable [0x0000000002FCF670, 0x0000000000000000 offset, 2 functions] `.?AUAttachTechniquesFunctor@BGSAttachTechniquesUtil@@` +`struct BGSAttachTechniquesUtil::DetachTechniquesFunctor`: VTable [0x0000000002FCF690, 0x0000000000000000 offset, 2 functions] `.?AUDetachTechniquesFunctor@BGSAttachTechniquesUtil@@` +`class BGSParticleArrayAttach::EmitterPolicy`: VTable [0x0000000002FCF738, 0x0000000000000000 offset, 3 functions] `.?AVEmitterPolicy@BGSParticleArrayAttach@@` +`class BGSParticleArrayAttach::CollectEmitterPolicy`: VTable [0x0000000002FCF760, 0x0000000000000000 offset, 3 functions] `.?AVCollectEmitterPolicy@BGSParticleArrayAttach@@` +`class BGSParticleArrayAttach::ClearEmitterPolicy`: VTable [0x0000000002FCF788, 0x0000000000000000 offset, 3 functions] `.?AVClearEmitterPolicy@BGSParticleArrayAttach@@` +`class BGSParticleArrayAttach`: VTable [0x0000000002FCF7B0, 0x0000000000000000 offset, 4 functions] `.?AVBGSParticleArrayAttach@@` +`class BGSHavokGeometryAttach::ActionPolicy`: VTable [0x0000000002FCF860, 0x0000000000000000 offset, 2 functions] `.?AVActionPolicy@BGSHavokGeometryAttach@@` +`class BGSHavokGeometryAttach::AttachPolicy`: VTable [0x0000000002FCF880, 0x0000000000000000 offset, 2 functions] `.?AVAttachPolicy@BGSHavokGeometryAttach@@` +`class BGSHavokGeometryAttach::DetachPolicy`: VTable [0x0000000002FCF8A0, 0x0000000000000000 offset, 2 functions] `.?AVDetachPolicy@BGSHavokGeometryAttach@@` +`class BGSHavokGeometryAttach`: VTable [0x0000000002FCF8C0, 0x0000000000000000 offset, 4 functions] `.?AVBGSHavokGeometryAttach@@` +`class BGSNamedNodeAttach::ActionPolicy`: VTable [0x0000000002FCF900, 0x0000000000000000 offset, 2 functions] `.?AVActionPolicy@BGSNamedNodeAttach@@` +`class BGSNamedNodeAttach::AttachPolicy`: VTable [0x0000000002FCF920, 0x0000000000000000 offset, 2 functions] `.?AVAttachPolicy@BGSNamedNodeAttach@@` +`class BGSNamedNodeAttach::DetachPolicy`: VTable [0x0000000002FCF940, 0x0000000000000000 offset, 2 functions] `.?AVDetachPolicy@BGSNamedNodeAttach@@` +`class BGSNamedNodeAttach`: VTable [0x0000000002FCF960, 0x0000000000000000 offset, 4 functions] `.?AVBGSNamedNodeAttach@@` +`class BGSMultiTechniqueAttach::ActionPolicy`: VTable [0x0000000002FCF9D8, 0x0000000000000000 offset, 2 functions] `.?AVActionPolicy@BGSMultiTechniqueAttach@@` +`class BGSMultiTechniqueAttach::AttachPolicy`: VTable [0x0000000002FCF9F8, 0x0000000000000000 offset, 2 functions] `.?AVAttachPolicy@BGSMultiTechniqueAttach@@` +`class BGSMultiTechniqueAttach::DetachPolicy`: VTable [0x0000000002FCFA18, 0x0000000000000000 offset, 2 functions] `.?AVDetachPolicy@BGSMultiTechniqueAttach@@` +`class BGSMultiTechniqueAttach`: VTable [0x0000000002FCFA38, 0x0000000000000000 offset, 4 functions] `.?AVBGSMultiTechniqueAttach@@` +`class BGSDecalNode`: VTable [0x0000000002FD2068, 0x0000000000000000 offset, 66 functions] `.?AVBGSDecalNode@@` +`class QueuedPromoteReferencesTask`: VTable [0x0000000002FD26F0, 0x0000000000000000 offset, 10 functions] `.?AVQueuedPromoteReferencesTask@@` +`class IBGSLocalizedString`: VTable [0x0000000002FD3B98, 0x0000000000000000 offset, 5 functions] `.?AVIBGSLocalizedString@@` +`class BGSLocalizedString`: VTable [0x0000000002FD3BD8, 0x0000000000000000 offset, 5 functions] `.?AVBGSLocalizedString@@` +`class BGSLocalizedStringDL`: VTable [0x0000000002FD3C18, 0x0000000000000000 offset, 5 functions] `.?AVBGSLocalizedStringDL@@` +`class BGSLocalizedStringIL`: VTable [0x0000000002FD3C58, 0x0000000000000000 offset, 5 functions] `.?AVBGSLocalizedStringIL@@` +`class BSTEventSink`: VTable [0x0000000002FD4258, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@ULocalizedStringLoadEvent@?A0xf9c98f06@@@@` +`struct `anonymous namespace'::TagificationManager`: VTable [0x0000000002FD4278, 0x0000000000000000 offset, 2 functions] `.?AUTagificationManager@?A0xf9c98f06@@` +`struct `anonymous namespace'::TextExportManager`: VTable [0x0000000002FD4638, 0x0000000000000000 offset, 2 functions] `.?AUTextExportManager@?A0xf9c98f06@@` +`struct `anonymous namespace'::DelocalizationManager`: VTable [0x0000000002FD4A08, 0x0000000000000000 offset, 2 functions] `.?AUDelocalizationManager@?A0xf9c98f06@@` +`class NiObject`: VTable [0x0000000002FD5BB0, 0x0000000000000000 offset, 39 functions] `.?AVNiObject@@` +`class BGSPrimitive`: VTable [0x0000000002FD5D30, 0x0000000000000000 offset, 6 functions] `.?AVBGSPrimitive@@` +`class BGSPrimitivePlane`: VTable [0x0000000002FD5D78, 0x0000000000000000 offset, 8 functions] `.?AVBGSPrimitivePlane@@` +`class BGSPrimitiveBox`: VTable [0x0000000002FD5DD0, 0x0000000000000000 offset, 7 functions] `.?AVBGSPrimitiveBox@@` +`class BGSPrimitiveLine`: VTable [0x0000000002FD5E20, 0x0000000000000000 offset, 7 functions] `.?AVBGSPrimitiveLine@@` +`class BGSPrimitiveSphere`: VTable [0x0000000002FD5E70, 0x0000000000000000 offset, 6 functions] `.?AVBGSPrimitiveSphere@@` +`class BSMultiBoundAABB`: VTable [0x0000000002FD5EB8, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundAABB@@` +`class BSMultiBoundOBB`: VTable [0x0000000002FD60B8, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundOBB@@` +`class BSMultiBoundSphere`: VTable [0x0000000002FD62B8, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundSphere@@` +`class BSPortal`: VTable [0x0000000002FD64B8, 0x0000000000000000 offset, 44 functions] `.?AVBSPortal@@` +`class BGSSceneInfo::TextureUse`: VTable [0x0000000002FD6BE0, 0x0000000000000000 offset, 2 functions] `.?AVTextureUse@BGSSceneInfo@@` +`class BGSSceneInfo`: VTable [0x0000000002FD6C00, 0x0000000000000000 offset, 1 functions] `.?AVBGSSceneInfo@@` +`class NiTMapBase >,int,int>`: VTable [0x0000000002FD6CA8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@HH@@@@HH@@` +`class NiTMap`: VTable [0x0000000002FD6CF8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@HH@@` +`class BGSTextureUseMap::TextureUse`: VTable [0x0000000002FD7AA0, 0x0000000000000000 offset, 2 functions] `.?AVTextureUse@BGSTextureUseMap@@` +`class BSAnimGroupSequence`: VTable [0x0000000002FD9470, 0x0000000000000000 offset, 40 functions] `.?AVBSAnimGroupSequence@@` +`class GridArray`: VTable [0x0000000002FDA6F0, 0x0000000000000000 offset, 9 functions] `.?AVGridArray@@` +`class GridCellArray`: VTable [0x0000000002FDA7B0, 0x0000000000000000 offset, 9 functions] `.?AVGridCellArray@@` +`class InventoryUtils::ItemFilter`: VTable [0x0000000002FDB910, 0x0000000000000000 offset, 2 functions] `.?AVItemFilter@InventoryUtils@@` +`class InventoryChanges::IItemChangeVisitor`: VTable [0x0000000002FDB930, 0x0000000000000000 offset, 4 functions] `.?AVIItemChangeVisitor@InventoryChanges@@` +`class `anonymous namespace'::CountObjectsWithKeywordFunctor`: VTable [0x0000000002FDB960, 0x0000000000000000 offset, 4 functions] `.?AVCountObjectsWithKeywordFunctor@?A0xd6bcb649@@` +`class `anonymous namespace'::GetArmorInSlotFunctor`: VTable [0x0000000002FDB990, 0x0000000000000000 offset, 4 functions] `.?AVGetArmorInSlotFunctor@?A0xd6bcb649@@` +`class `anonymous namespace'::UnequipArmorFunctor`: VTable [0x0000000002FDB9C0, 0x0000000000000000 offset, 4 functions] `.?AVUnequipArmorFunctor@?A0xd6bcb649@@` +`class `anonymous namespace'::CollectUsedUniqueIDsVisitor`: VTable [0x0000000002FDBA38, 0x0000000000000000 offset, 4 functions] `.?AVCollectUsedUniqueIDsVisitor@?A0xd6bcb649@@` +`class InventoryUtils::`anonymous namespace'::IsWornVisitor`: VTable [0x0000000002FDBA98, 0x0000000000000000 offset, 4 functions] `.?AVIsWornVisitor@?A0xd6bcb649@InventoryUtils@@` +`class InventoryUtils::`anonymous namespace'::GetWornMaskVisitor`: VTable [0x0000000002FDBAC8, 0x0000000000000000 offset, 4 functions] `.?AVGetWornMaskVisitor@?A0xd6bcb649@InventoryUtils@@` +`class InventoryUtils::`anonymous namespace'::IsFavoriteVisitor`: VTable [0x0000000002FDBAF8, 0x0000000000000000 offset, 4 functions] `.?AVIsFavoriteVisitor@?A0xd6bcb649@InventoryUtils@@` +`class InventoryUtils::`anonymous namespace'::WornHasKeywordVisitor`: VTable [0x0000000002FDBB28, 0x0000000000000000 offset, 4 functions] `.?AVWornHasKeywordVisitor@?A0xd6bcb649@InventoryUtils@@` +`class BSExternalAudioIO::ExternalIOInterface`: VTable [0x0000000002FDC408, 0x0000000000000000 offset, 2 functions] `.?AVExternalIOInterface@BSExternalAudioIO@@` +`class BSResource::EntryDB`: VTable [0x0000000002FDC428, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@LipSynchAnimDB@@@BSResource@@` +`class LipSynchAnimDB::LipAudioInterface`: VTable [0x0000000002FDC470, 0x0000000000000000 offset, 2 functions] `.?AVLipAudioInterface@LipSynchAnimDB@@` +`class TESCameraState`: VTable [0x0000000002FDC8B8, 0x0000000000000000 offset, 9 functions] `.?AVTESCameraState@@` +`class LocalMapCamera`: VTable [0x0000000002FDC960, 0x0000000000000000 offset, 3 functions] `.?AVLocalMapCamera@@` +`class LocalMapCamera::DefaultState`: VTable [0x0000000002FDC9A8, 0x0000000000000000 offset, 9 functions] `.?AVDefaultState@LocalMapCamera@@` +`class NiTMapBase >,class NiAVObject * __ptr64,struct _TREEITEM * __ptr64>`: VTable [0x0000000002FDD050, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVNiAVObject@@PEAU_TREEITEM@@@@@@PEAVNiAVObject@@PEAU_TREEITEM@@@@` +`class NiTMap`: VTable [0x0000000002FDD0A0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVNiAVObject@@PEAU_TREEITEM@@@@` +`class BSNodeVisualization::Visualizer`: VTable [0x0000000002FDD0F0, 0x0000000000000000 offset, 2 functions] `.?AVVisualizer@BSNodeVisualization@@` +`class BSNodeVisualization::AllNodeVisualizer`: VTable [0x0000000002FDD110, 0x0000000000000000 offset, 2 functions] `.?AVAllNodeVisualizer@BSNodeVisualization@@` +`class NiTArray >`: VTable [0x0000000002FDD140, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEBDV?$NiTMallocInterface@PEBD@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000002FDD158, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEBD@@` +`class UTF8Utils`: VTable [0x0000000002FDDD50, 0x0000000000000000 offset, 1 functions] `.?AVUTF8Utils@@` +`class TESRegion`: VTable [0x0000000002FDEA70, 0x0000000000000000 offset, 103 functions] `.?AVTESRegion@@` +`class ConcreteFormFactory`: VTable [0x0000000002FDEE58, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESRegion@@$0DK@@@` +`class TESRegionData`: VTable [0x0000000002FDEEF8, 0x0000000000000000 offset, 13 functions] `.?AVTESRegionData@@` +`class TESRegionDataGrass`: VTable [0x0000000002FDF070, 0x0000000000000000 offset, 15 functions] `.?AVTESRegionDataGrass@@` +`class TESRegionDataLandscape`: VTable [0x0000000002FDF240, 0x0000000000000000 offset, 16 functions] `.?AVTESRegionDataLandscape@@` +`class TESRegionDataMap`: VTable [0x0000000002FDF538, 0x0000000000000000 offset, 13 functions] `.?AVTESRegionDataMap@@` +`class TESRegionDataObjects`: VTable [0x0000000002FDF728, 0x0000000000000000 offset, 18 functions] `.?AVTESRegionDataObjects@@` +`class TESRegionDataSound`: VTable [0x0000000002FDFD58, 0x0000000000000000 offset, 14 functions] `.?AVTESRegionDataSound@@` +`class TESRegionDataWeather`: VTable [0x0000000002FE0120, 0x0000000000000000 offset, 14 functions] `.?AVTESRegionDataWeather@@` +`class TESRegionObjectBase`: VTable [0x0000000002FE0270, 0x0000000000000000 offset, 6 functions] `.?AVTESRegionObjectBase@@` +`class TESRegionGrassObject`: VTable [0x0000000002FE02B8, 0x0000000000000000 offset, 10 functions] `.?AVTESRegionGrassObject@@` +`class TESRegionGrassObjectList`: VTable [0x0000000002FE0608, 0x0000000000000000 offset, 1 functions] `.?AVTESRegionGrassObjectList@@` +`class TESRegionList`: VTable [0x0000000002FE0770, 0x0000000000000000 offset, 3 functions] `.?AVTESRegionList@@` +`class TESRegionNoiseFunction`: VTable [0x0000000002FE0798, 0x0000000000000000 offset, 1 functions] `.?AVTESRegionNoiseFunction@@` +`class TESRegionObject`: VTable [0x0000000002FE08E0, 0x0000000000000000 offset, 6 functions] `.?AVTESRegionObject@@` +`class TESRegionObjectList`: VTable [0x0000000002FE0B30, 0x0000000000000000 offset, 1 functions] `.?AVTESRegionObjectList@@` +`class BGSAction`: VTable [0x0000000002FE0EA8, 0x0000000000000000 offset, 101 functions] `.?AVBGSAction@@` +`class ConcreteFormFactory`: VTable [0x0000000002FE1280, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSAction@@$05@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FE12D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSAction@@$05$0EM@$0A@@@` +`class BGSAssociationType`: VTable [0x0000000002FE1480, 0x0000000000000000 offset, 101 functions] `.?AVBGSAssociationType@@` +`class ConcreteFormFactory`: VTable [0x0000000002FE1858, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSAssociationType@@$0HL@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FE18A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSAssociationType@@$0HL@$0FC@$04@@` +`class TESModelPSA`: VTable [0x0000000002FE1B58, 0x0000000000000000 offset, 20 functions] `.?AVTESModelPSA@@` +`class BGSPreloadable`: VTable [0x0000000002FE2178, 0x0000000000000000 offset, 14 functions] `.?AVBGSPreloadable@@` +`class BGSBodyPartData`: VTable [0x0000000002FE2208, 0x0000000000000000 offset, 101 functions] `.?AVBGSBodyPartData@@` +`class BGSBodyPartData`: VTable [0x0000000002FE25E0, 0x0000000000000028 offset, 20 functions] `.?AVBGSBodyPartData@@` +`class BGSBodyPartData`: VTable [0x0000000002FE26B0, 0x0000000000000058 offset, 14 functions] `.?AVBGSBodyPartData@@` +`class ConcreteFormFactory`: VTable [0x0000000002FE2740, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSBodyPartData@@$0FN@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FE2790, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSBodyPartData@@$0FN@$0CI@$0A@@@` +`class NiTMapBase >,class NiAVObject * __ptr64,bool>`: VTable [0x0000000002FE2A58, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVNiAVObject@@_N@@@@PEAVNiAVObject@@_N@@` +`class NiTMap`: VTable [0x0000000002FE2AA8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVNiAVObject@@_N@@` +`class NiTMapBase >,unsigned char,bool>`: VTable [0x0000000002FE2AF8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@E_N@@@@E_N@@` +`class NiTMap`: VTable [0x0000000002FE2B48, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@E_N@@` +`class BGSDialogueBranch`: VTable [0x0000000002FE3230, 0x0000000000000000 offset, 101 functions] `.?AVBGSDialogueBranch@@` +`class ConcreteFormFactory`: VTable [0x0000000002FE3608, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSDialogueBranch@@$0HD@@@` +`class BGSDialogueView`: VTable [0x0000000002FE3C80, 0x0000000000000000 offset, 103 functions] `.?AVBGSDialogueView@@` +`class ConcreteFormFactory`: VTable [0x0000000002FE4068, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSDialogueView@@$0HF@@@` +`class BGSDialogueViewEventSink`: VTable [0x0000000002FE4890, 0x0000000000000000 offset, 8 functions] `.?AVBGSDialogueViewEventSink@@` +`class BGSEntryPointFunctionData`: VTable [0x0000000002FE5FF8, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionData@@` +`class BGSEntryPointFunctionDataOneValue`: VTable [0x0000000002FE60B0, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataOneValue@@` +`class BGSEntryPointFunctionDataTwoValue`: VTable [0x0000000002FE6168, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataTwoValue@@` +`class BGSEntryPointFunctionDataLeveledList`: VTable [0x0000000002FE6220, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataLeveledList@@` +`class BGSEntryPointFunctionDataSpellItem`: VTable [0x0000000002FE62D8, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataSpellItem@@` +`class BGSEntryPointFunctionDataBooleanGraphVariable`: VTable [0x0000000002FE6390, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataBooleanGraphVariable@@` +`class BGSEntryPointFunctionDataText`: VTable [0x0000000002FE6448, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataText@@` +`class BGSEntryPointFunctionDataActivateChoice`: VTable [0x0000000002FE6500, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataActivateChoice@@` +`class BGSEquipSlot`: VTable [0x0000000002FE7088, 0x0000000000000000 offset, 101 functions] `.?AVBGSEquipSlot@@` +`class ConcreteFormFactory`: VTable [0x0000000002FE7460, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSEquipSlot@@$0HI@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FE74B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSEquipSlot@@$0HI@$0FB@$04@@` +`class TESModelTri`: VTable [0x0000000002FE79A8, 0x0000000000000000 offset, 20 functions] `.?AVTESModelTri@@` +`class BGSHeadPart`: VTable [0x0000000002FE7A78, 0x0000000000000000 offset, 101 functions] `.?AVBGSHeadPart@@` +`class BGSHeadPart`: VTable [0x0000000002FE7E50, 0x0000000000000028 offset, 16 functions] `.?AVBGSHeadPart@@` +`class BGSHeadPart`: VTable [0x0000000002FE7EF8, 0x0000000000000040 offset, 20 functions] `.?AVBGSHeadPart@@` +`class ConcreteFormFactory`: VTable [0x0000000002FE7FC8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSHeadPart@@$0M@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FE8018, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSHeadPart@@$0M@$0DE@$04@@` +`class BGSIdleMarker`: VTable [0x0000000002FE8770, 0x0000000000000000 offset, 125 functions] `.?AVBGSIdleMarker@@` +`class BGSIdleMarker`: VTable [0x0000000002FE8C30, 0x0000000000000050 offset, 20 functions] `.?AVBGSIdleMarker@@` +`class BGSIdleMarker`: VTable [0x0000000002FE8D00, 0x0000000000000080 offset, 14 functions] `.?AVBGSIdleMarker@@` +`class ConcreteFormFactory`: VTable [0x0000000002FE8D90, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSIdleMarker@@$0CP@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FE8DE0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSIdleMarker@@$0CP@$0BO@$03@@` +`class BGSKeyword`: VTable [0x0000000002FE8FD8, 0x0000000000000000 offset, 101 functions] `.?AVBGSKeyword@@` +`class ConcreteFormFactory`: VTable [0x0000000002FE93B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSKeyword@@$03@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FE9400, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSKeyword@@$03$0EG@$03@@` +`class BGSBaseAlias`: VTable [0x0000000002FE9650, 0x0000000000000000 offset, 20 functions] `.?AVBGSBaseAlias@@` +`class BGSLocAlias`: VTable [0x0000000002FE9720, 0x0000000000000000 offset, 20 functions] `.?AVBGSLocAlias@@` +`class BGSMovementType`: VTable [0x0000000002FEA368, 0x0000000000000000 offset, 101 functions] `.?AVBGSMovementType@@` +`class ConcreteFormFactory`: VTable [0x0000000002FEA740, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMovementType@@$0HP@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FEA790, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMovementType@@$0HP@$0FL@$04@@` +`class BGSNote`: VTable [0x0000000002FEAC98, 0x0000000000000000 offset, 125 functions] `.?AVBGSNote@@` +`class BGSNote`: VTable [0x0000000002FEB158, 0x0000000000000050 offset, 20 functions] `.?AVBGSNote@@` +`class BGSNote`: VTable [0x0000000002FEB228, 0x0000000000000080 offset, 16 functions] `.?AVBGSNote@@` +`class BGSNote`: VTable [0x0000000002FEB2D0, 0x0000000000000098 offset, 20 functions] `.?AVBGSNote@@` +`class BGSNote`: VTable [0x0000000002FEB3A0, 0x00000000000000C0 offset, 14 functions] `.?AVBGSNote@@` +`class ConcreteFormFactory`: VTable [0x0000000002FEB430, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSNote@@$0DA@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FEB480, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSNote@@$0DA@$0DG@$08@@` +`class BGSPerkEntry`: VTable [0x0000000002FEBE70, 0x0000000000000000 offset, 25 functions] `.?AVBGSPerkEntry@@` +`class BGSQuestPerkEntry`: VTable [0x0000000002FEBF70, 0x0000000000000000 offset, 25 functions] `.?AVBGSQuestPerkEntry@@` +`class BGSAbilityPerkEntry`: VTable [0x0000000002FEC070, 0x0000000000000000 offset, 25 functions] `.?AVBGSAbilityPerkEntry@@` +`class BGSEntryPointPerkEntry`: VTable [0x0000000002FEC170, 0x0000000000000000 offset, 25 functions] `.?AVBGSEntryPointPerkEntry@@` +`class BGSPerk`: VTable [0x0000000002FEC270, 0x0000000000000000 offset, 101 functions] `.?AVBGSPerk@@` +`class BGSPerk`: VTable [0x0000000002FEC648, 0x0000000000000028 offset, 16 functions] `.?AVBGSPerk@@` +`class BGSPerk`: VTable [0x0000000002FEC6F0, 0x0000000000000040 offset, 14 functions] `.?AVBGSPerk@@` +`class BGSPerk`: VTable [0x0000000002FEC780, 0x0000000000000068 offset, 20 functions] `.?AVBGSPerk@@` +`class ConcreteFormFactory`: VTable [0x0000000002FEC850, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSPerk@@$0FM@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FEC8A0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSPerk@@$0FM@$0CH@$0A@@@` +`class `anonymous namespace'::EntryPointFragmentUIHandler`: VTable [0x0000000002FED3C8, 0x0000000000000000 offset, 6 functions] `.?AVEntryPointFragmentUIHandler@?A0xfaddf1c7@@` +`class `anonymous namespace'::FragmentRemoveCheckFunctor`: VTable [0x0000000002FED450, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@?A0xfaddf1c7@@` +`class BGSRagdoll`: VTable [0x0000000002FEDDB0, 0x0000000000000000 offset, 101 functions] `.?AVBGSRagdoll@@` +`class BGSRagdoll`: VTable [0x0000000002FEE188, 0x0000000000000028 offset, 20 functions] `.?AVBGSRagdoll@@` +`class ConcreteFormFactory`: VTable [0x0000000002FEE258, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSRagdoll@@$0GK@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FEE2A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSRagdoll@@$0GK@$0EB@$08@@` +`class BGSRefAlias`: VTable [0x0000000002FEED30, 0x0000000000000000 offset, 20 functions] `.?AVBGSRefAlias@@` +`class BGSRelationship`: VTable [0x0000000002FEFF58, 0x0000000000000000 offset, 101 functions] `.?AVBGSRelationship@@` +`class ConcreteFormFactory`: VTable [0x0000000002FF0330, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSRelationship@@$0HJ@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FF0380, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSRelationship@@$0HJ@$0FA@$04@@` +`class BGSScene`: VTable [0x0000000002FF0C48, 0x0000000000000000 offset, 101 functions] `.?AVBGSScene@@` +`class ConcreteFormFactory`: VTable [0x0000000002FF1020, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSScene@@$0HK@@@` +`class BGSSceneEventSink`: VTable [0x0000000002FF2390, 0x0000000000000000 offset, 8 functions] `.?AVBGSSceneEventSink@@` +`class `anonymous namespace'::BaseSceneFragmentUIHandler`: VTable [0x0000000002FF23E8, 0x0000000000000000 offset, 6 functions] `.?AVBaseSceneFragmentUIHandler@?A0x0b8ee6d7@@` +`class `anonymous namespace'::BeginFragmentUIHandler`: VTable [0x0000000002FF2430, 0x0000000000000000 offset, 6 functions] `.?AVBeginFragmentUIHandler@?A0x0b8ee6d7@@` +`class `anonymous namespace'::EndFragmentUIHandler`: VTable [0x0000000002FF2478, 0x0000000000000000 offset, 6 functions] `.?AVEndFragmentUIHandler@?A0x0b8ee6d7@@` +`class SceneInternal::IGetEditedFragmentCodeFunctor`: VTable [0x0000000002FF24C0, 0x0000000000000000 offset, 2 functions] `.?AVIGetEditedFragmentCodeFunctor@SceneInternal@@` +`class SceneInternal::BeginFragmentEdited`: VTable [0x0000000002FF24E0, 0x0000000000000000 offset, 2 functions] `.?AVBeginFragmentEdited@SceneInternal@@` +`class SceneInternal::EndFragmentEdited`: VTable [0x0000000002FF2500, 0x0000000000000000 offset, 2 functions] `.?AVEndFragmentEdited@SceneInternal@@` +`class SceneInternal::ActionFragmentEdited`: VTable [0x0000000002FF2520, 0x0000000000000000 offset, 2 functions] `.?AVActionFragmentEdited@SceneInternal@@` +`class SceneInternal::PhaseBeginFragmentEdited`: VTable [0x0000000002FF2540, 0x0000000000000000 offset, 2 functions] `.?AVPhaseBeginFragmentEdited@SceneInternal@@` +`class SceneInternal::PhaseEndFragmentEdited`: VTable [0x0000000002FF2560, 0x0000000000000000 offset, 2 functions] `.?AVPhaseEndFragmentEdited@SceneInternal@@` +`class SceneInternal::FragmentRemoveCheckFunctor`: VTable [0x0000000002FF2580, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@SceneInternal@@` +`class BGSSceneAction`: VTable [0x0000000002FF2B80, 0x0000000000000000 offset, 25 functions] `.?AVBGSSceneAction@@` +`class BGSSceneActionDialogue`: VTable [0x0000000002FF2C80, 0x0000000000000000 offset, 25 functions] `.?AVBGSSceneActionDialogue@@` +`class BGSSceneActionPackage`: VTable [0x0000000002FF2D80, 0x0000000000000000 offset, 25 functions] `.?AVBGSSceneActionPackage@@` +`class BGSSceneActionTimer`: VTable [0x0000000002FF3398, 0x0000000000000000 offset, 25 functions] `.?AVBGSSceneActionTimer@@` +`class `anonymous namespace'::FragmentUIHandler`: VTable [0x0000000002FF3658, 0x0000000000000000 offset, 6 functions] `.?AVFragmentUIHandler@?A0xe15e2397@@` +`class `anonymous namespace'::BaseSceneFragmentUIHandler`: VTable [0x0000000002FF3950, 0x0000000000000000 offset, 6 functions] `.?AVBaseSceneFragmentUIHandler@?A0x83f5b908@@` +`class `anonymous namespace'::BeginFragmentUIHandler`: VTable [0x0000000002FF3998, 0x0000000000000000 offset, 6 functions] `.?AVBeginFragmentUIHandler@?A0x83f5b908@@` +`class `anonymous namespace'::EndFragmentUIHandler`: VTable [0x0000000002FF39E0, 0x0000000000000000 offset, 6 functions] `.?AVEndFragmentUIHandler@?A0x83f5b908@@` +`class BGSVoiceType`: VTable [0x0000000002FF3C40, 0x0000000000000000 offset, 101 functions] `.?AVBGSVoiceType@@` +`class ConcreteFormFactory`: VTable [0x0000000002FF4018, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSVoiceType@@$0GC@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FF4068, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSVoiceType@@$0GC@$0DA@$04@@` +`class CreatureSounds`: VTable [0x0000000002FF44F8, 0x0000000000000000 offset, 2 functions] `.?AVCreatureSounds@@` +`class TESAnimGroup`: VTable [0x0000000002FF58B8, 0x0000000000000000 offset, 2 functions] `.?AVTESAnimGroup@@` +`class TESClass`: VTable [0x0000000002FF5E18, 0x0000000000000000 offset, 101 functions] `.?AVTESClass@@` +`class TESClass`: VTable [0x0000000002FF61F0, 0x0000000000000028 offset, 16 functions] `.?AVTESClass@@` +`class TESClass`: VTable [0x0000000002FF6298, 0x0000000000000040 offset, 14 functions] `.?AVTESClass@@` +`class TESClass`: VTable [0x0000000002FF6328, 0x0000000000000068 offset, 20 functions] `.?AVTESClass@@` +`class ConcreteFormFactory`: VTable [0x0000000002FF63F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESClass@@$09@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FF6448, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESClass@@$09$0DB@$04@@` +`class TESEyes`: VTable [0x0000000002FF6648, 0x0000000000000000 offset, 101 functions] `.?AVTESEyes@@` +`class TESEyes`: VTable [0x0000000002FF6A20, 0x0000000000000028 offset, 16 functions] `.?AVTESEyes@@` +`class TESEyes`: VTable [0x0000000002FF6AC8, 0x0000000000000040 offset, 20 functions] `.?AVTESEyes@@` +`class ConcreteFormFactory`: VTable [0x0000000002FF6B98, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESEyes@@$0N@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FF6BE8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESEyes@@$0N@$0DD@$08@@` +`class TESFaction`: VTable [0x0000000002FF6EC8, 0x0000000000000000 offset, 101 functions] `.?AVTESFaction@@` +`class TESFaction`: VTable [0x0000000002FF72A0, 0x0000000000000028 offset, 16 functions] `.?AVTESFaction@@` +`class TESFaction`: VTable [0x0000000002FF7348, 0x0000000000000040 offset, 14 functions] `.?AVTESFaction@@` +`class ConcreteFormFactory`: VTable [0x0000000002FF73D8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESFaction@@$0L@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FF7428, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESFaction@@$0L@$0DF@$04@@` +`class NiTLargeArray >`: VTable [0x0000000002FF7FD0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@PEAVTESForm@@V?$NiTMallocInterface@PEAVTESForm@@@@@@` +`class NiTLargePrimitiveArray`: VTable [0x0000000002FF7FE8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargePrimitiveArray@PEAVTESForm@@@@` +`class NiFormArray`: VTable [0x0000000002FF8000, 0x0000000000000000 offset, 1 functions] `.?AVNiFormArray@@` +`class TESIdleForm`: VTable [0x0000000002FF8018, 0x0000000000000000 offset, 101 functions] `.?AVTESIdleForm@@` +`class ConcreteFormFactory`: VTable [0x0000000002FF8410, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESIdleForm@@$0EO@@@` +`class BSMapBase`: VTable [0x0000000002FF8560, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESIdleForm@@_N@@` +`class BSScrapMap`: VTable [0x0000000002FF85B0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@PEAVTESIdleForm@@_N@@` +`class ActorValueOwner`: VTable [0x0000000002FFA620, 0x0000000000000000 offset, 9 functions] `.?AVActorValueOwner@@` +`class TESActorBase`: VTable [0x0000000002FFA680, 0x0000000000000000 offset, 129 functions] `.?AVTESActorBase@@` +`class TESActorBase`: VTable [0x0000000002FFAB60, 0x0000000000000050 offset, 20 functions] `.?AVTESActorBase@@` +`class TESActorBase`: VTable [0x0000000002FFAC30, 0x00000000000000A0 offset, 15 functions] `.?AVTESActorBase@@` +`class TESActorBase`: VTable [0x0000000002FFACD0, 0x00000000000000B8 offset, 14 functions] `.?AVTESActorBase@@` +`class TESActorBase`: VTable [0x0000000002FFAD60, 0x00000000000000C8 offset, 14 functions] `.?AVTESActorBase@@` +`class TESActorBase`: VTable [0x0000000002FFADF0, 0x00000000000000F8 offset, 16 functions] `.?AVTESActorBase@@` +`class TESActorBase`: VTable [0x0000000002FFAE98, 0x0000000000000110 offset, 9 functions] `.?AVTESActorBase@@` +`class TESActorBase`: VTable [0x0000000002FFAEF8, 0x0000000000000118 offset, 14 functions] `.?AVTESActorBase@@` +`class TESActorBase`: VTable [0x0000000002FFAF88, 0x0000000000000128 offset, 14 functions] `.?AVTESActorBase@@` +`class TESActorBase`: VTable [0x0000000002FFB018, 0x0000000000000140 offset, 16 functions] `.?AVTESActorBase@@` +`class TESActorBase`: VTable [0x0000000002FFB0C0, 0x0000000000000158 offset, 14 functions] `.?AVTESActorBase@@` +`class TESActorBase`: VTable [0x0000000002FFB150, 0x0000000000000168 offset, 14 functions] `.?AVTESActorBase@@` +`class TESNPC`: VTable [0x0000000002FFB1E0, 0x0000000000000000 offset, 129 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFB6C0, 0x0000000000000050 offset, 20 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFB790, 0x00000000000000A0 offset, 15 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFB830, 0x00000000000000B8 offset, 14 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFB8C0, 0x00000000000000C8 offset, 14 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFB950, 0x00000000000000F8 offset, 16 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFB9F8, 0x0000000000000110 offset, 9 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFBA58, 0x0000000000000118 offset, 14 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFBAE8, 0x0000000000000128 offset, 14 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFBB78, 0x0000000000000140 offset, 16 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFBC20, 0x0000000000000158 offset, 14 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFBCB0, 0x0000000000000168 offset, 14 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFBD40, 0x0000000000000178 offset, 14 functions] `.?AVTESNPC@@` +`class TESNPC`: VTable [0x0000000002FFBDD0, 0x0000000000000188 offset, 14 functions] `.?AVTESNPC@@` +`class ConcreteFormFactory`: VTable [0x0000000002FFBEC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESNPC@@$0CL@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FFBF10, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESNPC@@$0CL@$0N@$0A@@@` +`class `anonymous namespace'::InitWornVisitor`: VTable [0x0000000002FFC9D8, 0x0000000000000000 offset, 4 functions] `.?AVInitWornVisitor@?A0x4be06db0@@` +`class TESQuest`: VTable [0x0000000002FFECF0, 0x0000000000000000 offset, 106 functions] `.?AVTESQuest@@` +`class TESQuest`: VTable [0x0000000002FFF0F8, 0x0000000000000028 offset, 16 functions] `.?AVTESQuest@@` +`class ConcreteFormFactory`: VTable [0x0000000002FFF238, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESQuest@@$0EN@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000002FFF288, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESQuest@@$0EN@$0CO@$04@@` +`class TESQuest::IAliasFilterFunctor`: VTable [0x0000000003000978, 0x0000000000000000 offset, 2 functions] `.?AVIAliasFilterFunctor@TESQuest@@` +`class QuestInternal::FragmentRemoveCheckFunctor`: VTable [0x00000000030009C8, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@QuestInternal@@` +`class `anonymous namespace'::LocAliasOnly`: VTable [0x0000000003000A68, 0x0000000000000000 offset, 2 functions] `.?AVLocAliasOnly@?A0xc28c2203@@` +`class `anonymous namespace'::RefAliasOnly`: VTable [0x0000000003000A88, 0x0000000000000000 offset, 2 functions] `.?AVRefAliasOnly@?A0xc28c2203@@` +`class REFREventCallbacks::IEventCallback`: VTable [0x0000000003001550, 0x0000000000000000 offset, 5 functions] `.?AVIEventCallback@REFREventCallbacks@@` +`class REFREventCallbacks::IEventCallbackFactory`: VTable [0x0000000003001590, 0x0000000000000000 offset, 5 functions] `.?AVIEventCallbackFactory@REFREventCallbacks@@` +`class `anonymous namespace'::StageItemFinishedCallback`: VTable [0x00000000030015D0, 0x0000000000000000 offset, 5 functions] `.?AVStageItemFinishedCallback@?A0xcad86281@@` +`class REFREventCallbacks::ConcreteEventCallbackFactory`: VTable [0x0000000003001620, 0x0000000000000000 offset, 5 functions] `.?AV?$ConcreteEventCallbackFactory@VStageItemFinishedCallback@?A0xcad86281@@@REFREventCallbacks@@` +`class `anonymous namespace'::StageFragmentUIHandler`: VTable [0x0000000003001A10, 0x0000000000000000 offset, 6 functions] `.?AVStageFragmentUIHandler@?A0x7292a40c@@` +`class BGSTextureModel`: VTable [0x0000000003002940, 0x0000000000000000 offset, 20 functions] `.?AVBGSTextureModel@@` +`class BGSBehaviorGraphModel`: VTable [0x0000000003002A10, 0x0000000000000000 offset, 20 functions] `.?AVBGSBehaviorGraphModel@@` +`class AttackAnimationArrayMap`: VTable [0x0000000003002AE0, 0x0000000000000000 offset, 2 functions] `.?AVAttackAnimationArrayMap@@` +`class TESRace`: VTable [0x0000000003002B00, 0x0000000000000000 offset, 101 functions] `.?AVTESRace@@` +`class TESRace`: VTable [0x0000000003002ED8, 0x0000000000000028 offset, 16 functions] `.?AVTESRace@@` +`class TESRace`: VTable [0x0000000003002F80, 0x0000000000000040 offset, 14 functions] `.?AVTESRace@@` +`class TESRace`: VTable [0x0000000003003010, 0x0000000000000068 offset, 14 functions] `.?AVTESRace@@` +`class TESRace`: VTable [0x00000000030030A0, 0x0000000000000078 offset, 14 functions] `.?AVTESRace@@` +`class TESRace`: VTable [0x0000000003003130, 0x0000000000000090 offset, 14 functions] `.?AVTESRace@@` +`class TESRace`: VTable [0x00000000030031C0, 0x00000000000000A0 offset, 16 functions] `.?AVTESRace@@` +`class TESRace`: VTable [0x0000000003003268, 0x00000000000000B8 offset, 14 functions] `.?AVTESRace@@` +`class ConcreteFormFactory`: VTable [0x00000000030032F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESRace@@$0O@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003003348, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESRace@@$0O@$0DC@$04@@` +`class TESTopic`: VTable [0x0000000003005D50, 0x0000000000000000 offset, 101 functions] `.?AVTESTopic@@` +`class TESTopic`: VTable [0x0000000003006128, 0x0000000000000028 offset, 16 functions] `.?AVTESTopic@@` +`class ConcreteFormFactory`: VTable [0x00000000030061F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESTopic@@$0EL@@@` +`class NiTMapBase >,class TESTopicInfo * __ptr64,bool>`: VTable [0x00000000030070B8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESTopicInfo@@_N@@@@PEAVTESTopicInfo@@_N@@` +`class NiTMap`: VTable [0x0000000003007108, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESTopicInfo@@_N@@` +`class TESTopicInfo`: VTable [0x0000000003007860, 0x0000000000000000 offset, 103 functions] `.?AVTESTopicInfo@@` +`class ConcreteFormFactory`: VTable [0x0000000003007DC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESTopicInfo@@$0EM@@@` +`class `anonymous namespace'::TopicFragmentUIHandler`: VTable [0x0000000003008980, 0x0000000000000000 offset, 6 functions] `.?AVTopicFragmentUIHandler@?A0x3daf9218@@` +`class TopicInfoInternal::FragmentRemoveCheckFunctor`: VTable [0x0000000003008BC0, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@TopicInfoInternal@@` +`class BGSAcousticSpace`: VTable [0x0000000003008FB8, 0x0000000000000000 offset, 125 functions] `.?AVBGSAcousticSpace@@` +`class ConcreteFormFactory`: VTable [0x0000000003009478, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSAcousticSpace@@$0BA@@@` +`class ConcreteObjectFormFactory`: VTable [0x00000000030094C8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSAcousticSpace@@$0BA@$0EA@$07@@` +`class BGSCameraPath`: VTable [0x0000000003009958, 0x0000000000000000 offset, 101 functions] `.?AVBGSCameraPath@@` +`class ConcreteFormFactory`: VTable [0x0000000003009D30, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSCameraPath@@$0GB@@@` +`class NiTArray >`: VTable [0x000000000300A078, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVBGSCameraPath@@V?$NiTMallocInterface@PEAVBGSCameraPath@@@@@@` +`class NiTPrimitiveArray`: VTable [0x000000000300A090, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVBGSCameraPath@@@@` +`class BGSCameraShot`: VTable [0x000000000300A448, 0x0000000000000000 offset, 101 functions] `.?AVBGSCameraShot@@` +`class BGSCameraShot`: VTable [0x000000000300A820, 0x0000000000000028 offset, 20 functions] `.?AVBGSCameraShot@@` +`class BGSCameraShot`: VTable [0x000000000300A8F0, 0x0000000000000058 offset, 14 functions] `.?AVBGSCameraShot@@` +`class IJSONSerializer`: VTable [0x000000000300A980, 0x0000000000000000 offset, 3 functions] `.?AVIJSONSerializer@@` +`class ConcreteFormFactory`: VTable [0x000000000300A9A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSCameraShot@@$0GA@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000300A9F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSCameraShot@@$0GA@$0CL@$05@@` +`class JSONSerializerBase`: VTable [0x000000000300AB48, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VCameraShotSerializer@?A0xff7bd728@@VBGSCameraShot@@$0GA@@@` +`class `anonymous namespace'::CameraShotSerializer`: VTable [0x000000000300AB70, 0x0000000000000000 offset, 3 functions] `.?AVCameraShotSerializer@?A0xff7bd728@@` +`class BGSCollisionLayer`: VTable [0x000000000300AFF0, 0x0000000000000000 offset, 101 functions] `.?AVBGSCollisionLayer@@` +`class BGSCollisionLayer`: VTable [0x000000000300B3C8, 0x0000000000000028 offset, 14 functions] `.?AVBGSCollisionLayer@@` +`class ConcreteFormFactory`: VTable [0x000000000300B458, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSCollisionLayer@@$0IE@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000300B4A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSCollisionLayer@@$0IE@$0GD@$03@@` +`class BGSColorForm`: VTable [0x000000000300BEB8, 0x0000000000000000 offset, 101 functions] `.?AVBGSColorForm@@` +`class BGSColorForm`: VTable [0x000000000300C290, 0x0000000000000028 offset, 16 functions] `.?AVBGSColorForm@@` +`class ConcreteFormFactory`: VTable [0x000000000300C338, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSColorForm@@$0IF@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000300C388, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSColorForm@@$0IF@$0GF@$03@@` +`class BGSDefaultObjectManager`: VTable [0x000000000300F2E0, 0x0000000000000000 offset, 101 functions] `.?AVBGSDefaultObjectManager@@` +`class BGSFootstep`: VTable [0x000000000300FA58, 0x0000000000000000 offset, 101 functions] `.?AVBGSFootstep@@` +`class ConcreteFormFactory`: VTable [0x000000000300FE30, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSFootstep@@$0GO@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000300FE80, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSFootstep@@$0GO@$0EJ@$05@@` +`class BGSFootstepSet`: VTable [0x00000000030101F8, 0x0000000000000000 offset, 101 functions] `.?AVBGSFootstepSet@@` +`class ConcreteFormFactory`: VTable [0x00000000030105D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSFootstepSet@@$0GP@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003010620, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSFootstepSet@@$0GP@$0EK@$05@@` +`class BGSImpactData`: VTable [0x0000000003010918, 0x0000000000000000 offset, 101 functions] `.?AVBGSImpactData@@` +`class BGSImpactData`: VTable [0x0000000003010CF0, 0x0000000000000028 offset, 20 functions] `.?AVBGSImpactData@@` +`class ConcreteFormFactory`: VTable [0x0000000003010DC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSImpactData@@$0GE@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003010E10, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSImpactData@@$0GE@$0CM@$05@@` +`class BGSImpactDataSet`: VTable [0x00000000030112D8, 0x0000000000000000 offset, 101 functions] `.?AVBGSImpactDataSet@@` +`class BGSImpactDataSet`: VTable [0x00000000030116B0, 0x0000000000000028 offset, 14 functions] `.?AVBGSImpactDataSet@@` +`class ConcreteFormFactory`: VTable [0x0000000003011740, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSImpactDataSet@@$0GF@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003011790, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSImpactDataSet@@$0GF@$0CN@$05@@` +`class BGSListForm`: VTable [0x0000000003011DC8, 0x0000000000000000 offset, 101 functions] `.?AVBGSListForm@@` +`class ConcreteFormFactory`: VTable [0x00000000030121A0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSListForm@@$0FL@@@` +`class ConcreteObjectFormFactory`: VTable [0x00000000030121F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSListForm@@$0FL@$0CG@$03@@` +`class BSMaterialObject`: VTable [0x0000000003012778, 0x0000000000000000 offset, 2 functions] `.?AVBSMaterialObject@@` +`class BGSMaterialObject`: VTable [0x0000000003012798, 0x0000000000000000 offset, 101 functions] `.?AVBGSMaterialObject@@` +`class BGSMaterialObject`: VTable [0x0000000003012B70, 0x0000000000000028 offset, 20 functions] `.?AVBGSMaterialObject@@` +`class BGSMaterialObject`: VTable [0x0000000003012C40, 0x0000000000000058 offset, 2 functions] `.?AVBGSMaterialObject@@` +`class ConcreteFormFactory`: VTable [0x0000000003012C60, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMaterialObject@@$0HO@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003012CB0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMaterialObject@@$0HO@$0FF@$03@@` +`class BGSMaterialType`: VTable [0x0000000003013240, 0x0000000000000000 offset, 101 functions] `.?AVBGSMaterialType@@` +`class ConcreteFormFactory`: VTable [0x0000000003013618, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMaterialType@@$0GD@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003013668, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMaterialType@@$0GD@$0EL@$05@@` +`class BSMapBase`: VTable [0x0000000003013B00, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@IPEAVBGSMaterialType@@@@` +`class BSScrapMap`: VTable [0x0000000003013B50, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@IPEAVBGSMaterialType@@@@` +`class BGSMenuIcon`: VTable [0x0000000003013DA8, 0x0000000000000000 offset, 101 functions] `.?AVBGSMenuIcon@@` +`class BGSMenuIcon`: VTable [0x0000000003014180, 0x0000000000000028 offset, 20 functions] `.?AVBGSMenuIcon@@` +`class ConcreteFormFactory`: VTable [0x0000000003014250, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMenuIcon@@$07@@` +`class ConcreteObjectFormFactory`: VTable [0x00000000030142A0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMenuIcon@@$07$0CF@$08@@` +`class BGSMessage`: VTable [0x0000000003014548, 0x0000000000000000 offset, 101 functions] `.?AVBGSMessage@@` +`class BGSMessage`: VTable [0x0000000003014920, 0x0000000000000028 offset, 16 functions] `.?AVBGSMessage@@` +`class BGSMessage`: VTable [0x00000000030149C8, 0x0000000000000040 offset, 14 functions] `.?AVBGSMessage@@` +`class ConcreteFormFactory`: VTable [0x0000000003014A70, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMessage@@$0GJ@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003014AC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMessage@@$0GJ@$0DO@$03@@` +`class BGSMusicPaletteTrack`: VTable [0x00000000030153A0, 0x0000000000000000 offset, 29 functions] `.?AVBGSMusicPaletteTrack@@` +`struct IBSTCreator`: VTable [0x00000000030154C0, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSIMusicTrack@@@@` +`struct BSTDerivedCreator`: VTable [0x00000000030154E8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSMusicPaletteTrack@@VBSIMusicTrack@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003015510, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSMusicPaletteTrack@@VBSIMusicTrack@@@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000003015538, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSMusicPaletteTrack@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` +`class BGSMusicSilenceTrack`: VTable [0x0000000003015B28, 0x0000000000000000 offset, 27 functions] `.?AVBGSMusicSilenceTrack@@` +`struct BSTDerivedCreator`: VTable [0x0000000003015C38, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSMusicSilenceTrack@@VBSIMusicTrack@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003015C60, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSMusicSilenceTrack@@VBSIMusicTrack@@@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000003015C88, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSMusicSilenceTrack@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` +`class BGSMusicSingleTrack`: VTable [0x0000000003015EE0, 0x0000000000000000 offset, 27 functions] `.?AVBGSMusicSingleTrack@@` +`struct BSTDerivedCreator`: VTable [0x0000000003015FF8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSMusicSingleTrack@@VBSIMusicTrack@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003016020, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSMusicSingleTrack@@VBSIMusicTrack@@@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000003016048, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSMusicSingleTrack@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` +`class BSIMusicTrack`: VTable [0x00000000030164A0, 0x0000000000000000 offset, 11 functions] `.?AVBSIMusicTrack@@` +`class BGSMusicTrack`: VTable [0x0000000003016518, 0x0000000000000000 offset, 27 functions] `.?AVBGSMusicTrack@@` +`class BGSMusicTrackFormWrapper`: VTable [0x0000000003016908, 0x0000000000000000 offset, 101 functions] `.?AVBGSMusicTrackFormWrapper@@` +`class BGSMusicTrackFormWrapper`: VTable [0x0000000003016CE0, 0x0000000000000028 offset, 11 functions] `.?AVBGSMusicTrackFormWrapper@@` +`class ConcreteFormFactory`: VTable [0x0000000003016D88, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMusicTrackFormWrapper@@$0HE@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003016DD8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMusicTrackFormWrapper@@$0HE@$0EN@$07@@` +`class BSIMusicType`: VTable [0x0000000003017228, 0x0000000000000000 offset, 9 functions] `.?AVBSIMusicType@@` +`class BGSMusicType`: VTable [0x0000000003017288, 0x0000000000000000 offset, 101 functions] `.?AVBGSMusicType@@` +`class BGSMusicType`: VTable [0x0000000003017660, 0x0000000000000028 offset, 9 functions] `.?AVBGSMusicType@@` +`class ConcreteFormFactory`: VTable [0x00000000030176C0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMusicType@@$0GN@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003017710, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMusicType@@$0GN@$0EE@$07@@` +`class BSIReverbType`: VTable [0x0000000003017AB0, 0x0000000000000000 offset, 11 functions] `.?AVBSIReverbType@@` +`class BGSReverbParameters`: VTable [0x0000000003017B28, 0x0000000000000000 offset, 101 functions] `.?AVBGSReverbParameters@@` +`class BGSReverbParameters`: VTable [0x0000000003017F00, 0x0000000000000028 offset, 11 functions] `.?AVBGSReverbParameters@@` +`class ConcreteFormFactory`: VTable [0x0000000003017F78, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSReverbParameters@@$0IG@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003017FC8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSReverbParameters@@$0IG@$0GG@$07@@` +`class BSISoundCategory`: VTable [0x0000000003018530, 0x0000000000000000 offset, 12 functions] `.?AVBSISoundCategory@@` +`class BGSSoundCategory`: VTable [0x00000000030185B0, 0x0000000000000000 offset, 101 functions] `.?AVBGSSoundCategory@@` +`class BGSSoundCategory`: VTable [0x0000000003018988, 0x0000000000000028 offset, 16 functions] `.?AVBGSSoundCategory@@` +`class BGSSoundCategory`: VTable [0x0000000003018A30, 0x0000000000000040 offset, 12 functions] `.?AVBGSSoundCategory@@` +`class ConcreteFormFactory`: VTable [0x0000000003018AB0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSSoundCategory@@$0IC@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003018B00, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSSoundCategory@@$0IC@$0GA@$07@@` +`class JSONSerializerBase`: VTable [0x0000000003018B90, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VSoundCatSerializer@?A0x3a6f2d3a@@VBGSSoundCategory@@$0IC@@@` +`class `anonymous namespace'::SoundCatSerializer`: VTable [0x0000000003018BB8, 0x0000000000000000 offset, 3 functions] `.?AVSoundCatSerializer@?A0x3a6f2d3a@@` +`class BSISoundDescriptor`: VTable [0x0000000003019450, 0x0000000000000000 offset, 3 functions] `.?AVBSISoundDescriptor@@` +`class BGSSoundDescriptorForm`: VTable [0x0000000003019478, 0x0000000000000000 offset, 102 functions] `.?AVBGSSoundDescriptorForm@@` +`class BGSSoundDescriptorForm`: VTable [0x0000000003019858, 0x0000000000000028 offset, 3 functions] `.?AVBGSSoundDescriptorForm@@` +`class ConcreteFormFactory`: VTable [0x0000000003019880, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSSoundDescriptorForm@@$0IA@@@` +`class ConcreteObjectFormFactory`: VTable [0x00000000030198D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSSoundDescriptorForm@@$0IA@$0FO@$07@@` +`class JSONSerializerBase`: VTable [0x0000000003019938, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VSoundDescSerializer@?A0x02e2d557@@VBGSSoundDescriptorForm@@$0IA@@@` +`class `anonymous namespace'::SoundDescSerializer`: VTable [0x0000000003019960, 0x0000000000000000 offset, 3 functions] `.?AVSoundDescSerializer@?A0x02e2d557@@` +`struct BSISoundOutputModel::BSIAttenuationCharacteristics`: VTable [0x0000000003019D88, 0x0000000000000000 offset, 4 functions] `.?AUBSIAttenuationCharacteristics@BSISoundOutputModel@@` +`class BSISoundOutputModel`: VTable [0x0000000003019DB8, 0x0000000000000000 offset, 10 functions] `.?AVBSISoundOutputModel@@` +`struct BGSSoundOutput::DynamicAttenuationCharacteristics`: VTable [0x0000000003019E28, 0x0000000000000000 offset, 4 functions] `.?AUDynamicAttenuationCharacteristics@BGSSoundOutput@@` +`class BGSSoundOutput`: VTable [0x0000000003019E58, 0x0000000000000000 offset, 101 functions] `.?AVBGSSoundOutput@@` +`class BGSSoundOutput`: VTable [0x000000000301A230, 0x0000000000000028 offset, 10 functions] `.?AVBGSSoundOutput@@` +`class ConcreteFormFactory`: VTable [0x000000000301A388, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSSoundOutput@@$0ID@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000301A3D8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSSoundOutput@@$0ID@$0GC@$07@@` +`struct BSISoundDescriptor::BSIPlaybackCharacteristics`: VTable [0x000000000301AA58, 0x0000000000000000 offset, 6 functions] `.?AUBSIPlaybackCharacteristics@BSISoundDescriptor@@` +`class BGSSoundDescriptor`: VTable [0x000000000301AAA0, 0x0000000000000000 offset, 27 functions] `.?AVBGSSoundDescriptor@@` +`struct BGSStandardSoundDef::SoundPlaybackCharacteristics`: VTable [0x000000000301ABB0, 0x0000000000000000 offset, 6 functions] `.?AUSoundPlaybackCharacteristics@BGSStandardSoundDef@@` +`class BGSStandardSoundDef`: VTable [0x000000000301ABF8, 0x0000000000000000 offset, 27 functions] `.?AVBGSStandardSoundDef@@` +`struct IBSTCreator`: VTable [0x000000000301AD08, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBGSSoundDescriptor@@@@` +`struct BSTDerivedCreator`: VTable [0x000000000301AD30, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSStandardSoundDef@@VBGSSoundDescriptor@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000301AD58, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSStandardSoundDef@@VBGSSoundDescriptor@@@@V?$BSTCreateFactoryManager@IVBGSSoundDescriptor@@$07@@@@` +`struct AutoRegisterCreator >`: VTable [0x000000000301AD80, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSStandardSoundDef@@V?$BSTCreateFactoryManager@IVBGSSoundDescriptor@@$07@@@@` +`class BSTextureSet`: VTable [0x000000000301B6E0, 0x0000000000000000 offset, 42 functions] `.?AVBSTextureSet@@` +`class BSShaderTextureSet`: VTable [0x000000000301B880, 0x0000000000000000 offset, 42 functions] `.?AVBSShaderTextureSet@@` +`class BGSTextureSet`: VTable [0x000000000301BA20, 0x0000000000000000 offset, 125 functions] `.?AVBGSTextureSet@@` +`class BGSTextureSet`: VTable [0x000000000301BEE0, 0x0000000000000050 offset, 42 functions] `.?AVBGSTextureSet@@` +`class ConcreteFormFactory`: VTable [0x000000000301C080, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSTextureSet@@$06@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000301C0D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSTextureSet@@$06$0CD@$03@@` +`class `anonymous namespace'::GameSettingFactory`: VTable [0x000000000301C900, 0x0000000000000000 offset, 7 functions] `.?AVGameSettingFactory@?A0x682a33f3@@` +`class TESGlobal`: VTable [0x000000000301CD38, 0x0000000000000000 offset, 101 functions] `.?AVTESGlobal@@` +`class ConcreteFormFactory`: VTable [0x000000000301D110, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESGlobal@@$08@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000301D160, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESGlobal@@$08$0DK@$03@@` +`class TESLoadScreen`: VTable [0x000000000301D328, 0x0000000000000000 offset, 101 functions] `.?AVTESLoadScreen@@` +`class TESLoadScreen`: VTable [0x000000000301D700, 0x0000000000000028 offset, 14 functions] `.?AVTESLoadScreen@@` +`class ConcreteFormFactory`: VTable [0x000000000301D790, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLoadScreen@@$0FB@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000301D7E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLoadScreen@@$0FB@$0BK@$03@@` +`class Script`: VTable [0x000000000301DE38, 0x0000000000000000 offset, 103 functions] `.?AVScript@@` +`class ConcreteFormFactory`: VTable [0x000000000301E220, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VScript@@$0BD@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000301E270, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VScript@@$0BD@$0EC@$08@@` +`struct `anonymous namespace'::FindFormTypeHelper`: VTable [0x00000000030208E0, 0x0000000000000000 offset, 2 functions] `.?AUFindFormTypeHelper@?A0xf595c9f7@@` +`class BSNodeVisualization::MatchingNodeVisualizer`: VTable [0x0000000003022778, 0x0000000000000000 offset, 2 functions] `.?AVMatchingNodeVisualizer@BSNodeVisualization@@` +`class TESShout`: VTable [0x0000000003030DB0, 0x0000000000000000 offset, 101 functions] `.?AVTESShout@@` +`class TESShout`: VTable [0x0000000003031188, 0x0000000000000028 offset, 16 functions] `.?AVTESShout@@` +`class TESShout`: VTable [0x0000000003031230, 0x0000000000000040 offset, 15 functions] `.?AVTESShout@@` +`class TESShout`: VTable [0x00000000030312D0, 0x0000000000000050 offset, 16 functions] `.?AVTESShout@@` +`class TESShout`: VTable [0x0000000003031378, 0x0000000000000060 offset, 14 functions] `.?AVTESShout@@` +`class ConcreteFormFactory`: VTable [0x00000000030315E8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESShout@@$0HH@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003031638, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESShout@@$0HH@$0EP@$01@@` +`class TESSound`: VTable [0x00000000030318F0, 0x0000000000000000 offset, 125 functions] `.?AVTESSound@@` +`class ConcreteFormFactory`: VTable [0x0000000003031DB0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESSound@@$0P@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003031E00, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESSound@@$0P@$0BH@$07@@` +`class TESWordOfPower`: VTable [0x0000000003032078, 0x0000000000000000 offset, 101 functions] `.?AVTESWordOfPower@@` +`class TESWordOfPower`: VTable [0x0000000003032450, 0x0000000000000028 offset, 16 functions] `.?AVTESWordOfPower@@` +`class ConcreteFormFactory`: VTable [0x00000000030324F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESWordOfPower@@$0HG@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003032548, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESWordOfPower@@$0HG@$0EO@$01@@` +`class BGSAddonNode`: VTable [0x0000000003032780, 0x0000000000000000 offset, 125 functions] `.?AVBGSAddonNode@@` +`class BGSAddonNode`: VTable [0x0000000003032C40, 0x0000000000000050 offset, 20 functions] `.?AVBGSAddonNode@@` +`class ConcreteFormFactory`: VTable [0x0000000003032D10, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSAddonNode@@$0FO@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003032D60, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSAddonNode@@$0FO@$0CJ@$05@@` +`class BGSApparatus`: VTable [0x0000000003033248, 0x0000000000000000 offset, 128 functions] `.?AVBGSApparatus@@` +`class BGSApparatus`: VTable [0x0000000003033720, 0x0000000000000050 offset, 16 functions] `.?AVBGSApparatus@@` +`class BGSApparatus`: VTable [0x00000000030337C8, 0x0000000000000068 offset, 20 functions] `.?AVBGSApparatus@@` +`class BGSApparatus`: VTable [0x0000000003033898, 0x00000000000000B0 offset, 20 functions] `.?AVBGSApparatus@@` +`class BGSApparatus`: VTable [0x0000000003033968, 0x00000000000000D8 offset, 14 functions] `.?AVBGSApparatus@@` +`class BGSApparatus`: VTable [0x00000000030339F8, 0x00000000000000E8 offset, 14 functions] `.?AVBGSApparatus@@` +`class BGSApparatus`: VTable [0x0000000003033A88, 0x00000000000000F8 offset, 14 functions] `.?AVBGSApparatus@@` +`class BGSApparatus`: VTable [0x0000000003033B18, 0x0000000000000108 offset, 14 functions] `.?AVBGSApparatus@@` +`class BGSApparatus`: VTable [0x0000000003033BA8, 0x0000000000000138 offset, 14 functions] `.?AVBGSApparatus@@` +`class BGSApparatus`: VTable [0x0000000003033C38, 0x0000000000000150 offset, 16 functions] `.?AVBGSApparatus@@` +`class BGSApparatus`: VTable [0x0000000003033CE0, 0x0000000000000178 offset, 14 functions] `.?AVBGSApparatus@@` +`class BGSApparatus`: VTable [0x0000000003033D70, 0x0000000000000188 offset, 14 functions] `.?AVBGSApparatus@@` +`class ConcreteFormFactory`: VTable [0x0000000003033E00, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSApparatus@@$0CB@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003033E50, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSApparatus@@$0CB@$0FK@$08@@` +`class BGSArtObject`: VTable [0x0000000003034028, 0x0000000000000000 offset, 125 functions] `.?AVBGSArtObject@@` +`class BGSArtObject`: VTable [0x00000000030344E8, 0x0000000000000050 offset, 20 functions] `.?AVBGSArtObject@@` +`class ConcreteFormFactory`: VTable [0x00000000030345B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSArtObject@@$0HN@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003034608, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSArtObject@@$0HN@$0FE@$03@@` +`class BGSConstructibleObject`: VTable [0x0000000003034818, 0x0000000000000000 offset, 101 functions] `.?AVBGSConstructibleObject@@` +`class ConcreteFormFactory`: VTable [0x0000000003034BF0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSConstructibleObject@@$0DB@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003034C40, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSConstructibleObject@@$0DB@$0DP@$00@@` +`class BGSDebris`: VTable [0x0000000003035080, 0x0000000000000000 offset, 101 functions] `.?AVBGSDebris@@` +`class BGSDebris`: VTable [0x0000000003035458, 0x0000000000000028 offset, 14 functions] `.?AVBGSDebris@@` +`class ConcreteFormFactory`: VTable [0x00000000030354E8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSDebris@@$0FI@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003035538, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSDebris@@$0FI@$0CE@$05@@` +`class BGSExplosion`: VTable [0x00000000030359A0, 0x0000000000000000 offset, 125 functions] `.?AVBGSExplosion@@` +`class BGSExplosion`: VTable [0x0000000003035E60, 0x0000000000000050 offset, 16 functions] `.?AVBGSExplosion@@` +`class BGSExplosion`: VTable [0x0000000003035F08, 0x0000000000000068 offset, 20 functions] `.?AVBGSExplosion@@` +`class BGSExplosion`: VTable [0x0000000003035FD8, 0x0000000000000098 offset, 15 functions] `.?AVBGSExplosion@@` +`class BGSExplosion`: VTable [0x0000000003036078, 0x00000000000000B0 offset, 14 functions] `.?AVBGSExplosion@@` +`class BGSExplosion`: VTable [0x0000000003036108, 0x00000000000000B8 offset, 14 functions] `.?AVBGSExplosion@@` +`class ConcreteFormFactory`: VTable [0x0000000003036198, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSExplosion@@$0FH@@@` +`class ConcreteObjectFormFactory`: VTable [0x00000000030361E8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSExplosion@@$0FH@$0CC@$05@@` +`class JSONSerializerBase`: VTable [0x0000000003036310, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VExplosionSerializer@?A0xe79e1a68@@VBGSExplosion@@$0FH@@@` +`class `anonymous namespace'::ExplosionSerializer`: VTable [0x0000000003036338, 0x0000000000000000 offset, 3 functions] `.?AVExplosionSerializer@?A0xe79e1a68@@` +`class BGSHazard`: VTable [0x00000000030366C8, 0x0000000000000000 offset, 125 functions] `.?AVBGSHazard@@` +`class BGSHazard`: VTable [0x0000000003036B88, 0x0000000000000050 offset, 16 functions] `.?AVBGSHazard@@` +`class BGSHazard`: VTable [0x0000000003036C30, 0x0000000000000068 offset, 20 functions] `.?AVBGSHazard@@` +`class BGSHazard`: VTable [0x0000000003036D00, 0x0000000000000098 offset, 14 functions] `.?AVBGSHazard@@` +`class BGSHazard`: VTable [0x0000000003036D90, 0x00000000000000A0 offset, 14 functions] `.?AVBGSHazard@@` +`class ConcreteFormFactory`: VTable [0x0000000003036E20, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSHazard@@$0DD@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003036E70, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSHazard@@$0DD@$0FM@$05@@` +`class BGSMovableStatic`: VTable [0x00000000030371A8, 0x0000000000000000 offset, 16 functions] `.?AVBGSMovableStatic@@` +`class BGSMovableStatic`: VTable [0x0000000003037250, 0x0000000000000018 offset, 14 functions] `.?AVBGSMovableStatic@@` +`class BGSMovableStatic`: VTable [0x00000000030372E0, 0x0000000000000028 offset, 125 functions] `.?AVBGSMovableStatic@@` +`class BGSMovableStatic`: VTable [0x00000000030377A0, 0x0000000000000078 offset, 20 functions] `.?AVBGSMovableStatic@@` +`class ConcreteFormFactory`: VTable [0x0000000003037870, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMovableStatic@@$0CE@@@` +`class ConcreteObjectFormFactory`: VTable [0x00000000030378C0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMovableStatic@@$0CE@$0CK@$02@@` +`class BGSOutfit`: VTable [0x0000000003037BB0, 0x0000000000000000 offset, 101 functions] `.?AVBGSOutfit@@` +`class ConcreteFormFactory`: VTable [0x0000000003037F88, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSOutfit@@$0HM@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003037FD8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSOutfit@@$0HM@$0FD@$00@@` +`class BGSProjectile`: VTable [0x0000000003038430, 0x0000000000000000 offset, 125 functions] `.?AVBGSProjectile@@` +`class BGSProjectile`: VTable [0x00000000030388F0, 0x0000000000000050 offset, 16 functions] `.?AVBGSProjectile@@` +`class BGSProjectile`: VTable [0x0000000003038998, 0x0000000000000068 offset, 20 functions] `.?AVBGSProjectile@@` +`class BGSProjectile`: VTable [0x0000000003038A68, 0x0000000000000098 offset, 14 functions] `.?AVBGSProjectile@@` +`class BGSProjectile`: VTable [0x0000000003038AF8, 0x00000000000000A0 offset, 14 functions] `.?AVBGSProjectile@@` +`class ConcreteFormFactory`: VTable [0x0000000003038B88, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSProjectile@@$0DC@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003038BD8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSProjectile@@$0DC@$0CA@$05@@` +`class JSONSerializerBase`: VTable [0x0000000003038D58, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VProjectileSerializer@?A0x951bd8c3@@VBGSProjectile@@$0DC@@@` +`class `anonymous namespace'::ProjectileSerializer`: VTable [0x0000000003038D80, 0x0000000000000000 offset, 3 functions] `.?AVProjectileSerializer@?A0x951bd8c3@@` +`class BGSStaticCollection`: VTable [0x0000000003039430, 0x0000000000000000 offset, 125 functions] `.?AVBGSStaticCollection@@` +`class BGSStaticCollection`: VTable [0x00000000030398F0, 0x0000000000000050 offset, 20 functions] `.?AVBGSStaticCollection@@` +`class ConcreteFormFactory`: VTable [0x00000000030399C0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSStaticCollection@@$0CD@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003039A10, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSStaticCollection@@$0CD@$0EF@$02@@` +`class BSMapBase * __ptr64>`: VTable [0x0000000003039AD0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESObjectSTAT@@PEAV?$BSSimpleList@UREF_COL_DATA@BGSStaticCollection@@@@@@` +`class BSMap * __ptr64>`: VTable [0x0000000003039B20, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEAVTESObjectSTAT@@PEAV?$BSSimpleList@UREF_COL_DATA@BGSStaticCollection@@@@@@` +`class NiTArray >`: VTable [0x000000000303A458, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@UINVALID_REF_DATA@@V?$NiTMallocInterface@UINVALID_REF_DATA@@@@@@` +`class NiTPrimitiveArray`: VTable [0x000000000303A470, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@UINVALID_REF_DATA@@@@` +`class NiTArray >`: VTable [0x000000000303A760, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@UREF_COL_DATA@BGSStaticCollection@@V?$NiTMallocInterface@UREF_COL_DATA@BGSStaticCollection@@@@@@` +`class NiTPrimitiveArray`: VTable [0x000000000303A778, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@UREF_COL_DATA@BGSStaticCollection@@@@` +`class BGSTalkingActivator`: VTable [0x000000000303A880, 0x0000000000000000 offset, 126 functions] `.?AVBGSTalkingActivator@@` +`class BGSTalkingActivator`: VTable [0x000000000303AD48, 0x0000000000000050 offset, 16 functions] `.?AVBGSTalkingActivator@@` +`class BGSTalkingActivator`: VTable [0x000000000303ADF0, 0x0000000000000068 offset, 20 functions] `.?AVBGSTalkingActivator@@` +`class BGSTalkingActivator`: VTable [0x000000000303AEC0, 0x00000000000000B0 offset, 14 functions] `.?AVBGSTalkingActivator@@` +`class BGSTalkingActivator`: VTable [0x000000000303AF50, 0x00000000000000C0 offset, 4 functions] `.?AVBGSTalkingActivator@@` +`class BGSTalkingActivator`: VTable [0x000000000303AF80, 0x00000000000000C8 offset, 16 functions] `.?AVBGSTalkingActivator@@` +`class ConcreteFormFactory`: VTable [0x000000000303B028, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSTalkingActivator@@$0BJ@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000303B078, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSTalkingActivator@@$0BJ@$0CB@$0A@@@` +`class TESAmmo`: VTable [0x000000000303B250, 0x0000000000000000 offset, 125 functions] `.?AVTESAmmo@@` +`class TESAmmo`: VTable [0x000000000303B710, 0x0000000000000050 offset, 16 functions] `.?AVTESAmmo@@` +`class TESAmmo`: VTable [0x000000000303B7B8, 0x0000000000000068 offset, 20 functions] `.?AVTESAmmo@@` +`class TESAmmo`: VTable [0x000000000303B888, 0x00000000000000B0 offset, 20 functions] `.?AVTESAmmo@@` +`class TESAmmo`: VTable [0x000000000303B958, 0x00000000000000D8 offset, 14 functions] `.?AVTESAmmo@@` +`class TESAmmo`: VTable [0x000000000303B9E8, 0x0000000000000108 offset, 14 functions] `.?AVTESAmmo@@` +`class TESAmmo`: VTable [0x000000000303BA78, 0x0000000000000118 offset, 14 functions] `.?AVTESAmmo@@` +`class TESAmmo`: VTable [0x000000000303BB08, 0x0000000000000128 offset, 14 functions] `.?AVTESAmmo@@` +`class TESAmmo`: VTable [0x000000000303BB98, 0x0000000000000138 offset, 14 functions] `.?AVTESAmmo@@` +`class TESAmmo`: VTable [0x000000000303BC28, 0x0000000000000150 offset, 14 functions] `.?AVTESAmmo@@` +`class TESAmmo`: VTable [0x000000000303BCB8, 0x0000000000000178 offset, 16 functions] `.?AVTESAmmo@@` +`class ConcreteFormFactory`: VTable [0x000000000303BD60, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESAmmo@@$0CK@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000303BDB0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESAmmo@@$0CK@$0BE@$00@@` +`class TESCombatStyle`: VTable [0x000000000303C190, 0x0000000000000000 offset, 101 functions] `.?AVTESCombatStyle@@` +`class ConcreteFormFactory`: VTable [0x000000000303C568, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESCombatStyle@@$0FA@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000303C5B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESCombatStyle@@$0FA@$0BJ@$03@@` +`class TESEffectShader`: VTable [0x000000000303C928, 0x0000000000000000 offset, 101 functions] `.?AVTESEffectShader@@` +`class ConcreteFormFactory`: VTable [0x000000000303CD50, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESEffectShader@@$0FF@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000303CDA0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESEffectShader@@$0FF@$0BP@$05@@` +`class JSONSerializerBase`: VTable [0x000000000303D7C0, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VEffectShaderSerializer@?A0xecfaafbb@@VTESEffectShader@@$0FF@@@` +`class `anonymous namespace'::EffectShaderSerializer`: VTable [0x000000000303D7E8, 0x0000000000000000 offset, 3 functions] `.?AVEffectShaderSerializer@?A0xecfaafbb@@` +`class TESFlora`: VTable [0x000000000303DEC8, 0x0000000000000000 offset, 125 functions] `.?AVTESFlora@@` +`class TESFlora`: VTable [0x000000000303E388, 0x0000000000000050 offset, 16 functions] `.?AVTESFlora@@` +`class TESFlora`: VTable [0x000000000303E430, 0x0000000000000068 offset, 20 functions] `.?AVTESFlora@@` +`class TESFlora`: VTable [0x000000000303E500, 0x00000000000000B0 offset, 14 functions] `.?AVTESFlora@@` +`class TESFlora`: VTable [0x000000000303E590, 0x00000000000000C0 offset, 4 functions] `.?AVTESFlora@@` +`class TESFlora`: VTable [0x000000000303E5C0, 0x00000000000000C8 offset, 16 functions] `.?AVTESFlora@@` +`class TESFlora`: VTable [0x000000000303E668, 0x0000000000000138 offset, 14 functions] `.?AVTESFlora@@` +`class ConcreteFormFactory`: VTable [0x000000000303E6F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESFlora@@$0CH@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000303E748, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESFlora@@$0CH@$0BF@$02@@` +`class TESFurniture`: VTable [0x000000000303EB38, 0x0000000000000000 offset, 125 functions] `.?AVTESFurniture@@` +`class TESFurniture`: VTable [0x000000000303EFF8, 0x0000000000000050 offset, 16 functions] `.?AVTESFurniture@@` +`class TESFurniture`: VTable [0x000000000303F0A0, 0x0000000000000068 offset, 20 functions] `.?AVTESFurniture@@` +`class TESFurniture`: VTable [0x000000000303F170, 0x00000000000000B0 offset, 14 functions] `.?AVTESFurniture@@` +`class TESFurniture`: VTable [0x000000000303F200, 0x00000000000000C0 offset, 4 functions] `.?AVTESFurniture@@` +`class TESFurniture`: VTable [0x000000000303F230, 0x00000000000000C8 offset, 16 functions] `.?AVTESFurniture@@` +`class ConcreteFormFactory`: VTable [0x000000000303F308, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESFurniture@@$0CI@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000303F358, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESFurniture@@$0CI@$0BG@$02@@` +`class TESGrass`: VTable [0x000000000303FD08, 0x0000000000000000 offset, 151 functions] `.?AVTESGrass@@` +`class TESGrass`: VTable [0x00000000030402C0, 0x0000000000000050 offset, 20 functions] `.?AVTESGrass@@` +`class ConcreteFormFactory`: VTable [0x00000000030403B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESGrass@@$0CF@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003040400, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESGrass@@$0CF@$08$02@@` +`class TESKey`: VTable [0x0000000003040590, 0x0000000000000000 offset, 128 functions] `.?AVTESKey@@` +`class TESKey`: VTable [0x0000000003040A68, 0x0000000000000050 offset, 16 functions] `.?AVTESKey@@` +`class TESKey`: VTable [0x0000000003040B10, 0x0000000000000068 offset, 20 functions] `.?AVTESKey@@` +`class TESKey`: VTable [0x0000000003040BE0, 0x00000000000000B0 offset, 20 functions] `.?AVTESKey@@` +`class TESKey`: VTable [0x0000000003040CB0, 0x00000000000000D8 offset, 14 functions] `.?AVTESKey@@` +`class TESKey`: VTable [0x0000000003040D40, 0x00000000000000E8 offset, 14 functions] `.?AVTESKey@@` +`class TESKey`: VTable [0x0000000003040DD0, 0x00000000000000F8 offset, 14 functions] `.?AVTESKey@@` +`class TESKey`: VTable [0x0000000003040E60, 0x0000000000000108 offset, 14 functions] `.?AVTESKey@@` +`class TESKey`: VTable [0x0000000003040EF0, 0x0000000000000138 offset, 14 functions] `.?AVTESKey@@` +`class TESKey`: VTable [0x0000000003040F80, 0x0000000000000150 offset, 16 functions] `.?AVTESKey@@` +`class ConcreteFormFactory`: VTable [0x0000000003041028, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESKey@@$0CN@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003041078, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESKey@@$0CN@$0BD@$00@@` +`class TESLevCharacter`: VTable [0x00000000030411F8, 0x0000000000000000 offset, 125 functions] `.?AVTESLevCharacter@@` +`class TESLevCharacter`: VTable [0x00000000030416B8, 0x0000000000000050 offset, 23 functions] `.?AVTESLevCharacter@@` +`class TESLevCharacter`: VTable [0x00000000030417A0, 0x0000000000000070 offset, 20 functions] `.?AVTESLevCharacter@@` +`class ConcreteFormFactory`: VTable [0x0000000003041870, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLevCharacter@@$0CM@@@` +`class ConcreteObjectFormFactory`: VTable [0x00000000030418C0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLevCharacter@@$0CM@$0O@$0A@@@` +`class TESLevItem`: VTable [0x0000000003041C18, 0x0000000000000000 offset, 125 functions] `.?AVTESLevItem@@` +`class TESLevItem`: VTable [0x00000000030420D8, 0x0000000000000050 offset, 23 functions] `.?AVTESLevItem@@` +`class ConcreteFormFactory`: VTable [0x00000000030421C0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLevItem@@$0DF@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003042210, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLevItem@@$0DF@$0BC@$00@@` +`class TESLevSpell`: VTable [0x0000000003042458, 0x0000000000000000 offset, 125 functions] `.?AVTESLevSpell@@` +`class TESLevSpell`: VTable [0x0000000003042918, 0x0000000000000050 offset, 23 functions] `.?AVTESLevSpell@@` +`class ConcreteFormFactory`: VTable [0x0000000003042A00, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLevSpell@@$0FC@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003042A50, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLevSpell@@$0FC@$0BL@$01@@` +`class TESObjectLIGH`: VTable [0x0000000003042CE8, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectLIGH@@` +`class TESObjectLIGH`: VTable [0x00000000030431A8, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectLIGH@@` +`class TESObjectLIGH`: VTable [0x0000000003043250, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectLIGH@@` +`class TESObjectLIGH`: VTable [0x0000000003043320, 0x00000000000000B0 offset, 20 functions] `.?AVTESObjectLIGH@@` +`class TESObjectLIGH`: VTable [0x00000000030433F0, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectLIGH@@` +`class TESObjectLIGH`: VTable [0x0000000003043480, 0x0000000000000108 offset, 14 functions] `.?AVTESObjectLIGH@@` +`class TESObjectLIGH`: VTable [0x0000000003043510, 0x0000000000000118 offset, 14 functions] `.?AVTESObjectLIGH@@` +`class TESObjectLIGH`: VTable [0x00000000030435A0, 0x0000000000000128 offset, 14 functions] `.?AVTESObjectLIGH@@` +`class TESObjectLIGH`: VTable [0x0000000003043630, 0x0000000000000138 offset, 16 functions] `.?AVTESObjectLIGH@@` +`class ConcreteFormFactory`: VTable [0x0000000003043A08, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectLIGH@@$0BP@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003043A58, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectLIGH@@$0BP@$05$02@@` +`class TESObject`: VTable [0x0000000003044340, 0x0000000000000000 offset, 114 functions] `.?AVTESObject@@` +`class TESBoundObject`: VTable [0x0000000003044790, 0x0000000000000000 offset, 125 functions] `.?AVTESBoundObject@@` +`class TESBoundAnimObject`: VTable [0x0000000003044C50, 0x0000000000000000 offset, 125 functions] `.?AVTESBoundAnimObject@@` +`class BGSOpenCloseForm`: VTable [0x0000000003045548, 0x0000000000000000 offset, 4 functions] `.?AVBGSOpenCloseForm@@` +`class TESObjectACTI`: VTable [0x0000000003045578, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectACTI@@` +`class TESObjectACTI`: VTable [0x0000000003045A38, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectACTI@@` +`class TESObjectACTI`: VTable [0x0000000003045AE0, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectACTI@@` +`class TESObjectACTI`: VTable [0x0000000003045BB0, 0x00000000000000B0 offset, 14 functions] `.?AVTESObjectACTI@@` +`class TESObjectACTI`: VTable [0x0000000003045C40, 0x00000000000000C0 offset, 4 functions] `.?AVTESObjectACTI@@` +`class TESObjectACTI`: VTable [0x0000000003045C70, 0x00000000000000C8 offset, 16 functions] `.?AVTESObjectACTI@@` +`class ConcreteFormFactory`: VTable [0x0000000003045D18, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectACTI@@$0BI@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003045D68, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectACTI@@$0BI@$0A@$02@@` +`class TESObjectANIO`: VTable [0x00000000030460D8, 0x0000000000000000 offset, 101 functions] `.?AVTESObjectANIO@@` +`class TESObjectANIO`: VTable [0x00000000030464B0, 0x0000000000000028 offset, 20 functions] `.?AVTESObjectANIO@@` +`class ConcreteFormFactory`: VTable [0x0000000003046580, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectANIO@@$0FD@@@` +`class ConcreteObjectFormFactory`: VTable [0x00000000030465D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectANIO@@$0FD@$0BM@$03@@` +`class TESObjectARMA`: VTable [0x0000000003046830, 0x0000000000000000 offset, 114 functions] `.?AVTESObjectARMA@@` +`class TESObjectARMA`: VTable [0x0000000003046C80, 0x0000000000000030 offset, 14 functions] `.?AVTESObjectARMA@@` +`class TESObjectARMA`: VTable [0x0000000003046D10, 0x0000000000000040 offset, 14 functions] `.?AVTESObjectARMA@@` +`class ConcreteFormFactory`: VTable [0x0000000003046DE0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectARMA@@$0GG@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003046E30, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectARMA@@$0GG@$0DJ@$00@@` +`class TESObjectARMO`: VTable [0x0000000003047380, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x0000000003047840, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x00000000030478E8, 0x0000000000000068 offset, 14 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x0000000003047978, 0x0000000000000078 offset, 15 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x0000000003047A18, 0x0000000000000090 offset, 14 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x0000000003047AA8, 0x00000000000000A0 offset, 14 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x0000000003047B38, 0x00000000000000B0 offset, 14 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x0000000003047BC8, 0x00000000000000C0 offset, 14 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x0000000003047C58, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x0000000003047CE8, 0x0000000000000250 offset, 16 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x0000000003047D90, 0x0000000000000260 offset, 14 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x0000000003047E20, 0x0000000000000270 offset, 14 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x0000000003047EB0, 0x0000000000000288 offset, 16 functions] `.?AVTESObjectARMO@@` +`class TESObjectARMO`: VTable [0x0000000003047F58, 0x00000000000002A0 offset, 14 functions] `.?AVTESObjectARMO@@` +`class ConcreteFormFactory`: VTable [0x00000000030480C8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectARMO@@$0BK@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003048118, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectARMO@@$0BK@$00$00@@` +`class TESObjectBOOK`: VTable [0x00000000030485B0, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectBOOK@@` +`class TESObjectBOOK`: VTable [0x0000000003048A70, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectBOOK@@` +`class TESObjectBOOK`: VTable [0x0000000003048B18, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectBOOK@@` +`class TESObjectBOOK`: VTable [0x0000000003048BE8, 0x00000000000000B0 offset, 20 functions] `.?AVTESObjectBOOK@@` +`class TESObjectBOOK`: VTable [0x0000000003048CB8, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectBOOK@@` +`class TESObjectBOOK`: VTable [0x0000000003048D48, 0x00000000000000E8 offset, 14 functions] `.?AVTESObjectBOOK@@` +`class TESObjectBOOK`: VTable [0x0000000003048DD8, 0x00000000000000F8 offset, 14 functions] `.?AVTESObjectBOOK@@` +`class TESObjectBOOK`: VTable [0x0000000003048E68, 0x0000000000000120 offset, 14 functions] `.?AVTESObjectBOOK@@` +`class TESObjectBOOK`: VTable [0x0000000003048EF8, 0x0000000000000130 offset, 14 functions] `.?AVTESObjectBOOK@@` +`class TESObjectBOOK`: VTable [0x0000000003048F88, 0x0000000000000160 offset, 14 functions] `.?AVTESObjectBOOK@@` +`class TESObjectBOOK`: VTable [0x0000000003049018, 0x0000000000000178 offset, 16 functions] `.?AVTESObjectBOOK@@` +`class ConcreteFormFactory`: VTable [0x00000000030490C0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectBOOK@@$0BL@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003049110, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectBOOK@@$0BL@$01$00@@` +`class BSStreamParserData`: VTable [0x0000000003049330, 0x0000000000000000 offset, 4 functions] `.?AVBSStreamParserData@@` +`class BSResourceStreamParser`: VTable [0x0000000003049360, 0x0000000000000000 offset, 6 functions] `.?AVBSResourceStreamParser@@` +`class BSResourceStreamParser`: VTable [0x00000000030493A8, 0x0000000000000038 offset, 4 functions] `.?AVBSResourceStreamParser@@` +`class TESObjectCONT`: VTable [0x0000000003049738, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectCONT@@` +`class TESObjectCONT`: VTable [0x0000000003049BF8, 0x0000000000000050 offset, 15 functions] `.?AVTESObjectCONT@@` +`class TESObjectCONT`: VTable [0x0000000003049C98, 0x0000000000000068 offset, 16 functions] `.?AVTESObjectCONT@@` +`class TESObjectCONT`: VTable [0x0000000003049D40, 0x0000000000000080 offset, 20 functions] `.?AVTESObjectCONT@@` +`class TESObjectCONT`: VTable [0x0000000003049E10, 0x00000000000000C8 offset, 14 functions] `.?AVTESObjectCONT@@` +`class TESObjectCONT`: VTable [0x0000000003049EA0, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectCONT@@` +`class TESObjectCONT`: VTable [0x0000000003049F30, 0x00000000000000E8 offset, 4 functions] `.?AVTESObjectCONT@@` +`class ConcreteFormFactory`: VTable [0x0000000003049F60, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectCONT@@$0BM@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003049FB0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectCONT@@$0BM@$02$02@@` +`class TESObjectDOOR`: VTable [0x000000000304A590, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectDOOR@@` +`class TESObjectDOOR`: VTable [0x000000000304AA50, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectDOOR@@` +`class TESObjectDOOR`: VTable [0x000000000304AAF8, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectDOOR@@` +`class TESObjectDOOR`: VTable [0x000000000304ABC8, 0x00000000000000B0 offset, 14 functions] `.?AVTESObjectDOOR@@` +`class TESObjectDOOR`: VTable [0x000000000304AC58, 0x00000000000000C0 offset, 4 functions] `.?AVTESObjectDOOR@@` +`class ConcreteFormFactory`: VTable [0x000000000304ADC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectDOOR@@$0BN@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000304AE10, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectDOOR@@$0BN@$03$02@@` +`class TESObjectMISC`: VTable [0x000000000304B200, 0x0000000000000000 offset, 128 functions] `.?AVTESObjectMISC@@` +`class TESObjectMISC`: VTable [0x000000000304B6D8, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectMISC@@` +`class TESObjectMISC`: VTable [0x000000000304B780, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectMISC@@` +`class TESObjectMISC`: VTable [0x000000000304B850, 0x00000000000000B0 offset, 20 functions] `.?AVTESObjectMISC@@` +`class TESObjectMISC`: VTable [0x000000000304B920, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectMISC@@` +`class TESObjectMISC`: VTable [0x000000000304B9B0, 0x00000000000000E8 offset, 14 functions] `.?AVTESObjectMISC@@` +`class TESObjectMISC`: VTable [0x000000000304BA40, 0x00000000000000F8 offset, 14 functions] `.?AVTESObjectMISC@@` +`class TESObjectMISC`: VTable [0x000000000304BAD0, 0x0000000000000108 offset, 14 functions] `.?AVTESObjectMISC@@` +`class TESObjectMISC`: VTable [0x000000000304BB60, 0x0000000000000138 offset, 14 functions] `.?AVTESObjectMISC@@` +`class TESObjectMISC`: VTable [0x000000000304BBF0, 0x0000000000000150 offset, 16 functions] `.?AVTESObjectMISC@@` +`class ConcreteFormFactory`: VTable [0x000000000304BC98, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectMISC@@$0CA@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000304BCE8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectMISC@@$0CA@$06$00@@` +`class TESObjectSTAT`: VTable [0x000000000304BEF0, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectSTAT@@` +`class TESObjectSTAT`: VTable [0x000000000304C3B0, 0x0000000000000050 offset, 20 functions] `.?AVTESObjectSTAT@@` +`class ConcreteFormFactory`: VTable [0x000000000304C480, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectSTAT@@$0CC@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000304C4D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectSTAT@@$0CC@$07$02@@` +`class TESObjectTREE`: VTable [0x000000000304C800, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectTREE@@` +`class TESObjectTREE`: VTable [0x000000000304CCC0, 0x0000000000000050 offset, 20 functions] `.?AVTESObjectTREE@@` +`class TESObjectTREE`: VTable [0x000000000304CD90, 0x0000000000000080 offset, 16 functions] `.?AVTESObjectTREE@@` +`class TESObjectTREE`: VTable [0x000000000304CE38, 0x0000000000000098 offset, 14 functions] `.?AVTESObjectTREE@@` +`class ConcreteFormFactory`: VTable [0x000000000304CEC8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectTREE@@$0CG@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000304CF18, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectTREE@@$0CG@$09$02@@` +`class TESObjectWEAP`: VTable [0x000000000304D5D8, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304DA98, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304DB40, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304DC10, 0x00000000000000B0 offset, 20 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304DCE0, 0x00000000000000D8 offset, 15 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304DD80, 0x00000000000000F0 offset, 14 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304DE10, 0x0000000000000100 offset, 14 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304DEA0, 0x0000000000000110 offset, 15 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304DF40, 0x0000000000000120 offset, 14 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304DFD0, 0x0000000000000130 offset, 16 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304E078, 0x0000000000000140 offset, 14 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304E108, 0x0000000000000148 offset, 14 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304E198, 0x0000000000000178 offset, 14 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304E228, 0x0000000000000190 offset, 14 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304E2B8, 0x00000000000001A8 offset, 16 functions] `.?AVTESObjectWEAP@@` +`class TESObjectWEAP`: VTable [0x000000000304E360, 0x00000000000001C0 offset, 14 functions] `.?AVTESObjectWEAP@@` +`class ConcreteFormFactory`: VTable [0x000000000304E3F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectWEAP@@$0CJ@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000304E440, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectWEAP@@$0CJ@$0M@$00@@` +`class TESSoulGem`: VTable [0x000000000304EE68, 0x0000000000000000 offset, 128 functions] `.?AVTESSoulGem@@` +`class TESSoulGem`: VTable [0x000000000304F340, 0x0000000000000050 offset, 16 functions] `.?AVTESSoulGem@@` +`class TESSoulGem`: VTable [0x000000000304F3E8, 0x0000000000000068 offset, 20 functions] `.?AVTESSoulGem@@` +`class TESSoulGem`: VTable [0x000000000304F4B8, 0x00000000000000B0 offset, 20 functions] `.?AVTESSoulGem@@` +`class TESSoulGem`: VTable [0x000000000304F588, 0x00000000000000D8 offset, 14 functions] `.?AVTESSoulGem@@` +`class TESSoulGem`: VTable [0x000000000304F618, 0x00000000000000E8 offset, 14 functions] `.?AVTESSoulGem@@` +`class TESSoulGem`: VTable [0x000000000304F6A8, 0x00000000000000F8 offset, 14 functions] `.?AVTESSoulGem@@` +`class TESSoulGem`: VTable [0x000000000304F738, 0x0000000000000108 offset, 14 functions] `.?AVTESSoulGem@@` +`class TESSoulGem`: VTable [0x000000000304F7C8, 0x0000000000000138 offset, 14 functions] `.?AVTESSoulGem@@` +`class TESSoulGem`: VTable [0x000000000304F858, 0x0000000000000150 offset, 16 functions] `.?AVTESSoulGem@@` +`class ConcreteFormFactory`: VTable [0x000000000304F900, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESSoulGem@@$0DE@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000304F950, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESSoulGem@@$0DE@$0GB@$00@@` +`class BGSEncounterZone`: VTable [0x000000000304FD40, 0x0000000000000000 offset, 101 functions] `.?AVBGSEncounterZone@@` +`class ConcreteFormFactory`: VTable [0x0000000003050118, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSEncounterZone@@$0GH@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003050168, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSEncounterZone@@$0GH@$0DN@$06@@` +`class BGSLightingTemplate`: VTable [0x0000000003050C58, 0x0000000000000000 offset, 103 functions] `.?AVBGSLightingTemplate@@` +`class ConcreteFormFactory`: VTable [0x0000000003051040, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSLightingTemplate@@$0GM@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003051090, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSLightingTemplate@@$0GM@$0FH@$06@@` +`class BGSLocation`: VTable [0x0000000003051F00, 0x0000000000000000 offset, 101 functions] `.?AVBGSLocation@@` +`class BGSLocation`: VTable [0x00000000030522D8, 0x0000000000000028 offset, 16 functions] `.?AVBGSLocation@@` +`class BGSLocation`: VTable [0x0000000003052380, 0x0000000000000040 offset, 16 functions] `.?AVBGSLocation@@` +`class ConcreteFormFactory`: VTable [0x0000000003052428, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSLocation@@$0GI@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003052478, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSLocation@@$0GI@$0EH@$06@@` +`class QueuedPromoteLocationReferencesTask`: VTable [0x00000000030528B0, 0x0000000000000000 offset, 10 functions] `.?AVQueuedPromoteLocationReferencesTask@@` +`class BSMapBase`: VTable [0x0000000003053B80, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@IPEBUUnloadedRefData@@@@` +`class BSScrapMap`: VTable [0x0000000003053BD0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@IPEBUUnloadedRefData@@@@` +`class BSMapBase`: VTable [0x0000000003053C20, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESNPC@@PEBUUniqueNPCData@@@@` +`class BSScrapMap`: VTable [0x0000000003053C70, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@PEAVTESNPC@@PEBUUniqueNPCData@@@@` +`class BSMapBase`: VTable [0x0000000003053CC0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@IPEBUSpecialRefData@@@@` +`class BSScrapMap`: VTable [0x0000000003053D10, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@IPEBUSpecialRefData@@@@` +`class BGSLocationRefType`: VTable [0x0000000003053F10, 0x0000000000000000 offset, 101 functions] `.?AVBGSLocationRefType@@` +`class ConcreteFormFactory`: VTable [0x00000000030542E8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSLocationRefType@@$04@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003054338, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSLocationRefType@@$04$0EI@$06@@` +`class BGSReferenceEffect`: VTable [0x00000000030545D8, 0x0000000000000000 offset, 101 functions] `.?AVBGSReferenceEffect@@` +`class ConcreteFormFactory`: VTable [0x00000000030549B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSReferenceEffect@@$0DJ@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003054A00, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSReferenceEffect@@$0DJ@$0FJ@$06@@` +`class BGSShaderParticleGeometryData`: VTable [0x0000000003054D90, 0x0000000000000000 offset, 101 functions] `.?AVBGSShaderParticleGeometryData@@` +`class BSParticleShaderEmitter`: VTable [0x0000000003055260, 0x0000000000000000 offset, 4 functions] `.?AVBSParticleShaderEmitter@@` +`class BSParticleShaderCubeEmitter`: VTable [0x0000000003055290, 0x0000000000000000 offset, 4 functions] `.?AVBSParticleShaderCubeEmitter@@` +`class BSParticleShaderRainEmitter`: VTable [0x00000000030552C0, 0x0000000000000000 offset, 4 functions] `.?AVBSParticleShaderRainEmitter@@` +`class BSParticleShaderSnowEmitter`: VTable [0x00000000030552F0, 0x0000000000000000 offset, 4 functions] `.?AVBSParticleShaderSnowEmitter@@` +`class ConcreteFormFactory`: VTable [0x0000000003055320, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSShaderParticleGeometryData@@$0DI@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003055370, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSShaderParticleGeometryData@@$0DI@$0FI@$06@@` +`class CellLoaderTask`: VTable [0x0000000003055BB0, 0x0000000000000000 offset, 10 functions] `.?AVCellLoaderTask@@` +`class ImageSpaceModifierInstance`: VTable [0x00000000030561D8, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstance@@` +`class ImageSpaceModifierInstanceForm`: VTable [0x0000000003056380, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstanceForm@@` +`class ImageSpaceModifierInstanceTemp`: VTable [0x0000000003056528, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstanceTemp@@` +`class ImageSpaceModifierInstanceDOF`: VTable [0x00000000030566D0, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstanceDOF@@` +`class ImageSpaceModifierInstanceRB`: VTable [0x0000000003056878, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstanceRB@@` +`class BSResource::EntryDB`: VTable [0x0000000003057388, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@MaxHeightDB@@@BSResource@@` +`class TESClimate`: VTable [0x00000000030575E8, 0x0000000000000000 offset, 101 functions] `.?AVTESClimate@@` +`class ConcreteFormFactory`: VTable [0x00000000030579C0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESClimate@@$0DH@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003057A10, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESClimate@@$0DH@$0DI@$06@@` +`class TESImageSpace`: VTable [0x0000000003058620, 0x0000000000000000 offset, 103 functions] `.?AVTESImageSpace@@` +`class ConcreteFormFactory`: VTable [0x0000000003058A08, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESImageSpace@@$0FJ@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003058A58, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESImageSpace@@$0FJ@$0DL@$05@@` +`class NiFloatData`: VTable [0x0000000003058DB8, 0x0000000000000000 offset, 39 functions] `.?AVNiFloatData@@` +`class NiColorData`: VTable [0x0000000003058F38, 0x0000000000000000 offset, 39 functions] `.?AVNiColorData@@` +`class TESImageSpaceModifier`: VTable [0x00000000030590B8, 0x0000000000000000 offset, 103 functions] `.?AVTESImageSpaceModifier@@` +`class ConcreteFormFactory`: VTable [0x00000000030594A0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESImageSpaceModifier@@$0FK@@@` +`class ConcreteObjectFormFactory`: VTable [0x00000000030594F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESImageSpaceModifier@@$0FK@$0DM@$05@@` +`class TESChildCell`: VTable [0x0000000003059CB0, 0x0000000000000000 offset, 2 functions] `.?AVTESChildCell@@` +`class hkpMoppCode`: VTable [0x0000000003059CD0, 0x0000000000000000 offset, 3 functions] `.?AVhkpMoppCode@@` +`class TESObjectLAND`: VTable [0x0000000003059CF8, 0x0000000000000000 offset, 101 functions] `.?AVTESObjectLAND@@` +`class TESObjectLAND`: VTable [0x000000000305A0D0, 0x0000000000000028 offset, 2 functions] `.?AVTESObjectLAND@@` +`class ConcreteFormFactory`: VTable [0x000000000305A110, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectLAND@@$0EI@@@` +`class TESLandTexture`: VTable [0x000000000305AEF8, 0x0000000000000000 offset, 101 functions] `.?AVTESLandTexture@@` +`class ConcreteFormFactory`: VTable [0x000000000305B2D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLandTexture@@$0BE@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000305B320, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLandTexture@@$0BE@$0BI@$03@@` +`class hkpCdPointCollector`: VTable [0x000000000305E570, 0x0000000000000000 offset, 3 functions] `.?AVhkpCdPointCollector@@` +`class bhkPhantom`: VTable [0x000000000305E598, 0x0000000000000000 offset, 55 functions] `.?AVbhkPhantom@@` +`class CheckWithinMultiBoundTask`: VTable [0x000000000305E7B8, 0x0000000000000000 offset, 10 functions] `.?AVCheckWithinMultiBoundTask@@` +`class TESObjectCELL`: VTable [0x000000000305E828, 0x0000000000000000 offset, 101 functions] `.?AVTESObjectCELL@@` +`class TESObjectCELL`: VTable [0x000000000305EC00, 0x0000000000000028 offset, 16 functions] `.?AVTESObjectCELL@@` +`class NiTMapBase > > >,class TESForm * __ptr64,class BSPointerHandle > >`: VTable [0x000000000305ECA8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESForm@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@@@PEAVTESForm@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` +`class NiTMap > >`: VTable [0x000000000305ECF8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESForm@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` +`class NiTMapBase >,class NiNode * __ptr64> >,class BSPointerHandle >,class NiNode * __ptr64>`: VTable [0x000000000305ED48, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@PEAVNiNode@@@@@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@PEAVNiNode@@@@` +`class NiTMap >,class NiNode * __ptr64>`: VTable [0x000000000305ED98, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@PEAVNiNode@@@@` +`class NiTMapBase >,class NiPointer > >,class BSPointerHandle >,class NiPointer >`: VTable [0x000000000305EDE8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V?$NiPointer@VBSMultiBoundNode@@@@@@@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V?$NiPointer@VBSMultiBoundNode@@@@@@` +`class NiTMap >,class NiPointer >`: VTable [0x000000000305EE38, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V?$NiPointer@VBSMultiBoundNode@@@@@@` +`class NiTMapBase > > >,class BSMultiBoundNode * __ptr64,class BSPointerHandle > >`: VTable [0x000000000305EE88, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVBSMultiBoundNode@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@@@PEAVBSMultiBoundNode@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` +`class NiTMap > >`: VTable [0x000000000305EED8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVBSMultiBoundNode@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` +`class bhkShapePhantom`: VTable [0x000000000305EF80, 0x0000000000000000 offset, 55 functions] `.?AVbhkShapePhantom@@` +`class bhkSimpleShapePhantom`: VTable [0x000000000305F1A0, 0x0000000000000000 offset, 55 functions] `.?AVbhkSimpleShapePhantom@@` +`class hkpAllCdPointTempCollector`: VTable [0x000000000305F3C0, 0x0000000000000000 offset, 3 functions] `.?AVhkpAllCdPointTempCollector@@` +`class ConcreteFormFactory`: VTable [0x000000000305F630, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectCELL@@$0DM@@@` +`class BSMapBase >,bool>`: VTable [0x00000000030600F0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@` +`class BSScrapMap >,bool>`: VTable [0x0000000003060140, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@` +`class BSTEventSink`: VTable [0x0000000003060590, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UTESCellReadyToApplyDecalsEvent@@@@` +`class `anonymous namespace'::DecalApplier`: VTable [0x00000000030605B0, 0x0000000000000000 offset, 2 functions] `.?AVDecalApplier@?A0x8722dc80@@` +`class NiTArray >`: VTable [0x0000000003062700, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVTESObjectREFR@@V?$NiTMallocInterface@PEAVTESObjectREFR@@@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000003062718, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVTESObjectREFR@@@@` +`struct `anonymous namespace'::UpdateAllDecalsRefFunctor`: VTable [0x00000000030631B0, 0x0000000000000000 offset, 2 functions] `.?AUUpdateAllDecalsRefFunctor@?A0x942b6da4@@` +`struct `anonymous namespace'::ApplyAllDecalsRefFunctor`: VTable [0x00000000030631D0, 0x0000000000000000 offset, 2 functions] `.?AUApplyAllDecalsRefFunctor@?A0x942b6da4@@` +`class BSHandleRefObject`: VTable [0x00000000030648E0, 0x0000000000000000 offset, 2 functions] `.?AVBSHandleRefObject@@` +`class hkpShape`: VTable [0x0000000003064900, 0x0000000000000000 offset, 11 functions] `.?AVhkpShape@@` +`class hkpPhantomCallbackShape`: VTable [0x0000000003064978, 0x0000000000000000 offset, 13 functions] `.?AVhkpPhantomCallbackShape@@` +`class BGSWaterCollisionManager::BGSWaterUpdateI`: VTable [0x0000000003064A00, 0x0000000000000000 offset, 7 functions] `.?AVBGSWaterUpdateI@BGSWaterCollisionManager@@` +`class BGSWaterCollisionManager::bhkPlaceableWater`: VTable [0x0000000003064A50, 0x0000000000000000 offset, 14 functions] `.?AVbhkPlaceableWater@BGSWaterCollisionManager@@` +`class BGSWaterCollisionManager::bhkPlaceableWater`: VTable [0x0000000003064AE0, 0x0000000000000020 offset, 7 functions] `.?AVbhkPlaceableWater@BGSWaterCollisionManager@@` +`class BSTEventSink`: VTable [0x0000000003064B30, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UBSAnimationGraphEvent@@@@` +`class TESObjectREFR`: VTable [0x0000000003064B50, 0x0000000000000000 offset, 177 functions] `.?AVTESObjectREFR@@` +`class TESObjectREFR`: VTable [0x0000000003065200, 0x0000000000000028 offset, 2 functions] `.?AVTESObjectREFR@@` +`class TESObjectREFR`: VTable [0x0000000003065220, 0x0000000000000030 offset, 2 functions] `.?AVTESObjectREFR@@` +`class TESObjectREFR`: VTable [0x0000000003065240, 0x0000000000000040 offset, 2 functions] `.?AVTESObjectREFR@@` +`class TESObjectREFR`: VTable [0x0000000003065260, 0x0000000000000048 offset, 19 functions] `.?AVTESObjectREFR@@` +`class bhkPCollisionObject`: VTable [0x0000000003065320, 0x0000000000000000 offset, 52 functions] `.?AVbhkPCollisionObject@@` +`class `anonymous namespace'::HavokLink`: VTable [0x00000000030655E8, 0x0000000000000000 offset, 3 functions] `.?AVHavokLink@?A0xa135b617@@` +`class `anonymous namespace'::TESObjectREFRFactory`: VTable [0x0000000003065610, 0x0000000000000000 offset, 7 functions] `.?AVTESObjectREFRFactory@?A0xa135b617@@` +`class NiTMapBase >,class BSPointerHandle > > >,class BSPointerHandle >,class BSPointerHandle > >`: VTable [0x0000000003066C30, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V1@@@@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V2@@@` +`class NiTMap >,class BSPointerHandle > >`: VTable [0x0000000003066C80, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V1@@@` +`class TESObjectREFRDef::ILinkedReferenceFunctor`: VTable [0x0000000003067F48, 0x0000000000000000 offset, 2 functions] `.?AVILinkedReferenceFunctor@TESObjectREFRDef@@` +`class ExtraMasterFileCell`: VTable [0x0000000003067F68, 0x0000000000000000 offset, 3 functions] `.?AVExtraMasterFileCell@@` +`class `anonymous namespace'::CollectMatchingLinkedRefFunctor`: VTable [0x0000000003068020, 0x0000000000000000 offset, 2 functions] `.?AVCollectMatchingLinkedRefFunctor@?A0xa25c2105@@` +`class `anonymous namespace'::CopyLinkedRefsFunctor`: VTable [0x0000000003068040, 0x0000000000000000 offset, 2 functions] `.?AVCopyLinkedRefsFunctor@?A0xa25c2105@@` +`class `anonymous namespace'::AddLinkedRefChildToListFunctor`: VTable [0x0000000003068BE0, 0x0000000000000000 offset, 2 functions] `.?AVAddLinkedRefChildToListFunctor@?A0xa25c2105@@` +`class DrawRefLinksFunctor`: VTable [0x0000000003069AC8, 0x0000000000000000 offset, 2 functions] `.?AVDrawRefLinksFunctor@@` +`class RedrawRefLinksFunctor`: VTable [0x0000000003069AF8, 0x0000000000000000 offset, 2 functions] `.?AVRedrawRefLinksFunctor@@` +`class BSMapBase`: VTable [0x0000000003069C00, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESObjectREFR@@_N@@` +`class BSMap`: VTable [0x0000000003069C50, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEAVTESObjectREFR@@_N@@` +`class BSScrapMap`: VTable [0x0000000003069D30, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@PEAVTESObjectREFR@@_N@@` +`class BSMapBase`: VTable [0x0000000003069DE8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@I_N@@` +`class BSScrapMap`: VTable [0x0000000003069E38, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@I_N@@` +`class TESWaterForm`: VTable [0x000000000306A108, 0x0000000000000000 offset, 101 functions] `.?AVTESWaterForm@@` +`class TESWaterForm`: VTable [0x000000000306A4E0, 0x0000000000000028 offset, 16 functions] `.?AVTESWaterForm@@` +`class TESWaterForm`: VTable [0x000000000306A588, 0x0000000000000040 offset, 15 functions] `.?AVTESWaterForm@@` +`class ConcreteFormFactory`: VTable [0x000000000306A670, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESWaterForm@@$0FE@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000306A6C0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESWaterForm@@$0FE@$0BN@$06@@` +`class TESTexture1024`: VTable [0x000000000306AF08, 0x0000000000000000 offset, 20 functions] `.?AVTESTexture1024@@` +`struct TESWeather::SkyStaticFunctor`: VTable [0x000000000306AFD8, 0x0000000000000000 offset, 1 functions] `.?AUSkyStaticFunctor@TESWeather@@` +`class TESWeather`: VTable [0x000000000306AFF0, 0x0000000000000000 offset, 101 functions] `.?AVTESWeather@@` +`class ConcreteFormFactory`: VTable [0x000000000306B438, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESWeather@@$0DG@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000306B488, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESWeather@@$0DG@$0DH@$06@@` +`struct SkyStaticFunctors::SkyStaticSaver`: VTable [0x000000000306B4E8, 0x0000000000000000 offset, 1 functions] `.?AUSkyStaticSaver@SkyStaticFunctors@@` +`class DialogExtraWeather`: VTable [0x000000000306BD60, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraWeather@@` +`class TESWeatherList`: VTable [0x000000000306C020, 0x0000000000000000 offset, 6 functions] `.?AVTESWeatherList@@` +`class TESWorldSpace`: VTable [0x000000000306CAF8, 0x0000000000000000 offset, 103 functions] `.?AVTESWorldSpace@@` +`class TESWorldSpace`: VTable [0x000000000306CEE0, 0x0000000000000028 offset, 16 functions] `.?AVTESWorldSpace@@` +`class TESWorldSpace`: VTable [0x000000000306CF88, 0x0000000000000040 offset, 20 functions] `.?AVTESWorldSpace@@` +`class ConcreteFormFactory`: VTable [0x000000000306D088, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESWorldSpace@@$0EH@@@` +`class AlchemyItem`: VTable [0x000000000306E610, 0x0000000000000000 offset, 160 functions] `.?AVAlchemyItem@@` +`class AlchemyItem`: VTable [0x000000000306EC20, 0x0000000000000050 offset, 16 functions] `.?AVAlchemyItem@@` +`class AlchemyItem`: VTable [0x000000000306ECC8, 0x0000000000000068 offset, 16 functions] `.?AVAlchemyItem@@` +`class AlchemyItem`: VTable [0x000000000306ED70, 0x0000000000000268 offset, 20 functions] `.?AVAlchemyItem@@` +`class AlchemyItem`: VTable [0x000000000306EE40, 0x00000000000002B0 offset, 20 functions] `.?AVAlchemyItem@@` +`class AlchemyItem`: VTable [0x000000000306EF10, 0x00000000000002D8 offset, 14 functions] `.?AVAlchemyItem@@` +`class AlchemyItem`: VTable [0x000000000306EFA0, 0x0000000000000308 offset, 14 functions] `.?AVAlchemyItem@@` +`class AlchemyItem`: VTable [0x000000000306F030, 0x0000000000000318 offset, 16 functions] `.?AVAlchemyItem@@` +`class AlchemyItem`: VTable [0x000000000306F0D8, 0x0000000000000328 offset, 14 functions] `.?AVAlchemyItem@@` +`class AlchemyItem`: VTable [0x000000000306F168, 0x0000000000000338 offset, 14 functions] `.?AVAlchemyItem@@` +`class ConcreteFormFactory`: VTable [0x000000000306F1F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VAlchemyItem@@$0CO@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000306F248, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VAlchemyItem@@$0CO@$0BB@$01@@` +`class BGSDualCastData`: VTable [0x000000000306F5B8, 0x0000000000000000 offset, 125 functions] `.?AVBGSDualCastData@@` +`class ConcreteFormFactory`: VTable [0x000000000306FA78, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSDualCastData@@$0IB@@@` +`class ConcreteObjectFormFactory`: VTable [0x000000000306FAC8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSDualCastData@@$0IB@$0FP@$01@@` +`class EffectSetting`: VTable [0x0000000003070840, 0x0000000000000000 offset, 101 functions] `.?AVEffectSetting@@` +`class EffectSetting`: VTable [0x0000000003070C18, 0x0000000000000028 offset, 16 functions] `.?AVEffectSetting@@` +`class EffectSetting`: VTable [0x0000000003070CC0, 0x0000000000000040 offset, 15 functions] `.?AVEffectSetting@@` +`class EffectSetting`: VTable [0x0000000003070D60, 0x0000000000000050 offset, 16 functions] `.?AVEffectSetting@@` +`class ConcreteFormFactory`: VTable [0x0000000003070E08, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VEffectSetting@@$0BC@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003070E58, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VEffectSetting@@$0BC@$0ED@$01@@` +`class EffectSettingCollection`: VTable [0x0000000003071930, 0x0000000000000000 offset, 1 functions] `.?AVEffectSettingCollection@@` +`class EnchantmentItem`: VTable [0x0000000003071A90, 0x0000000000000000 offset, 160 functions] `.?AVEnchantmentItem@@` +`class EnchantmentItem`: VTable [0x00000000030720A0, 0x0000000000000050 offset, 16 functions] `.?AVEnchantmentItem@@` +`class EnchantmentItem`: VTable [0x0000000003072148, 0x0000000000000068 offset, 16 functions] `.?AVEnchantmentItem@@` +`class ConcreteFormFactory`: VTable [0x00000000030721F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VEnchantmentItem@@$0BF@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003072240, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VEnchantmentItem@@$0BF@$0BA@$01@@` +`class `anonymous namespace'::IsValidEnchantmentForWeaponFunctor`: VTable [0x0000000003072420, 0x0000000000000000 offset, 1 functions] `.?AVIsValidEnchantmentForWeaponFunctor@?A0xdee2f8d5@@` +`class `anonymous namespace'::IsValidEnchantmentForArmorFunctor`: VTable [0x0000000003072438, 0x0000000000000000 offset, 1 functions] `.?AVIsValidEnchantmentForArmorFunctor@?A0xdee2f8d5@@` +`class IngredientItem`: VTable [0x0000000003072590, 0x0000000000000000 offset, 160 functions] `.?AVIngredientItem@@` +`class IngredientItem`: VTable [0x0000000003072BA0, 0x0000000000000050 offset, 16 functions] `.?AVIngredientItem@@` +`class IngredientItem`: VTable [0x0000000003072C48, 0x0000000000000068 offset, 16 functions] `.?AVIngredientItem@@` +`class IngredientItem`: VTable [0x0000000003072CF0, 0x0000000000000268 offset, 20 functions] `.?AVIngredientItem@@` +`class IngredientItem`: VTable [0x0000000003072DC0, 0x00000000000002B0 offset, 20 functions] `.?AVIngredientItem@@` +`class IngredientItem`: VTable [0x0000000003072E90, 0x00000000000002D8 offset, 14 functions] `.?AVIngredientItem@@` +`class IngredientItem`: VTable [0x0000000003072F20, 0x00000000000002E8 offset, 16 functions] `.?AVIngredientItem@@` +`class IngredientItem`: VTable [0x0000000003072FC8, 0x00000000000002F8 offset, 14 functions] `.?AVIngredientItem@@` +`class IngredientItem`: VTable [0x0000000003073058, 0x0000000000000308 offset, 14 functions] `.?AVIngredientItem@@` +`class IngredientItem`: VTable [0x00000000030730E8, 0x0000000000000320 offset, 14 functions] `.?AVIngredientItem@@` +`class ConcreteFormFactory`: VTable [0x0000000003073210, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VIngredientItem@@$0BO@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003073260, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VIngredientItem@@$0BO@$04$00@@` +`class MagicItem`: VTable [0x00000000030735F0, 0x0000000000000000 offset, 160 functions] `.?AVMagicItem@@` +`class MagicItem`: VTable [0x0000000003073C00, 0x0000000000000050 offset, 16 functions] `.?AVMagicItem@@` +`class MagicItem`: VTable [0x0000000003073CA8, 0x0000000000000068 offset, 16 functions] `.?AVMagicItem@@` +`class MagicItemTraversalFunctor`: VTable [0x0000000003073D50, 0x0000000000000000 offset, 2 functions] `.?AVMagicItemTraversalFunctor@@` +`class MagicItemFindFunctor`: VTable [0x0000000003073D70, 0x0000000000000000 offset, 3 functions] `.?AVMagicItemFindFunctor@@` +`class MagicItemFindKeywordFunctor`: VTable [0x0000000003073D98, 0x0000000000000000 offset, 3 functions] `.?AVMagicItemFindKeywordFunctor@@` +`class FindNonExcludedDeliveryFunctor`: VTable [0x0000000003073DC0, 0x0000000000000000 offset, 3 functions] `.?AVFindNonExcludedDeliveryFunctor@@` +`class FindEqualsFunctor`: VTable [0x0000000003073FE8, 0x0000000000000000 offset, 3 functions] `.?AVFindEqualsFunctor@@` +`class GetCostliestEffectFunctor`: VTable [0x0000000003074010, 0x0000000000000000 offset, 2 functions] `.?AVGetCostliestEffectFunctor@@` +`class LongestDurationFunctor`: VTable [0x0000000003074030, 0x0000000000000000 offset, 2 functions] `.?AVLongestDurationFunctor@@` +`class LargestAreaFunctor`: VTable [0x0000000003074050, 0x0000000000000000 offset, 2 functions] `.?AVLargestAreaFunctor@@` +`class GetMagicItemDescriptionFunctor`: VTable [0x0000000003074B00, 0x0000000000000000 offset, 2 functions] `.?AVGetMagicItemDescriptionFunctor@@` +`class ScrollItem`: VTable [0x0000000003074E70, 0x0000000000000000 offset, 160 functions] `.?AVScrollItem@@` +`class ScrollItem`: VTable [0x0000000003075480, 0x0000000000000050 offset, 16 functions] `.?AVScrollItem@@` +`class ScrollItem`: VTable [0x0000000003075528, 0x0000000000000068 offset, 16 functions] `.?AVScrollItem@@` +`class ScrollItem`: VTable [0x00000000030755D0, 0x0000000000000268 offset, 16 functions] `.?AVScrollItem@@` +`class ScrollItem`: VTable [0x0000000003075678, 0x0000000000000278 offset, 15 functions] `.?AVScrollItem@@` +`class ScrollItem`: VTable [0x0000000003075718, 0x0000000000000288 offset, 14 functions] `.?AVScrollItem@@` +`class ScrollItem`: VTable [0x00000000030757A8, 0x00000000000002D8 offset, 20 functions] `.?AVScrollItem@@` +`class ScrollItem`: VTable [0x0000000003075878, 0x0000000000000320 offset, 14 functions] `.?AVScrollItem@@` +`class ScrollItem`: VTable [0x0000000003075908, 0x0000000000000330 offset, 14 functions] `.?AVScrollItem@@` +`class ScrollItem`: VTable [0x0000000003075998, 0x0000000000000348 offset, 14 functions] `.?AVScrollItem@@` +`class ScrollItem`: VTable [0x0000000003075A28, 0x0000000000000358 offset, 14 functions] `.?AVScrollItem@@` +`class ConcreteFormFactory`: VTable [0x0000000003075AB8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VScrollItem@@$0BH@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003075B08, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VScrollItem@@$0BH@$0GE@$01@@` +`class SpellItem`: VTable [0x0000000003075C78, 0x0000000000000000 offset, 160 functions] `.?AVSpellItem@@` +`class SpellItem`: VTable [0x0000000003076288, 0x0000000000000050 offset, 16 functions] `.?AVSpellItem@@` +`class SpellItem`: VTable [0x0000000003076330, 0x0000000000000068 offset, 16 functions] `.?AVSpellItem@@` +`class SpellItem`: VTable [0x00000000030763D8, 0x0000000000000268 offset, 16 functions] `.?AVSpellItem@@` +`class SpellItem`: VTable [0x0000000003076480, 0x0000000000000278 offset, 15 functions] `.?AVSpellItem@@` +`class SpellItem`: VTable [0x0000000003076520, 0x0000000000000288 offset, 14 functions] `.?AVSpellItem@@` +`class ConcreteFormFactory`: VTable [0x00000000030765B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VSpellItem@@$0BG@@@` +`class ConcreteObjectFormFactory`: VTable [0x0000000003076600, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VSpellItem@@$0BG@$0P@$01@@` +`class bhkEntityListener`: VTable [0x00000000030768D8, 0x0000000000000000 offset, 10 functions] `.?AVbhkEntityListener@@` +`class BGSAcousticSpaceListener`: VTable [0x0000000003076948, 0x0000000000000000 offset, 10 functions] `.?AVBGSAcousticSpaceListener@@` +`class bhkTTNode > >`: VTable [0x0000000003076BF0, 0x0000000000000000 offset, 1 functions] `.?AV?$bhkTTNode@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` +`class TargetEntry`: VTable [0x0000000003076C08, 0x0000000000000000 offset, 3 functions] `.?AVTargetEntry@@` +`class ZoneEntry`: VTable [0x0000000003076C30, 0x0000000000000000 offset, 3 functions] `.?AVZoneEntry@@` +`class BGSZoneTargetListener`: VTable [0x0000000003076C58, 0x0000000000000000 offset, 3 functions] `.?AVBGSZoneTargetListener@@` +`class TrapTargetEntry`: VTable [0x0000000003076C80, 0x0000000000000000 offset, 3 functions] `.?AVTrapTargetEntry@@` +`class BSTaskletData`: VTable [0x0000000003077008, 0x0000000000000000 offset, 4 functions] `.?AVBSTaskletData@@` +`class BSWin32TaskletData`: VTable [0x0000000003077038, 0x0000000000000000 offset, 4 functions] `.?AVBSWin32TaskletData@@` +`class bhkBvTreeShape`: VTable [0x0000000003077068, 0x0000000000000000 offset, 59 functions] `.?AVbhkBvTreeShape@@` +`class bhkTriSampledHeightFieldBvTreeShape`: VTable [0x00000000030772A8, 0x0000000000000000 offset, 59 functions] `.?AVbhkTriSampledHeightFieldBvTreeShape@@` +`class CellMopp::HeightFieldWeldingTasklet`: VTable [0x00000000030774E8, 0x0000000000000000 offset, 4 functions] `.?AVHeightFieldWeldingTasklet@CellMopp@@` +`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003077518, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VbhkRigidBody@@@@V?$NiTNewInterface@V?$NiPointer@VbhkRigidBody@@@@@@@@` +`class NiTObjectArray >`: VTable [0x0000000003077530, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VbhkRigidBody@@@@@@` +`class CellMopp`: VTable [0x0000000003077548, 0x0000000000000000 offset, 2 functions] `.?AVCellMopp@@` +`class BSTasklet`: VTable [0x0000000003077568, 0x0000000000000000 offset, 1 functions] `.?AVBSTasklet@@` +`class hkError`: VTable [0x0000000003077A80, 0x0000000000000000 offset, 9 functions] `.?AVhkError@@` +`class hkStreamReader`: VTable [0x0000000003077AE0, 0x0000000000000000 offset, 12 functions] `.?AVhkStreamReader@@` +`class hkStreamWriter`: VTable [0x0000000003077B60, 0x0000000000000000 offset, 9 functions] `.?AVhkStreamWriter@@` +`class hkFileSystem`: VTable [0x0000000003077BC0, 0x0000000000000000 offset, 6 functions] `.?AVhkFileSystem@@` +`class HavokStreambufReader`: VTable [0x0000000003077C08, 0x0000000000000000 offset, 12 functions] `.?AVHavokStreambufReader@@` +`class HavokStreambufWriter`: VTable [0x0000000003077C88, 0x0000000000000000 offset, 9 functions] `.?AVHavokStreambufWriter@@` +`class HavokFileStreambufReader`: VTable [0x0000000003077CE8, 0x0000000000000000 offset, 13 functions] `.?AVHavokFileStreambufReader@@` +`class HavokFileStreambufWriter`: VTable [0x0000000003077D70, 0x0000000000000000 offset, 9 functions] `.?AVHavokFileStreambufWriter@@` +`class hkNativeFileSystem`: VTable [0x0000000003077DD0, 0x0000000000000000 offset, 6 functions] `.?AVhkNativeFileSystem@@` +`class HavokStreambufFactory`: VTable [0x0000000003077E18, 0x0000000000000000 offset, 6 functions] `.?AVHavokStreambufFactory@@` +`class HavokError`: VTable [0x0000000003077E60, 0x0000000000000000 offset, 17 functions] `.?AVHavokError@@` +`class hkpCdBodyPairCollector`: VTable [0x00000000030787C8, 0x0000000000000000 offset, 3 functions] `.?AVhkpCdBodyPairCollector@@` +`class hkpPhantomListener`: VTable [0x00000000030787F0, 0x0000000000000000 offset, 5 functions] `.?AVhkpPhantomListener@@` +`class bhkTrapListener`: VTable [0x0000000003078830, 0x0000000000000000 offset, 10 functions] `.?AVbhkTrapListener@@` +`class bhkTrapListener`: VTable [0x00000000030788A0, 0x0000000000000018 offset, 5 functions] `.?AVbhkTrapListener@@` +`class TrapEntry`: VTable [0x00000000030788E0, 0x0000000000000000 offset, 3 functions] `.?AVTrapEntry@@` +`class BSListBase`: VTable [0x0000000003078908, 0x0000000000000000 offset, 3 functions] `.?AV?$BSListBase@PEAUTriggerEvent@TriggerEntry@@@@` +`class BSPointerListBase`: VTable [0x0000000003078930, 0x0000000000000000 offset, 3 functions] `.?AV?$BSPointerListBase@PEAUTriggerEvent@TriggerEntry@@@@` +`class BSList`: VTable [0x0000000003078958, 0x0000000000000000 offset, 3 functions] `.?AV?$BSList@PEAUTriggerEvent@TriggerEntry@@@@` +`class TriggerEntry`: VTable [0x0000000003078980, 0x0000000000000000 offset, 1 functions] `.?AVTriggerEntry@@` +`class TESTrapListener`: VTable [0x0000000003078998, 0x0000000000000000 offset, 3 functions] `.?AVTESTrapListener@@` +`class TESTrapListener`: VTable [0x00000000030789C0, 0x0000000000000010 offset, 10 functions] `.?AVTESTrapListener@@` +`class TESTrapListener`: VTable [0x0000000003078A30, 0x0000000000000028 offset, 5 functions] `.?AVTESTrapListener@@` +`class hkpAllCdBodyPairTempCollector`: VTable [0x0000000003078A70, 0x0000000000000000 offset, 3 functions] `.?AVhkpAllCdBodyPairTempCollector@@` +`class Atmosphere`: VTable [0x0000000003078C40, 0x0000000000000000 offset, 5 functions] `.?AVAtmosphere@@` +`class Clouds`: VTable [0x0000000003078E18, 0x0000000000000000 offset, 4 functions] `.?AVClouds@@` +`class Moon`: VTable [0x0000000003079000, 0x0000000000000000 offset, 4 functions] `.?AVMoon@@` +`class Precipitation`: VTable [0x00000000030792D0, 0x0000000000000000 offset, 1 functions] `.?AVPrecipitation@@` +`class Sky`: VTable [0x0000000003079760, 0x0000000000000000 offset, 1 functions] `.?AVSky@@` +`class SkyStaticFindFunctor`: VTable [0x0000000003079C10, 0x0000000000000000 offset, 1 functions] `.?AVSkyStaticFindFunctor@@` +`class SkyObject`: VTable [0x0000000003079CD8, 0x0000000000000000 offset, 4 functions] `.?AVSkyObject@@` +`class Stars`: VTable [0x0000000003079E58, 0x0000000000000000 offset, 4 functions] `.?AVStars@@` +`class Sun`: VTable [0x000000000307A108, 0x0000000000000000 offset, 4 functions] `.?AVSun@@` +`class NiBillboardNode`: VTable [0x000000000307A138, 0x0000000000000000 offset, 64 functions] `.?AVNiBillboardNode@@` +`class BSFaceGenAnimationData`: VTable [0x0000000003096600, 0x0000000000000000 offset, 41 functions] `.?AVBSFaceGenAnimationData@@` +`class FutBinaryFileC`: VTable [0x0000000003096E50, 0x0000000000000000 offset, 12 functions] `.?AVFutBinaryFileC@@` +`class BSResourceFaceGenBinaryFile`: VTable [0x0000000003096ED0, 0x0000000000000000 offset, 12 functions] `.?AVBSResourceFaceGenBinaryFile@@` +`class BSResource::EntryDB`: VTable [0x00000000030987F0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@TRI@BSFaceGenDB@@@BSResource@@` +`class BSResource::EntryDB`: VTable [0x0000000003098838, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@FG@BSFaceGenDB@@@BSResource@@` +`class BSFaceGenKeyframe`: VTable [0x0000000003098C78, 0x0000000000000000 offset, 14 functions] `.?AVBSFaceGenKeyframe@@` +`class BSFaceGenKeyframeExclusive`: VTable [0x0000000003098D08, 0x0000000000000000 offset, 18 functions] `.?AVBSFaceGenKeyframeExclusive@@` +`class BSFaceGenKeyframeMultiple`: VTable [0x0000000003098DC0, 0x0000000000000000 offset, 16 functions] `.?AVBSFaceGenKeyframeMultiple@@` +`class BSQueuedResourceCollection,2>`: VTable [0x0000000003099410, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@TRI@BSFaceGenDB@@@BSResource@@$01@@` +`class BSQueuedResourceCollection,2>`: VTable [0x00000000030994E0, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@TRI@BSFaceGenDB@@@BSResource@@$01@@` +`class BSFaceGenDB::TRI::QueuedHandles`: VTable [0x0000000003099508, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHandles@TRI@BSFaceGenDB@@` +`class BSFaceGenDB::TRI::QueuedHandles`: VTable [0x00000000030995D8, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHandles@TRI@BSFaceGenDB@@` +`class BSAutoQueuedResourceCollection`: VTable [0x0000000003099948, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAutoQueuedResourceCollection@VQueuedHandles@TRI@BSFaceGenDB@@@@` +`class BSFaceGenModel`: VTable [0x0000000003099D30, 0x0000000000000000 offset, 2 functions] `.?AVBSFaceGenModel@@` +`class BSFaceGenModelExtraData`: VTable [0x0000000003099D50, 0x0000000000000000 offset, 41 functions] `.?AVBSFaceGenModelExtraData@@` +`class BSFaceGenModelMap::Entry`: VTable [0x000000000309A298, 0x0000000000000000 offset, 2 functions] `.?AVEntry@BSFaceGenModelMap@@` +`class BSFaceGenMorphData`: VTable [0x000000000309A6F8, 0x0000000000000000 offset, 23 functions] `.?AVBSFaceGenMorphData@@` +`class BSFaceGenMorphDataHead`: VTable [0x000000000309A7E0, 0x0000000000000000 offset, 23 functions] `.?AVBSFaceGenMorphDataHead@@` +`class BSFaceGenMorphDataHair`: VTable [0x000000000309A8C8, 0x0000000000000000 offset, 23 functions] `.?AVBSFaceGenMorphDataHair@@` +`class BSFaceGenBaseMorphExtraData`: VTable [0x000000000309A9B0, 0x0000000000000000 offset, 41 functions] `.?AVBSFaceGenBaseMorphExtraData@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x000000000309AF58, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$03@@@@` +`class BSFaceGenNiNode`: VTable [0x000000000309B188, 0x0000000000000000 offset, 65 functions] `.?AVBSFaceGenNiNode@@` +`class BSFadeNodeCuller`: VTable [0x000000000309C570, 0x0000000000000000 offset, 25 functions] `.?AVBSFadeNodeCuller@@` +`class BSTreeNodeUtils::TreeNodeCollisionPicker`: VTable [0x000000000309C7B8, 0x0000000000000000 offset, 3 functions] `.?AVTreeNodeCollisionPicker@BSTreeNodeUtils@@` +`class BSTempEffect`: VTable [0x000000000309C980, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffect@@` +`class BSTempEffectGeometryDecal`: VTable [0x000000000309CDC8, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectGeometryDecal@@` +`class NiTArray >`: VTable [0x000000000309D4A8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVNiAVObject@@V?$NiTMallocInterface@PEAVNiAVObject@@@@@@` +`class NiTPrimitiveArray`: VTable [0x000000000309D4C0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVNiAVObject@@@@` +`class BSTempEffectParticle`: VTable [0x000000000309D4D8, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectParticle@@` +`class BGSParticleObjectCloneTask`: VTable [0x000000000309D6F0, 0x0000000000000000 offset, 10 functions] `.?AVBGSParticleObjectCloneTask@@` +`class BSTempEffectSimpleDecal`: VTable [0x000000000309D9D0, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectSimpleDecal@@` +`class BSTempEffectSPG`: VTable [0x000000000309DEE0, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectSPG@@` +`class BSTempEffectWeaponBlood`: VTable [0x000000000309E2A0, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectWeaponBlood@@` +`class NavMesh`: VTable [0x000000000309F480, 0x0000000000000000 offset, 101 functions] `.?AVNavMesh@@` +`class NavMesh`: VTable [0x000000000309F858, 0x0000000000000028 offset, 2 functions] `.?AVNavMesh@@` +`class NavMesh`: VTable [0x000000000309F878, 0x0000000000000030 offset, 2 functions] `.?AVNavMesh@@` +`class hkpClosestRayHitCollector`: VTable [0x000000000309F898, 0x0000000000000000 offset, 2 functions] `.?AVhkpClosestRayHitCollector@@` +`class ConcreteFormFactory`: VTable [0x000000000309F8B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VNavMesh@@$0EJ@@@` +`class BSPathingStreamRead`: VTable [0x00000000030A1020, 0x0000000000000000 offset, 20 functions] `.?AVBSPathingStreamRead@@` +`class BSPathingStreamWrite`: VTable [0x00000000030A10F0, 0x0000000000000000 offset, 17 functions] `.?AVBSPathingStreamWrite@@` +`class PathingStreamMasterFileRead`: VTable [0x00000000030A11A0, 0x0000000000000000 offset, 20 functions] `.?AVPathingStreamMasterFileRead@@` +`class MasterFilePathingStreamWriteToBuffer`: VTable [0x00000000030A1270, 0x0000000000000000 offset, 17 functions] `.?AVMasterFilePathingStreamWriteToBuffer@@` +`class MasterFilePathingStreamGetSize`: VTable [0x00000000030A1320, 0x0000000000000000 offset, 17 functions] `.?AVMasterFilePathingStreamGetSize@@` +`class NavMeshNodeExtraData`: VTable [0x00000000030A2418, 0x0000000000000000 offset, 41 functions] `.?AVNavMeshNodeExtraData@@` +`class BSPathingCellManager`: VTable [0x00000000030A3EC0, 0x0000000000000000 offset, 11 functions] `.?AVBSPathingCellManager@@` +`class Pathing`: VTable [0x00000000030A3F38, 0x0000000000000000 offset, 9 functions] `.?AVPathing@@` +`class Pathing`: VTable [0x00000000030A3F98, 0x0000000000000018 offset, 11 functions] `.?AVPathing@@` +`class Pathing`: VTable [0x00000000030A4010, 0x0000000000000020 offset, 2 functions] `.?AVPathing@@` +`class PathingCoverLocation`: VTable [0x00000000030A4030, 0x0000000000000000 offset, 3 functions] `.?AVPathingCoverLocation@@` +`struct BSPathfindingTemporary`: VTable [0x00000000030A40A8, 0x0000000000000000 offset, 7 functions] `.?AU?$BSPathfindingTemporary@VPathingRequestSafeStraightLine@@@@` +`class BSPathingCell`: VTable [0x00000000030A4830, 0x0000000000000000 offset, 12 functions] `.?AVBSPathingCell@@` +`class PathingCell`: VTable [0x00000000030A48B0, 0x0000000000000000 offset, 12 functions] `.?AVPathingCell@@` +`struct IBSTCreator`: VTable [0x00000000030A4958, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSPathingCell@@@@` +`struct BSTDerivedCreator`: VTable [0x00000000030A4980, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingCell@@VBSPathingCell@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030A49A8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingCell@@VBSPathingCell@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingCell@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030A49D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingCell@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingCell@@$0EA@@@@@` +`class PathingDebugGeometry`: VTable [0x00000000030A4FC8, 0x0000000000000000 offset, 2 functions] `.?AVPathingDebugGeometry@@` +`class BSPathingDoor`: VTable [0x00000000030A58A0, 0x0000000000000000 offset, 18 functions] `.?AVBSPathingDoor@@` +`class PathingDoor`: VTable [0x00000000030A5958, 0x0000000000000000 offset, 18 functions] `.?AVPathingDoor@@` +`struct IBSTCreator`: VTable [0x00000000030A5A10, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSPathingDoor@@@@` +`struct BSTDerivedCreator`: VTable [0x00000000030A5A38, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingDoor@@VBSPathingDoor@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030A5A60, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingDoor@@VBSPathingDoor@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingDoor@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030A5A88, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingDoor@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingDoor@@$0EA@@@@@` +`class BSPathingNumericIDVisitor`: VTable [0x00000000030A5D10, 0x0000000000000000 offset, 2 functions] `.?AVBSPathingNumericIDVisitor@@` +`class PathingNumericIDVisitor`: VTable [0x00000000030A5D30, 0x0000000000000000 offset, 2 functions] `.?AVPathingNumericIDVisitor@@` +`class PathingRequest`: VTable [0x00000000030A5ED0, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequest@@` +`struct IBSTCreator`: VTable [0x00000000030A5F20, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSPathingRequest@@@@` +`struct BSTDerivedCreator`: VTable [0x00000000030A5F48, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequest@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030A5F70, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequest@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030A5F98, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequest@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030A5FC0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequest@@VBSPathingRequest@@$0EA@@@` +`class BSPathingSpace`: VTable [0x00000000030A6150, 0x0000000000000000 offset, 4 functions] `.?AVBSPathingSpace@@` +`class PathingSpace`: VTable [0x00000000030A6180, 0x0000000000000000 offset, 4 functions] `.?AVPathingSpace@@` +`class AStarSearch`: VTable [0x00000000030A66C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@UParentSpaceNode@@UTeleportLink@@$00@@` +`class TeleportDoorSearch`: VTable [0x00000000030A66E8, 0x0000000000000000 offset, 3 functions] `.?AVTeleportDoorSearch@@` +`struct BSPathfindingTemporary`: VTable [0x00000000030A6710, 0x0000000000000000 offset, 18 functions] `.?AU?$BSPathfindingTemporary@VPathingDoor@@@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000030A6828, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$07@@@@` +`struct BSNavmeshInfoMap::IVisitor`: VTable [0x00000000030A8058, 0x0000000000000000 offset, 2 functions] `.?AUIVisitor@BSNavmeshInfoMap@@` +`class NavMeshInfoMap`: VTable [0x00000000030A80B8, 0x0000000000000000 offset, 101 functions] `.?AVNavMeshInfoMap@@` +`class NavMeshInfoMap`: VTable [0x00000000030A8490, 0x0000000000000028 offset, 6 functions] `.?AVNavMeshInfoMap@@` +`class RecomputeBoundsTaskData`: VTable [0x00000000030A8EF0, 0x0000000000000000 offset, 4 functions] `.?AVRecomputeBoundsTaskData@@` +`struct `anonymous namespace'::ClearPrecomputedPathFlag`: VTable [0x00000000030A9000, 0x0000000000000000 offset, 2 functions] `.?AUClearPrecomputedPathFlag@?A0xd8eeaf6e@@` +`class NavMeshObstacleManager`: VTable [0x00000000030AA558, 0x0000000000000000 offset, 2 functions] `.?AVNavMeshObstacleManager@@` +`class BSNavmeshReferenceObstacleArray`: VTable [0x00000000030AA578, 0x0000000000000000 offset, 2 functions] `.?AVBSNavmeshReferenceObstacleArray@@` +`class hkpEntityActivationListener`: VTable [0x00000000030AA598, 0x0000000000000000 offset, 3 functions] `.?AVhkpEntityActivationListener@@` +`class bhkObstacleDeactivationListener`: VTable [0x00000000030AA6E0, 0x0000000000000000 offset, 3 functions] `.?AVbhkObstacleDeactivationListener@@` +`class bhkObstacleRemovalListener`: VTable [0x00000000030AA708, 0x0000000000000000 offset, 6 functions] `.?AVbhkObstacleRemovalListener@@` +`class ObstacleTaskData`: VTable [0x00000000030AABE8, 0x0000000000000000 offset, 4 functions] `.?AVObstacleTaskData@@` +`class AStarSearch`: VTable [0x00000000030AB158, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@UBSFastNavmeshTriLocation@@UBSFastNavmeshEdgeHandle@@$02@@` +`class NavMeshSearchClosePoint`: VTable [0x00000000030AB180, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchClosePoint@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000030AB440, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0BI@@@@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000030AB470, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0EA@@@@@` +`class AStarSearch`: VTable [0x00000000030AB800, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@UBSFastNavmeshTriLocation@@PEAX$02@@` +`class NavMeshSearchFitSphere`: VTable [0x00000000030AB828, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchFitSphere@@` +`class NavMeshSearchFlee`: VTable [0x00000000030AB9D0, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchFlee@@` +`class NavMeshSearchHide`: VTable [0x00000000030ABAF8, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchHide@@` +`struct BSNavmeshSearchHideFilter`: VTable [0x00000000030ABB20, 0x0000000000000000 offset, 2 functions] `.?AUBSNavmeshSearchHideFilter@@` +`class NavMeshSearchLOS`: VTable [0x00000000030ABC00, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchLOS@@` +`class NavMeshSearchMaxCost`: VTable [0x00000000030ABDC8, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchMaxCost@@` +`struct BSNavmeshSearchMaxCostFilters`: VTable [0x00000000030ABDF0, 0x0000000000000000 offset, 2 functions] `.?AUBSNavmeshSearchMaxCostFilters@@` +`class NavMeshSearchMultipleGoals`: VTable [0x00000000030ABE70, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchMultipleGoals@@` +`class NavMeshSearchSLPoint`: VTable [0x00000000030ABFD0, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchSLPoint@@` +`class PathingRequestClosePoint`: VTable [0x00000000030AC148, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestClosePoint@@` +`struct BSTDerivedCreator`: VTable [0x00000000030AC198, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestClosePoint@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030AC1C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestClosePoint@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030AC1E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestClosePoint@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030AC210, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestClosePoint@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestClosestGoal`: VTable [0x00000000030AC798, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestClosestGoal@@` +`class IPathBuilderFactoryBase`: VTable [0x00000000030AC7E8, 0x0000000000000000 offset, 2 functions] `.?AVIPathBuilderFactoryBase@@` +`struct BSTDerivedCreator`: VTable [0x00000000030AC808, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestClosestGoal@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030AC830, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestClosestGoal@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030AC858, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestClosestGoal@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030AC880, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestClosestGoal@@VBSPathingRequest@@$0EA@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AC8A8, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestClosestGoal@@UPathBuilder@1@@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000030ACAB0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0HA@@@@@` +`class PathingRequestCover`: VTable [0x00000000030ACCF0, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestCover@@` +`struct BSTDerivedCreator`: VTable [0x00000000030ACD40, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestCover@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030ACD68, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestCover@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030ACD90, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestCover@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030ACDB8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestCover@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestFlee`: VTable [0x00000000030ACE88, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlee@@` +`struct BSTDerivedCreator`: VTable [0x00000000030ACED8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlee@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030ACF00, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlee@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030ACF28, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlee@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030ACF50, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlee@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestFly`: VTable [0x00000000030AD0B0, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFly@@` +`struct BSTDerivedCreator`: VTable [0x00000000030AD100, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFly@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030AD128, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFly@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030AD150, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFly@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030AD178, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFly@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestFlyAction`: VTable [0x00000000030AD2D8, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyAction@@` +`struct BSTDerivedCreator`: VTable [0x00000000030AD328, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyAction@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030AD350, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyAction@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030AD378, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyAction@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030AD3A0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyAction@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestFlyHover`: VTable [0x00000000030AD658, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyHover@@` +`struct BSTDerivedCreator`: VTable [0x00000000030AD6A8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyHover@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030AD6D0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyHover@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030AD6F8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyHover@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030AD720, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyHover@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestFlyLand`: VTable [0x00000000030AD888, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyLand@@` +`struct BSTDerivedCreator`: VTable [0x00000000030AD8D8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyLand@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030AD900, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyLand@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030AD928, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyLand@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030AD950, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyLand@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestFlyOrbit`: VTable [0x00000000030ADAB8, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyOrbit@@` +`struct BSTDerivedCreator`: VTable [0x00000000030ADB08, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyOrbit@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030ADB30, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyOrbit@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030ADB58, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyOrbit@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030ADB80, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyOrbit@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestFlyTakeOff`: VTable [0x00000000030ADC58, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyTakeOff@@` +`struct BSTDerivedCreator`: VTable [0x00000000030ADCA8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyTakeOff@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030ADCD0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyTakeOff@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030ADCF8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyTakeOff@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030ADD20, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyTakeOff@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestHide`: VTable [0x00000000030ADE58, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestHide@@` +`struct BSTDerivedCreator`: VTable [0x00000000030ADEA8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestHide@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030ADED0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestHide@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030ADEF8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestHide@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030ADF20, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestHide@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestLOS`: VTable [0x00000000030AE080, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestLOS@@` +`struct BSTDerivedCreator`: VTable [0x00000000030AE0D0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestLOS@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030AE0F8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestLOS@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030AE120, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestLOS@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030AE148, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestLOS@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestOptimalLocation`: VTable [0x00000000030AE248, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestOptimalLocation@@` +`struct BSTDerivedCreator`: VTable [0x00000000030AE298, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestOptimalLocation@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030AE2C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestOptimalLocation@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030AE2E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestOptimalLocation@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030AE310, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestOptimalLocation@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestRotate`: VTable [0x00000000030AE450, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestRotate@@` +`struct BSTDerivedCreator`: VTable [0x00000000030AE4A0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestRotate@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030AE4C8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestRotate@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030AE4F0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestRotate@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030AE518, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestRotate@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestSafeStraightLine`: VTable [0x00000000030AE620, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestSafeStraightLine@@` +`struct BSTDerivedCreator`: VTable [0x00000000030AE670, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestSafeStraightLine@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030AE698, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestSafeStraightLine@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030AE6C0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestSafeStraightLine@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030AE6E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestSafeStraightLine@@VBSPathingRequest@@$0EA@@@` +`class PathingRequestStopMoving`: VTable [0x00000000030AE7F8, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestStopMoving@@` +`struct BSTDerivedCreator`: VTable [0x00000000030AE848, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestStopMoving@@VBSPathingRequest@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000030AE870, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestStopMoving@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000030AE898, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestStopMoving@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x00000000030AE8C0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestStopMoving@@VBSPathingRequest@@$0EA@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AEA88, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestClosePoint@@VPathBuilderClosePointPath@?A0x0a3c52a4@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AEDE0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequest@@VPathBuilderPathingRequest@?A0x1caf9e55@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AEE00, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestStopMoving@@VPathBuilderStopMovingPath@?A0x1caf9e55@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AEE20, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestRotate@@VPathBuilderRotatePath@?A0x1caf9e55@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AEF00, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlee@@VPathBuilderFleePath@PathBuilderFlee@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AF950, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFly@@VPathBuilderFlyPath@PathBuilderFlight@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AF970, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyAction@@VPathBuilderFlyActionPath@PathBuilderFlight@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AF990, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyHover@@VPathBuilderFlyHoverPath@PathBuilderFlight@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AF9B0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyOrbit@@VPathBuilderFlyOrbitPath@PathBuilderFlight@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AF9D0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyLand@@VPathBuilderFlyLandPath@PathBuilderFlight@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AF9F0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyTakeOff@@VPathBuilderFlyTakeOffPath@PathBuilderFlight@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AFB08, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestHide@@VPathBuilderHidePath@PathBuilderHide@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AFCD0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestLOS@@VPathBuilderLOSPath@PathBuilderLOS@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AFE70, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestOptimalLocation@@VPathBuilderOptimalLocationPath@PathBuilderOptimalLocation@@@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x00000000030AFFC0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestSafeStraightLine@@VPathBuilderSafeStraightLinePath@PathBuilderSafeStraightLine@@@@` +`class BSHEAttributeBase`: VTable [0x00000000030B03C0, 0x0000000000000000 offset, 1 functions] `.?AVBSHEAttributeBase@@` +`class BSHECollapseConstraint`: VTable [0x00000000030B0428, 0x0000000000000000 offset, 1 functions] `.?AVBSHECollapseConstraint@@` +`class BSHEAttribute`: VTable [0x00000000030B0440, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@VNiPoint3@@@@` +`class BSHEAttribute`: VTable [0x00000000030B0458, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@VNiPoint2@@@@` +`class BGSTerrainMeshCollapseConstraint`: VTable [0x00000000030B0470, 0x0000000000000000 offset, 1 functions] `.?AVBGSTerrainMeshCollapseConstraint@@` +`class BGSTerrainMeshCollapseConstraintInternal`: VTable [0x00000000030B0488, 0x0000000000000000 offset, 1 functions] `.?AVBGSTerrainMeshCollapseConstraintInternal@@` +`class BGSQueuedTerrainUpdate`: VTable [0x00000000030B0E78, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedTerrainUpdate@@` +`class BGSQueuedTerrainUpgrade`: VTable [0x00000000030B0EC0, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedTerrainUpgrade@@` +`class BGSQueuedTerrainDowngrade`: VTable [0x00000000030B0F08, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedTerrainDowngrade@@` +`class BGSQueuedTerrainInitialLoad`: VTable [0x00000000030B0F50, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedTerrainInitialLoad@@` +`class BGSQueuedObjectUpgrade`: VTable [0x00000000030B0F98, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedObjectUpgrade@@` +`class BGSQueuedObjectDowngrade`: VTable [0x00000000030B0FE0, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedObjectDowngrade@@` +`class BGSQueuedObjectInitialLoad`: VTable [0x00000000030B1028, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedObjectInitialLoad@@` +`class std::basic_stringstream,class std::allocator >`: VTable [0x00000000030B2AE0, 0x0000000000000098 offset, 1 functions] `.?AV?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@` +`class BSResource::EntryDB`: VTable [0x00000000030B43E0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BGSBtoDB@@@BSResource@@` +`class BSResource::EntryDB`: VTable [0x00000000030B54B0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BGSBttDB@@@BSResource@@` +`class BSResource::EntryDB`: VTable [0x00000000030B61E0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BGSBtrDB@@@BSResource@@` +`class BGSTerrainBuildThread`: VTable [0x00000000030B74A0, 0x0000000000000000 offset, 3 functions] `.?AVBGSTerrainBuildThread@@` +`class BGSTerrainBuildDispatcherThread`: VTable [0x00000000030B74C8, 0x0000000000000000 offset, 3 functions] `.?AVBGSTerrainBuildDispatcherThread@@` +`class BGSTerrainVisibilityFinderTestThread`: VTable [0x00000000030B8870, 0x0000000000000000 offset, 3 functions] `.?AVBGSTerrainVisibilityFinderTestThread@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000030B9638, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0GM@@@@@` +`class bhkAabbPhantom`: VTable [0x00000000030B9C08, 0x0000000000000000 offset, 55 functions] `.?AVbhkAabbPhantom@@` +`class BGSWaterCollisionManager::bhkWaterfall`: VTable [0x00000000030B9E28, 0x0000000000000000 offset, 13 functions] `.?AVbhkWaterfall@BGSWaterCollisionManager@@` +`class BGSWaterCollisionManager::bhkWaterfall`: VTable [0x00000000030B9EB0, 0x0000000000000020 offset, 7 functions] `.?AVbhkWaterfall@BGSWaterCollisionManager@@` +`class BGSWaterCollisionManager::bhkAutoWater`: VTable [0x00000000030B9F00, 0x0000000000000000 offset, 55 functions] `.?AVbhkAutoWater@BGSWaterCollisionManager@@` +`class BGSWaterCollisionManager::bshkAutoWater`: VTable [0x00000000030BA2A8, 0x0000000000000000 offset, 15 functions] `.?AVbshkAutoWater@BGSWaterCollisionManager@@` +`class BGSWaterCollisionManager::bshkAutoWater`: VTable [0x00000000030BA348, 0x0000000000000130 offset, 7 functions] `.?AVbshkAutoWater@BGSWaterCollisionManager@@` +`class TESWaterObject`: VTable [0x00000000030BA9F8, 0x0000000000000000 offset, 2 functions] `.?AVTESWaterObject@@` +`class TESWaterReflections`: VTable [0x00000000030BAA18, 0x0000000000000000 offset, 2 functions] `.?AVTESWaterReflections@@` +`class TESWaterNormals`: VTable [0x00000000030BAA38, 0x0000000000000000 offset, 2 functions] `.?AVTESWaterNormals@@` +`class ConcreteFormFactory`: VTable [0x00000000030BC9B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSStoryManagerBranchNode@@$0HA@@@` +`class BGSStoryManagerEventNode`: VTable [0x00000000030BCB10, 0x0000000000000000 offset, 113 functions] `.?AVBGSStoryManagerEventNode@@` +`class ConcreteFormFactory`: VTable [0x00000000030BCF58, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSStoryManagerEventNode@@$0HC@@@` +`class ConcreteObjectFormFactory`: VTable [0x00000000030BCFA8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSStoryManagerEventNode@@$0HC@$0FN@$04@@` +`class DialogExtraStoryManagerData`: VTable [0x00000000030BD200, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraStoryManagerData@@` +`class BGSStoryManagerQuestNode`: VTable [0x00000000030BD830, 0x0000000000000000 offset, 113 functions] `.?AVBGSStoryManagerQuestNode@@` +`class ConcreteFormFactory`: VTable [0x00000000030BDC78, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSStoryManagerQuestNode@@$0HB@@@` +`class BGSLOSData`: VTable [0x00000000030BDEF8, 0x0000000000000000 offset, 2 functions] `.?AVBGSLOSData@@` +`class BGSLOSQuadGrid`: VTable [0x00000000030BE990, 0x0000000000000000 offset, 5 functions] `.?AVBGSLOSQuadGrid@@` +`class BGSLOSGenParallelTask`: VTable [0x00000000030BE9D0, 0x0000000000000000 offset, 2 functions] `.?AVBGSLOSGenParallelTask@@` +`class BGSLOSQuadGridDefault`: VTable [0x00000000030BECE0, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSLOSQuadGridDefault@VBGSLOSQuadInterior@@@@` +`class BGSLOSQuadGridSparse`: VTable [0x00000000030BED30, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSLOSQuadGridSparse@VBGSLOSQuadInterior@@@@` +`class BGSLOSQuadGridDefault`: VTable [0x00000000030BED80, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSLOSQuadGridDefault@VBGSLOSQuadExterior@@@@` +`class BGSLOSQuadGridSparse`: VTable [0x00000000030BEDD0, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSLOSQuadGridSparse@VBGSLOSQuadExterior@@@@` +`class BGSLOSGenParallelTaskDelegate`: VTable [0x00000000030BEE20, 0x0000000000000000 offset, 2 functions] `.?AV?$BGSLOSGenParallelTaskDelegate@VBGSLOSGenCellGrid@@@@` +`class BGSLOSGenParallelTaskDelegate`: VTable [0x00000000030BEE40, 0x0000000000000000 offset, 2 functions] `.?AV?$BGSLOSGenParallelTaskDelegate@VHammingWeightComputer@@@@` +`class hkpBroadPhaseCastCollector`: VTable [0x00000000030BF040, 0x0000000000000000 offset, 2 functions] `.?AVhkpBroadPhaseCastCollector@@` +`class hkpWorldRayCaster`: VTable [0x00000000030BF060, 0x0000000000000000 offset, 2 functions] `.?AVhkpWorldRayCaster@@` +`class bhkFirstRayHitCollector`: VTable [0x00000000030BF080, 0x0000000000000000 offset, 2 functions] `.?AVbhkFirstRayHitCollector@@` +`class BGSLOSGenParallelTaskDelegate`: VTable [0x00000000030BF588, 0x0000000000000000 offset, 2 functions] `.?AV?$BGSLOSGenParallelTaskDelegate@VBGSLOSGenLOSArray@@@@` +`class BGSLOSGenParallelTaskDelegate`: VTable [0x00000000030BFB00, 0x0000000000000000 offset, 2 functions] `.?AV?$BGSLOSGenParallelTaskDelegate@VBGSLOSGenOcclusionArray@@@@` +`class BSLinearTaskThread`: VTable [0x00000000030BFCA8, 0x0000000000000000 offset, 7 functions] `.?AVBSLinearTaskThread@@` +`class BGSLOSGenParallelTaskThread`: VTable [0x00000000030BFCF8, 0x0000000000000000 offset, 7 functions] `.?AVBGSLOSGenParallelTaskThread@@` +`struct FindTriangleForLocationFilter`: VTable [0x00000000030C0220, 0x0000000000000000 offset, 2 functions] `.?AUFindTriangleForLocationFilter@@` +`struct FindTriangleForLocationFilterCheckDeltaZ`: VTable [0x00000000030C0240, 0x0000000000000000 offset, 2 functions] `.?AUFindTriangleForLocationFilterCheckDeltaZ@@` +`class BSShapeConstructor`: VTable [0x00000000030C0260, 0x0000000000000000 offset, 3 functions] `.?AVBSShapeConstructor@@` +`class BSBoxConstructor`: VTable [0x00000000030C0288, 0x0000000000000000 offset, 3 functions] `.?AVBSBoxConstructor@@` +`class BGSLOSGenQuadBoxConstructor`: VTable [0x00000000030C0408, 0x0000000000000000 offset, 3 functions] `.?AVBGSLOSGenQuadBoxConstructor@@` +`class AnimationClipDataSingleton`: VTable [0x00000000030C0D38, 0x0000000000000000 offset, 1 functions] `.?AVAnimationClipDataSingleton@@` +`class AnimationSystemUtils::QueuedReferenceAnimationTask`: VTable [0x00000000030C1D90, 0x0000000000000000 offset, 22 functions] `.?AVQueuedReferenceAnimationTask@AnimationSystemUtils@@` +`class AnimationSystemUtils::QueuedReferenceAnimationTask`: VTable [0x00000000030C1E70, 0x0000000000000038 offset, 3 functions] `.?AVQueuedReferenceAnimationTask@AnimationSystemUtils@@` +`class BSIFootIkRaycastInterfaceDB`: VTable [0x00000000030C2980, 0x0000000000000000 offset, 3 functions] `.?AVBSIFootIkRaycastInterfaceDB@@` +`class hkaRaycastInterface`: VTable [0x00000000030C29A8, 0x0000000000000000 offset, 3 functions] `.?AVhkaRaycastInterface@@` +`class BGSFootIkRaycastInterfaceDB`: VTable [0x00000000030C29D0, 0x0000000000000000 offset, 3 functions] `.?AVBGSFootIkRaycastInterfaceDB@@` +`class CachedRaycastData`: VTable [0x00000000030C2A48, 0x0000000000000000 offset, 3 functions] `.?AVCachedRaycastData@@` +`class IGamebryoSequenceGeneratorHolderSingleton`: VTable [0x00000000030C2C60, 0x0000000000000000 offset, 4 functions] `.?AVIGamebryoSequenceGeneratorHolderSingleton@@` +`class BGSGamebryoSequenceGeneratorHolderSingleton`: VTable [0x00000000030C2C90, 0x0000000000000000 offset, 4 functions] `.?AVBGSGamebryoSequenceGeneratorHolderSingleton@@` +`class BSSynchronizedClipGenerator::hkbSynchronizedAnimationScene`: VTable [0x00000000030C38E0, 0x0000000000000000 offset, 10 functions] `.?AVhkbSynchronizedAnimationScene@BSSynchronizedClipGenerator@@` +`class BGSSynchronizedAnimationInstance`: VTable [0x00000000030C3950, 0x0000000000000000 offset, 10 functions] `.?AVBGSSynchronizedAnimationInstance@@` +`class BSAnimGraphVisit::BShkbVisitor`: VTable [0x00000000030C39C0, 0x0000000000000000 offset, 2 functions] `.?AVBShkbVisitor@BSAnimGraphVisit@@` +`class `anonymous namespace'::SynchronizedClipGenVisitor`: VTable [0x00000000030C3AC8, 0x0000000000000000 offset, 2 functions] `.?AVSynchronizedClipGenVisitor@?A0x5471771c@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000030C3FB0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0EI@@@@@` +`class BSLimbIKModifierUtilityCastInfo`: VTable [0x00000000030C41D0, 0x0000000000000000 offset, 1 functions] `.?AVBSLimbIKModifierUtilityCastInfo@@` +`class BSLimbIKModifierUtility`: VTable [0x00000000030C41E8, 0x0000000000000000 offset, 4 functions] `.?AVBSLimbIKModifierUtility@@` +`class hkpAllRayHitTempCollector`: VTable [0x00000000030C4218, 0x0000000000000000 offset, 2 functions] `.?AVhkpAllRayHitTempCollector@@` +`class IAnimationGraphManagerHolder`: VTable [0x00000000030C4DC0, 0x0000000000000000 offset, 19 functions] `.?AVIAnimationGraphManagerHolder@@` +`class IAnimationGraphManagerLoadingTask`: VTable [0x00000000030C4E80, 0x0000000000000000 offset, 22 functions] `.?AVIAnimationGraphManagerLoadingTask@@` +`class IAnimationGraphManagerLoadingTask`: VTable [0x00000000030C4F60, 0x0000000000000038 offset, 3 functions] `.?AVIAnimationGraphManagerLoadingTask@@` +`class SimpleAnimationGraphManagerHolder`: VTable [0x00000000030C54B8, 0x0000000000000000 offset, 20 functions] `.?AVSimpleAnimationGraphManagerHolder@@` +`class SimpleAnimationGraphManagerLoadingTask`: VTable [0x00000000030C5588, 0x0000000000000000 offset, 22 functions] `.?AVSimpleAnimationGraphManagerLoadingTask@@` +`class SimpleAnimationGraphManagerLoadingTask`: VTable [0x00000000030C5668, 0x0000000000000038 offset, 3 functions] `.?AVSimpleAnimationGraphManagerLoadingTask@@` +`class WeaponAnimationGraphManagerHolder`: VTable [0x00000000030C5940, 0x0000000000000000 offset, 21 functions] `.?AVWeaponAnimationGraphManagerHolder@@` +`class TailAnimationGraphManagerHolder`: VTable [0x00000000030C5A18, 0x0000000000000000 offset, 21 functions] `.?AVTailAnimationGraphManagerHolder@@` +`class BSTEventSink`: VTable [0x00000000030C5C40, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UNameFoundEvent@BSResource@@@@` +`class `anonymous namespace'::LooseAudioRegistrar`: VTable [0x00000000030C5C60, 0x0000000000000000 offset, 2 functions] `.?AVLooseAudioRegistrar@?A0x4dfd41f3@@` +`class BSResource::EntryDB`: VTable [0x00000000030C6D40, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BGSTerrainVisibilityDataDB@@@BSResource@@` +`class TESCamera`: VTable [0x00000000030C6EA8, 0x0000000000000000 offset, 3 functions] `.?AVTESCamera@@` +`class TESRegionDataGrassEditor`: VTable [0x00000000030C6FC0, 0x0000000000000000 offset, 17 functions] `.?AVTESRegionDataGrassEditor@@` +`class TESRegionDataLandscapeEditor`: VTable [0x00000000030C7248, 0x0000000000000000 offset, 17 functions] `.?AVTESRegionDataLandscapeEditor@@` +`class TESRegionDataMapEditor`: VTable [0x00000000030C73B8, 0x0000000000000000 offset, 14 functions] `.?AVTESRegionDataMapEditor@@` +`class TESRegionDataObjectsEditor`: VTable [0x00000000030C7BF8, 0x0000000000000000 offset, 19 functions] `.?AVTESRegionDataObjectsEditor@@` +`class TESRegionDataSoundEditor`: VTable [0x00000000030C8668, 0x0000000000000000 offset, 15 functions] `.?AVTESRegionDataSoundEditor@@` +`class TESRegionDataWeatherEditor`: VTable [0x00000000030C87A0, 0x0000000000000000 offset, 15 functions] `.?AVTESRegionDataWeatherEditor@@` +`class NiTMapBase >,char const * __ptr64,class HeightField * __ptr64>`: VTable [0x00000000030CAF40, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEBDPEAVHeightField@@@@@@PEBDPEAVHeightField@@@@` +`class NiTMap`: VTable [0x00000000030CAF90, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEBDPEAVHeightField@@@@` +`class NiTStringTemplateMap,class HeightField * __ptr64>`: VTable [0x00000000030CAFE0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTMap@PEBDPEAVHeightField@@@@PEAVHeightField@@@@` +`class NiTStringMap`: VTable [0x00000000030CB030, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringMap@PEAVHeightField@@@@` +`class BSHEMeshDebugger::StepCallback`: VTable [0x00000000030CBBF8, 0x0000000000000000 offset, 7 functions] `.?AVStepCallback@BSHEMeshDebugger@@` +`class BGSMeshDebuggerValidatorThread`: VTable [0x00000000030CBC48, 0x0000000000000000 offset, 3 functions] `.?AVBGSMeshDebuggerValidatorThread@@` +`class BGSMeshDebuggerTestThread`: VTable [0x00000000030CBC70, 0x0000000000000000 offset, 3 functions] `.?AVBGSMeshDebuggerTestThread@@` +`class StepCallback`: VTable [0x00000000030CBC98, 0x0000000000000000 offset, 7 functions] `.?AVStepCallback@@` +`class NavMeshEditObject`: VTable [0x00000000030CD678, 0x0000000000000000 offset, 33 functions] `.?AVNavMeshEditObject@@` +`class NavMeshEditVertex`: VTable [0x00000000030CD7C0, 0x0000000000000000 offset, 35 functions] `.?AVNavMeshEditVertex@@` +`class NavMeshEditTriangle`: VTable [0x00000000030CD920, 0x0000000000000000 offset, 33 functions] `.?AVNavMeshEditTriangle@@` +`class NavMeshEditEdge`: VTable [0x00000000030CDA68, 0x0000000000000000 offset, 34 functions] `.?AVNavMeshEditEdge@@` +`class NavGenUtil::NavGenMeshRecastImport`: VTable [0x00000000030CFDE8, 0x0000000000000000 offset, 2 functions] `.?AVNavGenMeshRecastImport@NavGenUtil@@` +`class CSScript::FragmentSystem::BaseObjectFragmentData`: VTable [0x00000000030D4E88, 0x0000000000000000 offset, 5 functions] `.?AVBaseObjectFragmentData@FragmentSystem@CSScript@@` +`class CSScript::FragmentSystem::QuestFragmentData`: VTable [0x00000000030D4EC8, 0x0000000000000000 offset, 5 functions] `.?AVQuestFragmentData@FragmentSystem@CSScript@@` +`class CSScript::FragmentSystem::TopicInfoFragmentData`: VTable [0x00000000030D4F08, 0x0000000000000000 offset, 5 functions] `.?AVTopicInfoFragmentData@FragmentSystem@CSScript@@` +`class CSScript::FragmentSystem::SceneFragmentData`: VTable [0x00000000030D4F48, 0x0000000000000000 offset, 5 functions] `.?AVSceneFragmentData@FragmentSystem@CSScript@@` +`class CSScript::FragmentSystem::PackageFragmentData`: VTable [0x00000000030D4F88, 0x0000000000000000 offset, 5 functions] `.?AVPackageFragmentData@FragmentSystem@CSScript@@` +`class CSScript::FragmentSystem::PerkFragmentData`: VTable [0x00000000030D4FC8, 0x0000000000000000 offset, 5 functions] `.?AVPerkFragmentData@FragmentSystem@CSScript@@` +`class CSScript::`anonymous namespace'::FindBaseObjVisitor`: VTable [0x00000000030D5570, 0x0000000000000000 offset, 4 functions] `.?AVFindBaseObjVisitor@?A0x4418cd14@CSScript@@` +`class CSScript::Internal::ScriptManager`: VTable [0x00000000030D5EA8, 0x0000000000000000 offset, 6 functions] `.?AVScriptManager@Internal@CSScript@@` +`class CSScript::IScriptManager`: VTable [0x00000000030D6130, 0x0000000000000000 offset, 6 functions] `.?AVIScriptManager@CSScript@@` +`struct BSPerforce::IForEachOtherCheckoutFunctor`: VTable [0x00000000030D7D40, 0x0000000000000000 offset, 1 functions] `.?AUIForEachOtherCheckoutFunctor@BSPerforce@@` +`struct CSScript::`anonymous namespace'::GetUserListFunctor`: VTable [0x00000000030D7DD0, 0x0000000000000000 offset, 1 functions] `.?AUGetUserListFunctor@?A0xcf2bd30e@CSScript@@` +`class CSScript::ModalDialog`: VTable [0x00000000030D8600, 0x0000000000000000 offset, 2 functions] `.?AVModalDialog@CSScript@@` +`class CSScript::`anonymous namespace'::ControlValidationBase`: VTable [0x00000000030D8670, 0x0000000000000000 offset, 2 functions] `.?AVControlValidationBase@?A0x351b999c@CSScript@@` +`class CSScript::`anonymous namespace'::IdentValidation`: VTable [0x00000000030D8690, 0x0000000000000000 offset, 2 functions] `.?AVIdentValidation@?A0x351b999c@CSScript@@` +`class CSScript::`anonymous namespace'::ScriptnameValidation`: VTable [0x00000000030D86B0, 0x0000000000000000 offset, 2 functions] `.?AVScriptnameValidation@?A0x351b999c@CSScript@@` +`class CSScript::`anonymous namespace'::DocstringValidation`: VTable [0x00000000030D86D0, 0x0000000000000000 offset, 2 functions] `.?AVDocstringValidation@?A0x351b999c@CSScript@@` +`class CSScript::`anonymous namespace'::IntegerValidation`: VTable [0x00000000030D86F0, 0x0000000000000000 offset, 2 functions] `.?AVIntegerValidation@?A0x351b999c@CSScript@@` +`class CSScript::`anonymous namespace'::FloatValidation`: VTable [0x00000000030D8710, 0x0000000000000000 offset, 2 functions] `.?AVFloatValidation@?A0x351b999c@CSScript@@` +`class CSScript::`anonymous namespace'::NewScriptDlg`: VTable [0x00000000030D8730, 0x0000000000000000 offset, 2 functions] `.?AVNewScriptDlg@?A0x351b999c@CSScript@@` +`class CSScript::`anonymous namespace'::ScriptRenameDialog`: VTable [0x00000000030D89D0, 0x0000000000000000 offset, 2 functions] `.?AVScriptRenameDialog@?A0x351b999c@CSScript@@` +`struct BSScript::ILoader`: VTable [0x00000000030D9110, 0x0000000000000000 offset, 4 functions] `.?AUILoader@BSScript@@` +`struct BSScript::IObjectHandlePolicy`: VTable [0x00000000030D9140, 0x0000000000000000 offset, 12 functions] `.?AUIObjectHandlePolicy@BSScript@@` +`class BSScript::ObjectBindPolicy`: VTable [0x00000000030D91C0, 0x0000000000000000 offset, 13 functions] `.?AVObjectBindPolicy@BSScript@@` +`class BSScript::IFreezeQuery`: VTable [0x00000000030D9248, 0x0000000000000000 offset, 2 functions] `.?AVIFreezeQuery@BSScript@@` +`class BSScript::IStackCallbackSaveInterface`: VTable [0x00000000030D9268, 0x0000000000000000 offset, 3 functions] `.?AVIStackCallbackSaveInterface@BSScript@@` +`class BSScript::ISavePatcherInterface`: VTable [0x00000000030D9290, 0x0000000000000000 offset, 2 functions] `.?AVISavePatcherInterface@BSScript@@` +`class CSScript::Logger`: VTable [0x00000000030D92B0, 0x0000000000000000 offset, 3 functions] `.?AVLogger@CSScript@@` +`class CSScript::HandlePolicy`: VTable [0x00000000030D92F8, 0x0000000000000000 offset, 12 functions] `.?AVHandlePolicy@CSScript@@` +`class CSScript::ObjectBindPolicy`: VTable [0x00000000030D9378, 0x0000000000000000 offset, 13 functions] `.?AVObjectBindPolicy@CSScript@@` +`class BSScript::IStore`: VTable [0x00000000030D9400, 0x0000000000000000 offset, 12 functions] `.?AVIStore@BSScript@@` +`class CSScript::Store`: VTable [0x00000000030D9480, 0x0000000000000000 offset, 12 functions] `.?AVStore@CSScript@@` +`class ConstructionSetVM`: VTable [0x00000000030D9500, 0x0000000000000000 offset, 2 functions] `.?AVConstructionSetVM@@` +`class ConstructionSetVM`: VTable [0x00000000030D9520, 0x0000000000000008 offset, 3 functions] `.?AVConstructionSetVM@@` +`class std::_Func_impl_no_alloc,bool>`: VTable [0x00000000030D9960, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@_N$$V@std@@` +`class CSScript::ChooseScriptDlg`: VTable [0x00000000030D9D78, 0x0000000000000000 offset, 2 functions] `.?AVChooseScriptDlg@CSScript@@` +`class BSResource::LocationTraverser`: VTable [0x00000000030DA280, 0x0000000000000000 offset, 1 functions] `.?AVLocationTraverser@BSResource@@` +`class CSScript::CompileDlg`: VTable [0x00000000030DA298, 0x0000000000000000 offset, 2 functions] `.?AVCompileDlg@CSScript@@` +`class CSScript::PickScriptsToCompileDlg`: VTable [0x00000000030DA2B8, 0x0000000000000000 offset, 2 functions] `.?AVPickScriptsToCompileDlg@CSScript@@` +`class CSScript::`anonymous namespace'::ObtainFilenames`: VTable [0x00000000030DA2D8, 0x0000000000000000 offset, 1 functions] `.?AVObtainFilenames@?A0x729e4eba@CSScript@@` +`class CSScript::Internal::CompileScriptsThread`: VTable [0x00000000030DA2F0, 0x0000000000000000 offset, 3 functions] `.?AVCompileScriptsThread@Internal@CSScript@@` +`class CSScript::EditDlg`: VTable [0x00000000030DA690, 0x0000000000000000 offset, 2 functions] `.?AVEditDlg@CSScript@@` +`class CSScript::ErrorDlg`: VTable [0x00000000030DA8C0, 0x0000000000000000 offset, 2 functions] `.?AVErrorDlg@CSScript@@` +`class CSScript::IEditDlgUIHandler`: VTable [0x00000000030DB000, 0x0000000000000000 offset, 3 functions] `.?AVIEditDlgUIHandler@CSScript@@` +`class CSScript::FragmentDlg`: VTable [0x00000000030DB028, 0x0000000000000000 offset, 2 functions] `.?AVFragmentDlg@CSScript@@` +`class CSScript::`anonymous namespace'::EditDialogBase`: VTable [0x00000000030DB048, 0x0000000000000000 offset, 9 functions] `.?AVEditDialogBase@?A0x7c407119@CSScript@@` +`class CSScript::`anonymous namespace'::EditFragmentHandler`: VTable [0x00000000030DB0A8, 0x0000000000000000 offset, 3 functions] `.?AVEditFragmentHandler@?A0x7c407119@CSScript@@` +`class CSScript::`anonymous namespace'::EditResultHandler`: VTable [0x00000000030DB0D0, 0x0000000000000000 offset, 3 functions] `.?AVEditResultHandler@?A0x7c407119@CSScript@@` +`class CSScript::Internal::FragmentEditDlg`: VTable [0x00000000030DB0F8, 0x0000000000000000 offset, 9 functions] `.?AVFragmentEditDlg@Internal@CSScript@@` +`class CSScript::Internal::ResultScriptEditDlg`: VTable [0x00000000030DB188, 0x0000000000000000 offset, 9 functions] `.?AVResultScriptEditDlg@Internal@CSScript@@` +`class CSScript::Internal::AdvancedFragmentDlg`: VTable [0x00000000030DB1E8, 0x0000000000000000 offset, 2 functions] `.?AVAdvancedFragmentDlg@Internal@CSScript@@` +`class CSScript::ListDlg`: VTable [0x00000000030DBEA0, 0x0000000000000000 offset, 2 functions] `.?AVListDlg@CSScript@@` +`class CSScript::`anonymous namespace'::ScriptUIHandler`: VTable [0x00000000030DBEE0, 0x0000000000000000 offset, 3 functions] `.?AVScriptUIHandler@?A0xfd52545f@CSScript@@` +`class CSScript::ModelessDialog`: VTable [0x00000000030DC7D0, 0x0000000000000000 offset, 2 functions] `.?AVModelessDialog@CSScript@@` +`class CSScript::Internal::ScriptManagerDlg`: VTable [0x00000000030DC7F0, 0x0000000000000000 offset, 2 functions] `.?AVScriptManagerDlg@Internal@CSScript@@` +`class CSScript::PropertiesDlg`: VTable [0x00000000030DDC70, 0x0000000000000000 offset, 2 functions] `.?AVPropertiesDlg@CSScript@@` +`class CSScript::`anonymous namespace'::NewPropertyDlg`: VTable [0x00000000030DDCE8, 0x0000000000000000 offset, 2 functions] `.?AVNewPropertyDlg@?A0x88e92593@CSScript@@` +`class CSScript::PropDlgInternal::BoolEditPane`: VTable [0x00000000030DDEA0, 0x0000000000000000 offset, 2 functions] `.?AVBoolEditPane@PropDlgInternal@CSScript@@` +`class CSScript::PropDlgInternal::EditPaneBase`: VTable [0x00000000030DDEC0, 0x0000000000000000 offset, 2 functions] `.?AVEditPaneBase@PropDlgInternal@CSScript@@` +`class CSScript::PropDlgInternal::IntEditPane`: VTable [0x00000000030DDEE0, 0x0000000000000000 offset, 2 functions] `.?AVIntEditPane@PropDlgInternal@CSScript@@` +`class CSScript::PropDlgInternal::FloatEditPane`: VTable [0x00000000030DDF10, 0x0000000000000000 offset, 2 functions] `.?AVFloatEditPane@PropDlgInternal@CSScript@@` +`class CSScript::PropDlgInternal::StringEditPane`: VTable [0x00000000030DDF40, 0x0000000000000000 offset, 2 functions] `.?AVStringEditPane@PropDlgInternal@CSScript@@` +`class CSScript::PropDlgInternal::ObjEditPane`: VTable [0x00000000030DDF70, 0x0000000000000000 offset, 2 functions] `.?AVObjEditPane@PropDlgInternal@CSScript@@` +`class CSScript::PropDlgInternal::AliasEditPane::ScriptFilterFunctor`: VTable [0x00000000030DDF90, 0x0000000000000000 offset, 2 functions] `.?AVScriptFilterFunctor@AliasEditPane@PropDlgInternal@CSScript@@` +`class CSScript::PropDlgInternal::AliasEditPane`: VTable [0x00000000030DDFB0, 0x0000000000000000 offset, 2 functions] `.?AVAliasEditPane@PropDlgInternal@CSScript@@` +`class CSScript::PropDlgInternal::RefEditPane`: VTable [0x00000000030DDFD0, 0x0000000000000000 offset, 2 functions] `.?AVRefEditPane@PropDlgInternal@CSScript@@` +`class CSScript::PropDlgInternal::ArrayEditPane`: VTable [0x00000000030DDFF0, 0x0000000000000000 offset, 2 functions] `.?AVArrayEditPane@PropDlgInternal@CSScript@@` +`class CSScript::Internal::ScriptUseInfoDlg`: VTable [0x00000000030DE4F8, 0x0000000000000000 offset, 2 functions] `.?AVScriptUseInfoDlg@Internal@CSScript@@` +`class BSPerforce::IErrorLogger`: VTable [0x00000000030DE7C0, 0x0000000000000000 offset, 2 functions] `.?AVIErrorLogger@BSPerforce@@` +`class BSPerforce::ILoginInterface`: VTable [0x00000000030DE7E0, 0x0000000000000000 offset, 3 functions] `.?AVILoginInterface@BSPerforce@@` +`class CSPerforce::PerforceInternal::ErrorLogger`: VTable [0x00000000030DE808, 0x0000000000000000 offset, 2 functions] `.?AVErrorLogger@PerforceInternal@CSPerforce@@` +`class CSPerforce::PerforceInternal::LoginInterface`: VTable [0x00000000030DE838, 0x0000000000000000 offset, 3 functions] `.?AVLoginInterface@PerforceInternal@CSPerforce@@` +`class CSPerforce::Perforce`: VTable [0x00000000030DE860, 0x0000000000000000 offset, 1 functions] `.?AVPerforce@CSPerforce@@` +`class std::exception`: VTable [0x00000000030E1450, 0x0000000000000000 offset, 2 functions] `.?AVexception@std@@` +`class Json::CharReader::Factory`: VTable [0x00000000030E14A0, 0x0000000000000000 offset, 2 functions] `.?AVFactory@CharReader@Json@@` +`class Json::CharReader`: VTable [0x00000000030E14C0, 0x0000000000000000 offset, 2 functions] `.?AVCharReader@Json@@` +`class Json::CharReaderBuilder`: VTable [0x00000000030E14E0, 0x0000000000000000 offset, 2 functions] `.?AVCharReaderBuilder@Json@@` +`class Json::StreamWriter::Factory`: VTable [0x00000000030E1500, 0x0000000000000000 offset, 2 functions] `.?AVFactory@StreamWriter@Json@@` +`class Json::StreamWriter`: VTable [0x00000000030E1520, 0x0000000000000000 offset, 2 functions] `.?AVStreamWriter@Json@@` +`class Json::StreamWriterBuilder`: VTable [0x00000000030E1540, 0x0000000000000000 offset, 2 functions] `.?AVStreamWriterBuilder@Json@@` +`class Json::Writer`: VTable [0x00000000030E1560, 0x0000000000000000 offset, 2 functions] `.?AVWriter@Json@@` +`class Json::StyledWriter`: VTable [0x00000000030E1580, 0x0000000000000000 offset, 2 functions] `.?AVStyledWriter@Json@@` +`class Json::OurCharReader`: VTable [0x00000000030E1A58, 0x0000000000000000 offset, 2 functions] `.?AVOurCharReader@Json@@` +`class Json::Exception`: VTable [0x00000000030E1CD8, 0x0000000000000000 offset, 2 functions] `.?AVException@Json@@` +`class Json::RuntimeError`: VTable [0x00000000030E1CF8, 0x0000000000000000 offset, 2 functions] `.?AVRuntimeError@Json@@` +`class Json::LogicError`: VTable [0x00000000030E1D18, 0x0000000000000000 offset, 2 functions] `.?AVLogicError@Json@@` +`struct Json::BuiltStyledStreamWriter`: VTable [0x00000000030E2628, 0x0000000000000000 offset, 2 functions] `.?AUBuiltStyledStreamWriter@Json@@` +`class hkaDefaultAnimationControl`: VTable [0x00000000030E6A88, 0x0000000000000000 offset, 14 functions] `.?AVhkaDefaultAnimationControl@@` +`class hkaDefaultAnimationControlMapperData`: VTable [0x00000000030E6B18, 0x0000000000000000 offset, 3 functions] `.?AVhkaDefaultAnimationControlMapperData@@` +`class hkaFootPlacementIkSolver`: VTable [0x00000000030E6D00, 0x0000000000000000 offset, 3 functions] `.?AVhkaFootPlacementIkSolver@@` +`class hkaAnimationControl`: VTable [0x00000000030E6D40, 0x0000000000000000 offset, 14 functions] `.?AVhkaAnimationControl@@` +`class hkaSkeletonMapper`: VTable [0x00000000030E6E20, 0x0000000000000000 offset, 3 functions] `.?AVhkaSkeletonMapper@@` +`class hkMemoryAllocator`: VTable [0x00000000030E7120, 0x0000000000000000 offset, 11 functions] `.?AVhkMemoryAllocator@@` +`class hkLifoAllocator`: VTable [0x00000000030E7198, 0x0000000000000000 offset, 11 functions] `.?AVhkLifoAllocator@@` +`struct hkContainerTempAllocator::Allocator`: VTable [0x00000000030E7210, 0x0000000000000000 offset, 11 functions] `.?AUAllocator@hkContainerTempAllocator@@` +`struct hkContainerHeapAllocator::Allocator`: VTable [0x00000000030E7288, 0x0000000000000000 offset, 11 functions] `.?AUAllocator@hkContainerHeapAllocator@@` +`struct hkContainerDebugAllocator::Allocator`: VTable [0x00000000030E7300, 0x0000000000000000 offset, 11 functions] `.?AUAllocator@hkContainerDebugAllocator@@` +`class hkReferencedObjectLock`: VTable [0x00000000030E7878, 0x0000000000000000 offset, 3 functions] `.?AVhkReferencedObjectLock@@` +`class hkErrStream`: VTable [0x00000000030E82B0, 0x0000000000000000 offset, 3 functions] `.?AVhkErrStream@@` +`class hkOstream`: VTable [0x00000000030E84E8, 0x0000000000000000 offset, 3 functions] `.?AVhkOstream@@` +`class hkMemoryTrackStreamWriter`: VTable [0x00000000030E8510, 0x0000000000000000 offset, 10 functions] `.?AVhkMemoryTrackStreamWriter@@` +`class hkArrayStreamWriter`: VTable [0x00000000030E8580, 0x0000000000000000 offset, 10 functions] `.?AVhkArrayStreamWriter@@` +`class hkLocalFrame`: VTable [0x00000000030EC860, 0x0000000000000000 offset, 15 functions] `.?AVhkLocalFrame@@` +`class hkLocalFrameGroup`: VTable [0x00000000030EC900, 0x0000000000000000 offset, 3 functions] `.?AVhkLocalFrameGroup@@` +`class hkSimpleLocalFrame`: VTable [0x00000000030EC928, 0x0000000000000000 offset, 15 functions] `.?AVhkSimpleLocalFrame@@` +`class hkBufferedStreamReader`: VTable [0x00000000030ECB70, 0x0000000000000000 offset, 13 functions] `.?AVhkBufferedStreamReader@@` +`class hkBufferedStreamWriter`: VTable [0x00000000030ECBF8, 0x0000000000000000 offset, 9 functions] `.?AVhkBufferedStreamWriter@@` +`class hkSeekableStreamReader`: VTable [0x00000000030ECC88, 0x0000000000000000 offset, 12 functions] `.?AVhkSeekableStreamReader@@` +`class hkStdioStreamReader`: VTable [0x00000000030ECD08, 0x0000000000000000 offset, 12 functions] `.?AVhkStdioStreamReader@@` +`class hkStdioStreamWriter`: VTable [0x00000000030ECD88, 0x0000000000000000 offset, 10 functions] `.?AVhkStdioStreamWriter@@` +`class hkMemoryTrackStreamReader`: VTable [0x00000000030ECDF8, 0x0000000000000000 offset, 12 functions] `.?AVhkMemoryTrackStreamReader@@` +`class hkCrcStreamWriter`: VTable [0x00000000030ECEE8, 0x0000000000000000 offset, 9 functions] `.?AV?$hkCrcStreamWriter@I$0ONLIIDCA@@@` +`class hkCrc32StreamWriter`: VTable [0x00000000030ECF48, 0x0000000000000000 offset, 9 functions] `.?AVhkCrc32StreamWriter@@` +`class hkStatisticsCollector`: VTable [0x00000000030ECFA8, 0x0000000000000000 offset, 8 functions] `.?AVhkStatisticsCollector@@` +`class hkStackTracer`: VTable [0x00000000030ED3C8, 0x0000000000000000 offset, 3 functions] `.?AVhkStackTracer@@` +`class hkDummySingleton`: VTable [0x00000000030ED900, 0x0000000000000000 offset, 4 functions] `.?AVhkDummySingleton@@` +`class hkTrackerSerializableScanSnapshot`: VTable [0x00000000030ED948, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerSerializableScanSnapshot@@` +`class hkTrackerTypeTreeTextCache`: VTable [0x00000000030ED970, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerTypeTreeTextCache@@` +`class hkOArchive`: VTable [0x00000000030ED998, 0x0000000000000000 offset, 3 functions] `.?AVhkOArchive@@` +`class hkDefaultError`: VTable [0x00000000030ED9C0, 0x0000000000000000 offset, 10 functions] `.?AVhkDefaultError@@` +`class hkSocket::ReaderAdapter`: VTable [0x00000000030EDA98, 0x0000000000000000 offset, 12 functions] `.?AVReaderAdapter@hkSocket@@` +`class hkSocket::WriterAdapter`: VTable [0x00000000030EDB18, 0x0000000000000000 offset, 9 functions] `.?AVWriterAdapter@hkSocket@@` +`class hkSocket`: VTable [0x00000000030EDB78, 0x0000000000000000 offset, 12 functions] `.?AVhkSocket@@` +`class hkTrackerScanSnapshot`: VTable [0x00000000030EDBF8, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerScanSnapshot@@` +`class hkBsdSocket`: VTable [0x00000000030EDD20, 0x0000000000000000 offset, 12 functions] `.?AVhkBsdSocket@@` +`class hkTrackerTypeTreeCache`: VTable [0x00000000030EDF08, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerTypeTreeCache@@` +`class hkMemoryTracker`: VTable [0x00000000030EE288, 0x0000000000000000 offset, 9 functions] `.?AVhkMemoryTracker@@` +`class hkDefaultMemoryTracker`: VTable [0x00000000030EE2E8, 0x0000000000000000 offset, 9 functions] `.?AVhkDefaultMemoryTracker@@` +`class hkMemorySystem`: VTable [0x00000000030EE368, 0x0000000000000000 offset, 23 functions] `.?AVhkMemorySystem@@` +`class hkDummyMemoryTrackerImpl`: VTable [0x00000000030EE4A0, 0x0000000000000000 offset, 9 functions] `.?AVhkDummyMemoryTrackerImpl@@` +`class hkTrackerTypeLayout`: VTable [0x00000000030EE500, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerTypeLayout@@` +`class hkTrackerLayoutHandler`: VTable [0x00000000030EE528, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerLayoutHandler@@` +`class hkTrackerLayoutCalculator`: VTable [0x00000000030EE570, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerLayoutCalculator@@` +`class hkTrackerArrayLayoutHandler`: VTable [0x00000000030EE598, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerArrayLayoutHandler@@` +`class hkTrackerRefPtrLayoutHandler`: VTable [0x00000000030EE5E0, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerRefPtrLayoutHandler@@` +`class hkTrackerStringPtrLayoutHandler`: VTable [0x00000000030EE628, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerStringPtrLayoutHandler@@` +`class hkTrackerCachedHashMapLayoutHandler`: VTable [0x00000000030EE670, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerCachedHashMapLayoutHandler@@` +`class hkTrackerStringMapLayoutHandler`: VTable [0x00000000030EE6B8, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerStringMapLayoutHandler@@` +`class hkbRagdollDriver`: VTable [0x00000000030EE830, 0x0000000000000000 offset, 3 functions] `.?AVhkbRagdollDriver@@` +`class hkbBindable`: VTable [0x00000000030EE858, 0x0000000000000000 offset, 4 functions] `.?AVhkbBindable@@` +`class hkbNode`: VTable [0x00000000030EE888, 0x0000000000000000 offset, 23 functions] `.?AVhkbNode@@` +`class hkbGenerator`: VTable [0x00000000030EE970, 0x0000000000000000 offset, 28 functions] `.?AVhkbGenerator@@` +`class hkbVariableValueSet`: VTable [0x00000000030EEA88, 0x0000000000000000 offset, 3 functions] `.?AVhkbVariableValueSet@@` +`class hkbBehaviorGraph::GlobalTransitionData`: VTable [0x00000000030EEAB0, 0x0000000000000000 offset, 3 functions] `.?AVGlobalTransitionData@hkbBehaviorGraph@@` +`class hkbBehaviorGraph`: VTable [0x00000000030EEAD8, 0x0000000000000000 offset, 28 functions] `.?AVhkbBehaviorGraph@@` +`class hkbNodeInternalStateInfo`: VTable [0x00000000030EEBF0, 0x0000000000000000 offset, 3 functions] `.?AVhkbNodeInternalStateInfo@@` +`class hkbAnimationBindingSet`: VTable [0x00000000030EF0B8, 0x0000000000000000 offset, 3 functions] `.?AVhkbAnimationBindingSet@@` +`class hkbCharacter`: VTable [0x00000000030EF0E0, 0x0000000000000000 offset, 5 functions] `.?AVhkbCharacter@@` +`class hkpAllCdPointCollector`: VTable [0x00000000030EF120, 0x0000000000000000 offset, 3 functions] `.?AVhkpAllCdPointCollector@@` +`class hkbBindableCollector`: VTable [0x00000000030EF168, 0x0000000000000000 offset, 2 functions] `.?AVhkbBindableCollector@@` +`class hkbBindable::CacheBindablesCollector`: VTable [0x00000000030EF188, 0x0000000000000000 offset, 2 functions] `.?AVCacheBindablesCollector@hkbBindable@@` +`class hkbNode::BoundVariablesCollector`: VTable [0x00000000030EF1A8, 0x0000000000000000 offset, 2 functions] `.?AVBoundVariablesCollector@hkbNode@@` +`class hkbAttachmentSetup`: VTable [0x00000000031106D8, 0x0000000000000000 offset, 3 functions] `.?AVhkbAttachmentSetup@@` +`class hkbEventPayload`: VTable [0x0000000003110760, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventPayload@@` +`class hkbRealEventPayload`: VTable [0x0000000003110788, 0x0000000000000000 offset, 3 functions] `.?AVhkbRealEventPayload@@` +`class hkbIntEventPayload`: VTable [0x00000000031107B0, 0x0000000000000000 offset, 3 functions] `.?AVhkbIntEventPayload@@` +`class hkbStringEventPayload`: VTable [0x00000000031107D8, 0x0000000000000000 offset, 3 functions] `.?AVhkbStringEventPayload@@` +`class hkbNamedEventPayload`: VTable [0x0000000003110800, 0x0000000000000000 offset, 3 functions] `.?AVhkbNamedEventPayload@@` +`class hkbNamedRealEventPayload`: VTable [0x0000000003110828, 0x0000000000000000 offset, 3 functions] `.?AVhkbNamedRealEventPayload@@` +`class hkbNamedIntEventPayload`: VTable [0x0000000003110850, 0x0000000000000000 offset, 3 functions] `.?AVhkbNamedIntEventPayload@@` +`class hkbNamedStringEventPayload`: VTable [0x0000000003110878, 0x0000000000000000 offset, 3 functions] `.?AVhkbNamedStringEventPayload@@` +`class hkbEventPayloadList`: VTable [0x00000000031108A0, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventPayloadList@@` +`class hkbVariableBindingSet`: VTable [0x00000000031108C8, 0x0000000000000000 offset, 3 functions] `.?AVhkbVariableBindingSet@@` +`class hkbHandle`: VTable [0x00000000031108F0, 0x0000000000000000 offset, 3 functions] `.?AVhkbHandle@@` +`class hkbTransitionEffect`: VTable [0x0000000003110918, 0x0000000000000000 offset, 33 functions] `.?AVhkbTransitionEffect@@` +`class hkbProjectStringData`: VTable [0x0000000003110A60, 0x0000000000000000 offset, 3 functions] `.?AVhkbProjectStringData@@` +`class hkbBehaviorGraphStringData`: VTable [0x0000000003110C70, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorGraphStringData@@` +`class hkbBehaviorGraphData`: VTable [0x0000000003110C98, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorGraphData@@` +`class hkbBehaviorGraphInternalState`: VTable [0x0000000003110D00, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorGraphInternalState@@` +`class hkbBoneIndexArray`: VTable [0x0000000003110E00, 0x0000000000000000 offset, 4 functions] `.?AVhkbBoneIndexArray@@` +`class hkbBoneWeightArray`: VTable [0x0000000003110E60, 0x0000000000000000 offset, 4 functions] `.?AVhkbBoneWeightArray@@` +`class hkbCharacterStringData`: VTable [0x0000000003110EE0, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterStringData@@` +`class hkbFootIkDriverInfo`: VTable [0x0000000003110F08, 0x0000000000000000 offset, 3 functions] `.?AVhkbFootIkDriverInfo@@` +`class hkbHandIkDriverInfo`: VTable [0x0000000003110F30, 0x0000000000000000 offset, 3 functions] `.?AVhkbHandIkDriverInfo@@` +`class hkbMirroredSkeletonInfo`: VTable [0x0000000003110F58, 0x0000000000000000 offset, 3 functions] `.?AVhkbMirroredSkeletonInfo@@` +`class hkbCondition`: VTable [0x00000000031110C8, 0x0000000000000000 offset, 4 functions] `.?AVhkbCondition@@` +`class hkbCompiledExpressionSet`: VTable [0x00000000031110F8, 0x0000000000000000 offset, 3 functions] `.?AVhkbCompiledExpressionSet@@` +`class hkbExpressionCondition`: VTable [0x0000000003111120, 0x0000000000000000 offset, 4 functions] `.?AVhkbExpressionCondition@@` +`class hkbStringCondition`: VTable [0x0000000003111190, 0x0000000000000000 offset, 4 functions] `.?AVhkbStringCondition@@` +`class hkbBehaviorReferenceGenerator`: VTable [0x00000000031115B8, 0x0000000000000000 offset, 28 functions] `.?AVhkbBehaviorReferenceGenerator@@` +`class hkbBlenderGeneratorChild`: VTable [0x0000000003111720, 0x0000000000000000 offset, 4 functions] `.?AVhkbBlenderGeneratorChild@@` +`class hkbBlenderGenerator`: VTable [0x0000000003111750, 0x0000000000000000 offset, 28 functions] `.?AVhkbBlenderGenerator@@` +`class hkbBlenderGeneratorInternalState`: VTable [0x0000000003111948, 0x0000000000000000 offset, 3 functions] `.?AVhkbBlenderGeneratorInternalState@@` +`class hkbClipTriggerArray`: VTable [0x00000000031119C0, 0x0000000000000000 offset, 3 functions] `.?AVhkbClipTriggerArray@@` +`class hkbClipGeneratorInternalState`: VTable [0x0000000003111B38, 0x0000000000000000 offset, 3 functions] `.?AVhkbClipGeneratorInternalState@@` +`class hkbRegisteredGenerator`: VTable [0x0000000003111BB0, 0x0000000000000000 offset, 4 functions] `.?AVhkbRegisteredGenerator@@` +`class hkbManualSelectorGenerator`: VTable [0x0000000003111C20, 0x0000000000000000 offset, 28 functions] `.?AVhkbManualSelectorGenerator@@` +`class hkbManualSelectorGeneratorInternalState`: VTable [0x0000000003111D80, 0x0000000000000000 offset, 3 functions] `.?AVhkbManualSelectorGeneratorInternalState@@` +`class hkbModifier`: VTable [0x0000000003111E10, 0x0000000000000000 offset, 25 functions] `.?AVhkbModifier@@` +`class hkbModifierGenerator`: VTable [0x0000000003111F10, 0x0000000000000000 offset, 28 functions] `.?AVhkbModifierGenerator@@` +`class hkbPoseMatchingGenerator`: VTable [0x0000000003112068, 0x0000000000000000 offset, 28 functions] `.?AVhkbPoseMatchingGenerator@@` +`class hkbPoseMatchingGeneratorInternalState`: VTable [0x00000000031121D8, 0x0000000000000000 offset, 3 functions] `.?AVhkbPoseMatchingGeneratorInternalState@@` +`class hkbReferencePoseGenerator`: VTable [0x0000000003112260, 0x0000000000000000 offset, 28 functions] `.?AVhkbReferencePoseGenerator@@` +`class hkbAttachmentModifier`: VTable [0x0000000003112478, 0x0000000000000000 offset, 25 functions] `.?AVhkbAttachmentModifier@@` +`class hkbAttributeModifier`: VTable [0x00000000031125B8, 0x0000000000000000 offset, 25 functions] `.?AVhkbAttributeModifier@@` +`class hkbCharacterControllerModifier`: VTable [0x00000000031127A0, 0x0000000000000000 offset, 25 functions] `.?AVhkbCharacterControllerModifier@@` +`class hkbCharacterControllerModifierInternalState`: VTable [0x0000000003112948, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterControllerModifierInternalState@@` +`class hkbCombineTransformsModifier`: VTable [0x00000000031129E0, 0x0000000000000000 offset, 25 functions] `.?AVhkbCombineTransformsModifier@@` +`class hkbCombineTransformsModifierInternalState`: VTable [0x0000000003112B30, 0x0000000000000000 offset, 3 functions] `.?AVhkbCombineTransformsModifierInternalState@@` +`class hkbComputeDirectionModifier`: VTable [0x0000000003112BC8, 0x0000000000000000 offset, 25 functions] `.?AVhkbComputeDirectionModifier@@` +`class hkbComputeDirectionModifierInternalState`: VTable [0x0000000003112D18, 0x0000000000000000 offset, 3 functions] `.?AVhkbComputeDirectionModifierInternalState@@` +`class hkbComputeRotationFromAxisAngleModifier`: VTable [0x0000000003112DB0, 0x0000000000000000 offset, 25 functions] `.?AVhkbComputeRotationFromAxisAngleModifier@@` +`class hkbComputeRotationFromAxisAngleModifierInternalState`: VTable [0x0000000003112F18, 0x0000000000000000 offset, 3 functions] `.?AVhkbComputeRotationFromAxisAngleModifierInternalState@@` +`class hkbComputeRotationToTargetModifier`: VTable [0x0000000003112FC0, 0x0000000000000000 offset, 25 functions] `.?AVhkbComputeRotationToTargetModifier@@` +`class hkbComputeRotationToTargetModifierInternalState`: VTable [0x0000000003113120, 0x0000000000000000 offset, 3 functions] `.?AVhkbComputeRotationToTargetModifierInternalState@@` +`class hkbDampingModifier`: VTable [0x00000000031131C8, 0x0000000000000000 offset, 25 functions] `.?AVhkbDampingModifier@@` +`class hkbDampingModifierInternalState`: VTable [0x00000000031132F8, 0x0000000000000000 offset, 3 functions] `.?AVhkbDampingModifierInternalState@@` +`class hkbModifierWrapper`: VTable [0x0000000003113370, 0x0000000000000000 offset, 25 functions] `.?AVhkbModifierWrapper@@` +`class hkbDelayedModifier`: VTable [0x0000000003113470, 0x0000000000000000 offset, 25 functions] `.?AVhkbDelayedModifier@@` +`class hkbDelayedModifierInternalState`: VTable [0x00000000031135A0, 0x0000000000000000 offset, 3 functions] `.?AVhkbDelayedModifierInternalState@@` +`class hkbDetectCloseToGroundModifier`: VTable [0x0000000003113618, 0x0000000000000000 offset, 25 functions] `.?AVhkbDetectCloseToGroundModifier@@` +`class hkbDetectCloseToGroundModifierInternalState`: VTable [0x0000000003113768, 0x0000000000000000 offset, 3 functions] `.?AVhkbDetectCloseToGroundModifierInternalState@@` +`class hkbExpressionDataArray`: VTable [0x0000000003113800, 0x0000000000000000 offset, 3 functions] `.?AVhkbExpressionDataArray@@` +`class hkbEvaluateExpressionModifier`: VTable [0x0000000003113828, 0x0000000000000000 offset, 25 functions] `.?AVhkbEvaluateExpressionModifier@@` +`class hkbEvaluateExpressionModifierInternalState`: VTable [0x0000000003113A70, 0x0000000000000000 offset, 3 functions] `.?AVhkbEvaluateExpressionModifierInternalState@@` +`class hkbEvaluateHandleModifier`: VTable [0x0000000003113B08, 0x0000000000000000 offset, 25 functions] `.?AVhkbEvaluateHandleModifier@@` +`class hkbEventDrivenModifier`: VTable [0x0000000003113CA8, 0x0000000000000000 offset, 25 functions] `.?AVhkbEventDrivenModifier@@` +`class hkbEventDrivenModifierInternalState`: VTable [0x0000000003113DE8, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventDrivenModifierInternalState@@` +`class hkbEventRangeDataArray`: VTable [0x0000000003113E70, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventRangeDataArray@@` +`class hkbEventsFromRangeModifier`: VTable [0x0000000003113E98, 0x0000000000000000 offset, 25 functions] `.?AVhkbEventsFromRangeModifier@@` +`class hkbEventsFromRangeModifierInternalState`: VTable [0x0000000003114050, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventsFromRangeModifierInternalState@@` +`class hkbFootIkControlsModifier`: VTable [0x0000000003114120, 0x0000000000000000 offset, 25 functions] `.?AVhkbFootIkControlsModifier@@` +`class hkbFootIkModifier`: VTable [0x00000000031142E0, 0x0000000000000000 offset, 25 functions] `.?AVhkbFootIkModifier@@` +`class hkbGetHandleOnBoneModifier`: VTable [0x0000000003114508, 0x0000000000000000 offset, 25 functions] `.?AVhkbGetHandleOnBoneModifier@@` +`class hkbGetUpModifier`: VTable [0x0000000003114650, 0x0000000000000000 offset, 25 functions] `.?AVhkbGetUpModifier@@` +`class hkbGetUpModifierInternalState`: VTable [0x0000000003114780, 0x0000000000000000 offset, 3 functions] `.?AVhkbGetUpModifierInternalState@@` +`class hkbGetWorldFromModelModifier`: VTable [0x00000000031147F8, 0x0000000000000000 offset, 25 functions] `.?AVhkbGetWorldFromModelModifier@@` +`class hkbGetWorldFromModelModifierInternalState`: VTable [0x0000000003114948, 0x0000000000000000 offset, 3 functions] `.?AVhkbGetWorldFromModelModifierInternalState@@` +`class hkbHandIkControlsModifier`: VTable [0x0000000003114A28, 0x0000000000000000 offset, 25 functions] `.?AVhkbHandIkControlsModifier@@` +`class hkbHandIkModifier`: VTable [0x0000000003114BB8, 0x0000000000000000 offset, 25 functions] `.?AVhkbHandIkModifier@@` +`class hkbModifierList`: VTable [0x0000000003114D40, 0x0000000000000000 offset, 25 functions] `.?AVhkbModifierList@@` +`class hkbLookAtModifier`: VTable [0x0000000003114E70, 0x0000000000000000 offset, 25 functions] `.?AVhkbLookAtModifier@@` +`class hkbLookAtModifierInternalState`: VTable [0x0000000003114FA0, 0x0000000000000000 offset, 3 functions] `.?AVhkbLookAtModifierInternalState@@` +`class hkbMirrorModifier`: VTable [0x0000000003115018, 0x0000000000000000 offset, 25 functions] `.?AVhkbMirrorModifier@@` +`class hkbMoveCharacterModifier`: VTable [0x0000000003115148, 0x0000000000000000 offset, 25 functions] `.?AVhkbMoveCharacterModifier@@` +`class hkbMoveCharacterModifierInternalState`: VTable [0x0000000003115288, 0x0000000000000000 offset, 3 functions] `.?AVhkbMoveCharacterModifierInternalState@@` +`class hkbProxyModifier`: VTable [0x0000000003115310, 0x0000000000000000 offset, 25 functions] `.?AVhkbProxyModifier@@` +`class hkbExtractRagdollPoseModifier`: VTable [0x00000000031155E8, 0x0000000000000000 offset, 25 functions] `.?AVhkbExtractRagdollPoseModifier@@` +`class hkbKeyframeBonesModifier`: VTable [0x0000000003115738, 0x0000000000000000 offset, 25 functions] `.?AVhkbKeyframeBonesModifier@@` +`class hkbPoweredRagdollControlsModifier`: VTable [0x0000000003115928, 0x0000000000000000 offset, 25 functions] `.?AVhkbPoweredRagdollControlsModifier@@` +`class hkbRigidBodyRagdollControlsModifier`: VTable [0x0000000003115AD0, 0x0000000000000000 offset, 25 functions] `.?AVhkbRigidBodyRagdollControlsModifier@@` +`class hkbRotateCharacterModifier`: VTable [0x0000000003115C70, 0x0000000000000000 offset, 25 functions] `.?AVhkbRotateCharacterModifier@@` +`class hkbRotateCharacterModifierInternalState`: VTable [0x0000000003115DB8, 0x0000000000000000 offset, 3 functions] `.?AVhkbRotateCharacterModifierInternalState@@` +`class hkbSenseHandleModifier`: VTable [0x0000000003115E48, 0x0000000000000000 offset, 25 functions] `.?AVhkbSenseHandleModifier@@` +`class hkbSetWorldFromModelModifier`: VTable [0x0000000003116060, 0x0000000000000000 offset, 25 functions] `.?AVhkbSetWorldFromModelModifier@@` +`class hkbTimerModifier`: VTable [0x00000000031161B0, 0x0000000000000000 offset, 25 functions] `.?AVhkbTimerModifier@@` +`class hkbTimerModifierInternalState`: VTable [0x00000000031162E0, 0x0000000000000000 offset, 3 functions] `.?AVhkbTimerModifierInternalState@@` +`class hkbTransformVectorModifier`: VTable [0x0000000003116358, 0x0000000000000000 offset, 25 functions] `.?AVhkbTransformVectorModifier@@` +`class hkbTransformVectorModifierInternalState`: VTable [0x00000000031164A0, 0x0000000000000000 offset, 3 functions] `.?AVhkbTransformVectorModifierInternalState@@` +`class hkbTwistModifier`: VTable [0x0000000003116530, 0x0000000000000000 offset, 25 functions] `.?AVhkbTwistModifier@@` +`class hkbSequenceStringData`: VTable [0x00000000031167B0, 0x0000000000000000 offset, 3 functions] `.?AVhkbSequenceStringData@@` +`class hkbSequence`: VTable [0x00000000031167D8, 0x0000000000000000 offset, 25 functions] `.?AVhkbSequence@@` +`class hkbSequenceInternalState`: VTable [0x00000000031168F8, 0x0000000000000000 offset, 3 functions] `.?AVhkbSequenceInternalState@@` +`class hkbSequencedData`: VTable [0x00000000031169A0, 0x0000000000000000 offset, 4 functions] `.?AVhkbSequencedData@@` +`class hkbEventSequencedData`: VTable [0x00000000031169D0, 0x0000000000000000 offset, 4 functions] `.?AVhkbEventSequencedData@@` +`class hkbRealVariableSequencedData`: VTable [0x0000000003116A00, 0x0000000000000000 offset, 4 functions] `.?AVhkbRealVariableSequencedData@@` +`class hkbBoolVariableSequencedData`: VTable [0x0000000003116A30, 0x0000000000000000 offset, 4 functions] `.?AVhkbBoolVariableSequencedData@@` +`class hkbIntVariableSequencedData`: VTable [0x0000000003116A60, 0x0000000000000000 offset, 4 functions] `.?AVhkbIntVariableSequencedData@@` +`class hkbStateListener`: VTable [0x0000000003116D68, 0x0000000000000000 offset, 7 functions] `.?AVhkbStateListener@@` +`class hkbStateMachine::TransitionInfoArray`: VTable [0x0000000003116DE8, 0x0000000000000000 offset, 3 functions] `.?AVTransitionInfoArray@hkbStateMachine@@` +`class hkbStateMachine::EventPropertyArray`: VTable [0x0000000003116E10, 0x0000000000000000 offset, 3 functions] `.?AVEventPropertyArray@hkbStateMachine@@` +`class hkbStateMachine::StateInfo`: VTable [0x0000000003116E38, 0x0000000000000000 offset, 4 functions] `.?AVStateInfo@hkbStateMachine@@` +`class hkbStateMachineInternalState`: VTable [0x0000000003117298, 0x0000000000000000 offset, 3 functions] `.?AVhkbStateMachineInternalState@@` +`class hkbBlendingTransitionEffect`: VTable [0x0000000003117310, 0x0000000000000000 offset, 39 functions] `.?AVhkbBlendingTransitionEffect@@` +`class hkbBlendingTransitionEffectInternalState`: VTable [0x0000000003117500, 0x0000000000000000 offset, 3 functions] `.?AVhkbBlendingTransitionEffectInternalState@@` +`class hkbGeneratorTransitionEffect`: VTable [0x0000000003117598, 0x0000000000000000 offset, 33 functions] `.?AVhkbGeneratorTransitionEffect@@` +`class hkbGeneratorTransitionEffectInternalState`: VTable [0x0000000003117730, 0x0000000000000000 offset, 3 functions] `.?AVhkbGeneratorTransitionEffectInternalState@@` +`class hkbClipGenerator`: VTable [0x0000000003117AD0, 0x0000000000000000 offset, 28 functions] `.?AVhkbClipGenerator@@` +`class hkbStateMachine`: VTable [0x0000000003117F58, 0x0000000000000000 offset, 28 functions] `.?AVhkbStateMachine@@` +`class hkbAnimationBindingWithTriggers`: VTable [0x0000000003118518, 0x0000000000000000 offset, 3 functions] `.?AVhkbAnimationBindingWithTriggers@@` +`class hkbFootIkDriver`: VTable [0x0000000003118570, 0x0000000000000000 offset, 3 functions] `.?AVhkbFootIkDriver@@` +`class hkbHandIkDriver`: VTable [0x0000000003118630, 0x0000000000000000 offset, 3 functions] `.?AVhkbHandIkDriver@@` +`class hkbWorld`: VTable [0x0000000003118690, 0x0000000000000000 offset, 3 functions] `.?AVhkbWorld@@` +`class hkbSceneModifier`: VTable [0x00000000031186B8, 0x0000000000000000 offset, 4 functions] `.?AVhkbSceneModifier@@` +`class hkbFootIkSceneModifier`: VTable [0x00000000031186E8, 0x0000000000000000 offset, 4 functions] `.?AVhkbFootIkSceneModifier@@` +`class hkbHandIkSceneModifier`: VTable [0x0000000003118718, 0x0000000000000000 offset, 4 functions] `.?AVhkbHandIkSceneModifier@@` +`class hkbHandIkFixupSceneModifier`: VTable [0x0000000003118748, 0x0000000000000000 offset, 4 functions] `.?AVhkbHandIkFixupSceneModifier@@` +`class hkbCharacterSetup`: VTable [0x0000000003118830, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterSetup@@` +`class hkbProjectData`: VTable [0x0000000003118858, 0x0000000000000000 offset, 3 functions] `.?AVhkbProjectData@@` +`class hkbCharacterData`: VTable [0x00000000031188A0, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterData@@` +`class hkpCharacterControllerCinfo`: VTable [0x0000000003119580, 0x0000000000000000 offset, 3 functions] `.?AVhkpCharacterControllerCinfo@@` +`class hkpCharacterProxyCinfo`: VTable [0x00000000031195A8, 0x0000000000000000 offset, 3 functions] `.?AVhkpCharacterProxyCinfo@@` +`class hkbAttachmentSceneModifier`: VTable [0x0000000003119DD0, 0x0000000000000000 offset, 4 functions] `.?AVhkbAttachmentSceneModifier@@` +`class hkbAttachmentFixupSceneModifier`: VTable [0x0000000003119E00, 0x0000000000000000 offset, 4 functions] `.?AVhkbAttachmentFixupSceneModifier@@` +`class hkbRagdollSceneModifier`: VTable [0x0000000003119E30, 0x0000000000000000 offset, 4 functions] `.?AVhkbRagdollSceneModifier@@` +`class hkbCharacterControllerSceneModifier`: VTable [0x0000000003119E60, 0x0000000000000000 offset, 4 functions] `.?AVhkbCharacterControllerSceneModifier@@` +`class hkLocalFrameCollector`: VTable [0x000000000311A400, 0x0000000000000000 offset, 4 functions] `.?AVhkLocalFrameCollector@@` +`class hkbClosestLocalFrameCollector`: VTable [0x000000000311A430, 0x0000000000000000 offset, 4 functions] `.?AVhkbClosestLocalFrameCollector@@` +`class hkbDefaultRaycastInterface`: VTable [0x000000000311A5F0, 0x0000000000000000 offset, 3 functions] `.?AVhkbDefaultRaycastInterface@@` +`class hkbDefaultRaycastInterface`: VTable [0x000000000311A618, 0x0000000000000010 offset, 3 functions] `.?AVhkbDefaultRaycastInterface@@` +`class hkbSymbolIdMap`: VTable [0x000000000311A650, 0x0000000000000000 offset, 3 functions] `.?AVhkbSymbolIdMap@@` +`class hkgpConvexHull`: VTable [0x000000000311A720, 0x0000000000000000 offset, 3 functions] `.?AVhkgpConvexHull@@` +`class hkgpAbstractMesh`: VTable [0x000000000311A748, 0x0000000000000000 offset, 4 functions] `.?AV?$hkgpAbstractMesh@UEdge@hkgpConvexHullImpl@@UVertex@2@UTriangle@2@UhkContainerHeapAllocator@@@@` +`class hkAabbTree`: VTable [0x000000000311ABE0, 0x0000000000000000 offset, 1 functions] `.?AV?$hkAabbTree@UhkAabbTreeAabb@hkAabbTreeData@@I@@` +`struct hkAabbTreeQueryUtils::Collector`: VTable [0x000000000311ABF8, 0x0000000000000000 offset, 2 functions] `.?AUCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` +`struct hkAabbTreeQueryUtils::ClosestPointCollector`: VTable [0x000000000311AC18, 0x0000000000000000 offset, 2 functions] `.?AUClosestPointCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` +`struct hkGeometryProcessingInternals::NearestFeaturePolicy`: VTable [0x000000000311AC38, 0x0000000000000000 offset, 2 functions] `.?AUNearestFeaturePolicy@hkGeometryProcessingInternals@@` +`struct hkGeometryProcessing::IFunction`: VTable [0x000000000311AC90, 0x0000000000000000 offset, 2 functions] `.?AU?$IFunction@VhkVector4@@M@hkGeometryProcessing@@` +`struct hkGeometryProcessing::ConstFunction >`: VTable [0x000000000311ACB0, 0x0000000000000000 offset, 2 functions] `.?AU?$ConstFunction@U?$IFunction@VhkVector4@@M@hkGeometryProcessing@@@hkGeometryProcessing@@` +`class hkAabbTree`: VTable [0x000000000311ACF0, 0x0000000000000000 offset, 1 functions] `.?AV?$hkAabbTree@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` +`class hkAabbTree`: VTable [0x000000000311AD08, 0x0000000000000000 offset, 1 functions] `.?AV?$hkAabbTree@UhkAabbTreeAabb@hkAabbTreeData@@G@@` +`class hkAabbTree`: VTable [0x000000000311AD20, 0x0000000000000000 offset, 1 functions] `.?AV?$hkAabbTree@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::TreeTreeCollector`: VTable [0x000000000311AD50, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::Collector`: VTable [0x000000000311AD70, 0x0000000000000000 offset, 2 functions] `.?AUCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::ClosestPointCollector`: VTable [0x000000000311AD90, 0x0000000000000000 offset, 2 functions] `.?AUClosestPointCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::TreeTreeNodePairCollector`: VTable [0x000000000311ADB0, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeNodePairCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::AllHitsCollector`: VTable [0x000000000311ADD0, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::AllHitsNodeCollector`: VTable [0x000000000311ADF0, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsNodeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::TreeTreeCollector`: VTable [0x000000000311AE10, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::Collector`: VTable [0x000000000311AE30, 0x0000000000000000 offset, 2 functions] `.?AUCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::ClosestPointCollector`: VTable [0x000000000311AE50, 0x0000000000000000 offset, 2 functions] `.?AUClosestPointCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::TreeTreeNodePairCollector`: VTable [0x000000000311AE70, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeNodePairCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::AllHitsCollector`: VTable [0x000000000311AE90, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::AllHitsNodeCollector`: VTable [0x000000000311AEB0, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsNodeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` +`struct hkAabbTreeQueryUtils::TreeTreeCollector`: VTable [0x000000000311AED0, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` +`struct hkAabbTreeQueryUtils::TreeTreeNodePairCollector`: VTable [0x000000000311AEF0, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeNodePairCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` +`struct hkAabbTreeQueryUtils::AllHitsCollector`: VTable [0x000000000311AF10, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` +`struct hkAabbTreeQueryUtils::AllHitsNodeCollector`: VTable [0x000000000311AF30, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsNodeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` +`struct hkAabbTreeQueryUtils::TreeTreeCollector`: VTable [0x000000000311AF50, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` +`struct hkAabbTreeQueryUtils::Collector`: VTable [0x000000000311AF70, 0x0000000000000000 offset, 2 functions] `.?AUCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` +`struct hkAabbTreeQueryUtils::ClosestPointCollector`: VTable [0x000000000311AF90, 0x0000000000000000 offset, 2 functions] `.?AUClosestPointCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` +`struct hkAabbTreeQueryUtils::TreeTreeNodePairCollector`: VTable [0x000000000311AFB0, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeNodePairCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` +`struct hkAabbTreeQueryUtils::AllHitsCollector`: VTable [0x000000000311AFD0, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` +`struct hkAabbTreeQueryUtils::AllHitsNodeCollector`: VTable [0x000000000311AFF0, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsNodeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` +`class hkgpTriangulatorBase`: VTable [0x000000000311B040, 0x0000000000000000 offset, 3 functions] `.?AVhkgpTriangulatorBase@@` +`struct hkgpJobQueue::IJob`: VTable [0x000000000311B068, 0x0000000000000000 offset, 2 functions] `.?AUIJob@hkgpJobQueue@@` +`class hkgpAbstractMesh`: VTable [0x000000000311B088, 0x0000000000000000 offset, 4 functions] `.?AV?$hkgpAbstractMesh@UEdge@hkgpMeshBase@@UVertex@2@UTriangle@2@UhkContainerHeapAllocator@@@@` +`class hkgpMesh::IConvexOverlap::IConvexShape`: VTable [0x000000000311B0B8, 0x0000000000000000 offset, 4 functions] `.?AVIConvexShape@IConvexOverlap@hkgpMesh@@` +`class hkgpMesh::IConvexOverlap`: VTable [0x000000000311B0E8, 0x0000000000000000 offset, 3 functions] `.?AVIConvexOverlap@hkgpMesh@@` +`struct hkgpMesh::TriangleShape`: VTable [0x000000000311B110, 0x0000000000000000 offset, 4 functions] `.?AUTriangleShape@hkgpMesh@@` +`struct hkgpMesh::ExternShape`: VTable [0x000000000311B140, 0x0000000000000000 offset, 4 functions] `.?AUExternShape@hkgpMesh@@` +`struct hkgpMesh::CollideShapeTriangle`: VTable [0x000000000311B170, 0x0000000000000000 offset, 2 functions] `.?AUCollideShapeTriangle@hkgpMesh@@` +`struct hkgpMesh::NearestFeaturePolicy`: VTable [0x000000000311B190, 0x0000000000000000 offset, 2 functions] `.?AUNearestFeaturePolicy@hkgpMesh@@` +`class hkgpMesh`: VTable [0x000000000311B1B0, 0x0000000000000000 offset, 4 functions] `.?AVhkgpMesh@@` +`struct hkGskShape`: VTable [0x000000000311B290, 0x0000000000000000 offset, 3 functions] `.?AUhkGskShape@@` +`class hkgpAbstractMesh,struct hkgpTriangulatorBase::SparseEdgeDataPolicy,struct hkContainerHeapAllocator>,-1,4,15,0>::Edge,struct hkgpTriangulatorType,struct hkgpTriangulatorBase::SparseEdgeDataPolicy,struct hkContainerHeapAllocator>,-1,4,15,0>::Vertex,struct hkgpTriangulatorType,struct hkgpTriangulatorBase::SparseEdgeDataPolicy,struct hkContainerHeapAllocator>,-1,4,15,0>::Triangle,struct hkContainerHeapAllocator>`: VTable [0x000000000311B368, 0x0000000000000000 offset, 4 functions] `.?AV?$hkgpAbstractMesh@UEdge@?$hkgpTriangulatorType@UhkContainerHeapAllocator@@UVertexBase@hkgpTriangulatorBase@@UTriangleBase@3@U?$DefaultEdgeData@UhkContainerHeapAllocator@@@3@U?$SparseEdgeDataPolicy@U?$DefaultEdgeData@UhkContainerHeapAllocator@@@hkgpTriangulatorBase@@UhkContainerHeapAllocator@@@3@$0?0$03$0P@$0A@@@UVertex@2@UTriangle@2@UhkContainerHeapAllocator@@@@` +`class hkgpTriangulatorType,struct hkgpTriangulatorBase::SparseEdgeDataPolicy,struct hkContainerHeapAllocator>,-1,4,15,0>`: VTable [0x000000000311B398, 0x0000000000000000 offset, 3 functions] `.?AV?$hkgpTriangulatorType@UhkContainerHeapAllocator@@UVertexBase@hkgpTriangulatorBase@@UTriangleBase@3@U?$DefaultEdgeData@UhkContainerHeapAllocator@@@3@U?$SparseEdgeDataPolicy@U?$DefaultEdgeData@UhkContainerHeapAllocator@@@hkgpTriangulatorBase@@UhkContainerHeapAllocator@@@3@$0?0$03$0P@$0A@@@` +`struct hkgpMeshInternals::SimpleCollector`: VTable [0x000000000311B3C0, 0x0000000000000000 offset, 2 functions] `.?AUSimpleCollector@hkgpMeshInternals@@` +`struct hkgpMeshInternals::TriangleOverlap`: VTable [0x000000000311B3E0, 0x0000000000000000 offset, 2 functions] `.?AUTriangleOverlap@hkgpMeshInternals@@` +`struct hkgpMeshInternals::RayCaster`: VTable [0x000000000311B400, 0x0000000000000000 offset, 2 functions] `.?AURayCaster@hkgpMeshInternals@@` +`struct IConvexOverlapImpl::ShapeBridge`: VTable [0x000000000311B420, 0x0000000000000000 offset, 3 functions] `.?AUShapeBridge@IConvexOverlapImpl@@` +`struct IConvexOverlapImpl`: VTable [0x000000000311B448, 0x0000000000000000 offset, 3 functions] `.?AUIConvexOverlapImpl@@` +`struct hkgpJobQueue::Box`: VTable [0x000000000311B710, 0x0000000000000000 offset, 2 functions] `.?AU?$Box@UHandle@ConcaveEdgeJob@hkgpMeshInternals@@@hkgpJobQueue@@` +`class hkVtableClassRegistry`: VTable [0x000000000311B988, 0x0000000000000000 offset, 6 functions] `.?AVhkVtableClassRegistry@@` +`class hkDynamicClassNameRegistry`: VTable [0x000000000311B9D0, 0x0000000000000000 offset, 11 functions] `.?AVhkDynamicClassNameRegistry@@` +`class hkDefaultBuiltinTypeRegistry`: VTable [0x000000000311BA60, 0x0000000000000000 offset, 8 functions] `.?AVhkDefaultBuiltinTypeRegistry@@` +`class hkDefaultClassNameRegistry`: VTable [0x000000000311BAD8, 0x0000000000000000 offset, 11 functions] `.?AVhkDefaultClassNameRegistry@@` +`class hkBuiltinTypeRegistry`: VTable [0x000000000311BB68, 0x0000000000000000 offset, 8 functions] `.?AVhkBuiltinTypeRegistry@@` +`class hkClassNameRegistry`: VTable [0x000000000311BBC0, 0x0000000000000000 offset, 6 functions] `.?AVhkClassNameRegistry@@` +`class hkTypeInfoRegistry`: VTable [0x000000000311BC08, 0x0000000000000000 offset, 8 functions] `.?AVhkTypeInfoRegistry@@` +`class hkObjectCopier`: VTable [0x000000000311C868, 0x0000000000000000 offset, 6 functions] `.?AVhkObjectCopier@@` +`class hkStaticClassNameRegistry`: VTable [0x000000000311C9F0, 0x0000000000000000 offset, 6 functions] `.?AVhkStaticClassNameRegistry@@` +`class hkResourceBase`: VTable [0x000000000311CA38, 0x0000000000000000 offset, 5 functions] `.?AVhkResourceBase@@` +`class hkResourceHandle`: VTable [0x000000000311CA78, 0x0000000000000000 offset, 14 functions] `.?AVhkResourceHandle@@` +`class hkResourceContainer`: VTable [0x000000000311CB08, 0x0000000000000000 offset, 16 functions] `.?AVhkResourceContainer@@` +`class hkResourceMap`: VTable [0x000000000311CBB0, 0x0000000000000000 offset, 2 functions] `.?AVhkResourceMap@@` +`class hkMemoryResourceHandle`: VTable [0x000000000311CBD0, 0x0000000000000000 offset, 14 functions] `.?AVhkMemoryResourceHandle@@` +`class hkMemoryResourceContainer`: VTable [0x000000000311CC60, 0x0000000000000000 offset, 16 functions] `.?AVhkMemoryResourceContainer@@` +`class hkContainerResourceMap`: VTable [0x000000000311CD08, 0x0000000000000000 offset, 2 functions] `.?AVhkContainerResourceMap@@` +`class hkDebugDisplay`: VTable [0x000000000311CE30, 0x0000000000000000 offset, 3 functions] `.?AVhkDebugDisplay@@` +`class hkpShapeContainer`: VTable [0x000000000311D028, 0x0000000000000000 offset, 7 functions] `.?AVhkpShapeContainer@@` +`class hkpSingleShapeContainer`: VTable [0x000000000311D078, 0x0000000000000000 offset, 7 functions] `.?AVhkpSingleShapeContainer@@` +`class hkpBvShape`: VTable [0x000000000311D0C8, 0x0000000000000000 offset, 11 functions] `.?AVhkpBvShape@@` +`class hkpSphereRepShape`: VTable [0x000000000311D330, 0x0000000000000000 offset, 13 functions] `.?AVhkpSphereRepShape@@` +`class hkpConvexShape`: VTable [0x000000000311D3B8, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexShape@@` +`class hkpSphereShape`: VTable [0x000000000311D470, 0x0000000000000000 offset, 18 functions] `.?AVhkpSphereShape@@` +`class hkpCapsuleShape`: VTable [0x000000000311D570, 0x0000000000000000 offset, 18 functions] `.?AVhkpCapsuleShape@@` +`class hkpCollidableCollidableFilter`: VTable [0x000000000311D638, 0x0000000000000000 offset, 2 functions] `.?AVhkpCollidableCollidableFilter@@` +`class hkpRayCollidableFilter`: VTable [0x000000000311D658, 0x0000000000000000 offset, 2 functions] `.?AVhkpRayCollidableFilter@@` +`class hkpShapeCollectionFilter`: VTable [0x000000000311D678, 0x0000000000000000 offset, 4 functions] `.?AVhkpShapeCollectionFilter@@` +`class hkpRayShapeCollectionFilter`: VTable [0x000000000311D6A8, 0x0000000000000000 offset, 2 functions] `.?AVhkpRayShapeCollectionFilter@@` +`class hkpGroupFilter`: VTable [0x000000000311D6C8, 0x0000000000000000 offset, 5 functions] `.?AVhkpGroupFilter@@` +`class hkpGroupFilter`: VTable [0x000000000311D708, 0x0000000000000010 offset, 2 functions] `.?AVhkpGroupFilter@@` +`class hkpGroupFilter`: VTable [0x000000000311D728, 0x0000000000000018 offset, 4 functions] `.?AVhkpGroupFilter@@` +`class hkpGroupFilter`: VTable [0x000000000311D758, 0x0000000000000020 offset, 2 functions] `.?AVhkpGroupFilter@@` +`class hkpGroupFilter`: VTable [0x000000000311D778, 0x0000000000000028 offset, 2 functions] `.?AVhkpGroupFilter@@` +`class hkpConvexListFilter`: VTable [0x000000000311FEE0, 0x0000000000000000 offset, 4 functions] `.?AVhkpConvexListFilter@@` +`class hkpDefaultConvexListFilter`: VTable [0x000000000311FF10, 0x0000000000000000 offset, 4 functions] `.?AVhkpDefaultConvexListFilter@@` +`class hkpCollisionFilter`: VTable [0x000000000311FF88, 0x0000000000000000 offset, 4 functions] `.?AVhkpCollisionFilter@@` +`class hkpCollisionFilter`: VTable [0x000000000311FFB8, 0x0000000000000010 offset, 2 functions] `.?AVhkpCollisionFilter@@` +`class hkpCollisionFilter`: VTable [0x000000000311FFD8, 0x0000000000000018 offset, 4 functions] `.?AVhkpCollisionFilter@@` +`class hkpCollisionFilter`: VTable [0x0000000003120008, 0x0000000000000020 offset, 2 functions] `.?AVhkpCollisionFilter@@` +`class hkpCollisionFilter`: VTable [0x0000000003120028, 0x0000000000000028 offset, 2 functions] `.?AVhkpCollisionFilter@@` +`class hkpCollisionFilterList`: VTable [0x0000000003120078, 0x0000000000000000 offset, 4 functions] `.?AVhkpCollisionFilterList@@` +`class hkpCollisionFilterList`: VTable [0x00000000031200A8, 0x0000000000000010 offset, 2 functions] `.?AVhkpCollisionFilterList@@` +`class hkpCollisionFilterList`: VTable [0x00000000031200C8, 0x0000000000000018 offset, 4 functions] `.?AVhkpCollisionFilterList@@` +`class hkpCollisionFilterList`: VTable [0x00000000031200F8, 0x0000000000000020 offset, 2 functions] `.?AVhkpCollisionFilterList@@` +`class hkpCollisionFilterList`: VTable [0x0000000003120118, 0x0000000000000028 offset, 2 functions] `.?AVhkpCollisionFilterList@@` +`class hkpNullCollisionFilter`: VTable [0x0000000003120178, 0x0000000000000000 offset, 4 functions] `.?AVhkpNullCollisionFilter@@` +`class hkpNullCollisionFilter`: VTable [0x00000000031201A8, 0x0000000000000010 offset, 2 functions] `.?AVhkpNullCollisionFilter@@` +`class hkpNullCollisionFilter`: VTable [0x00000000031201C8, 0x0000000000000018 offset, 4 functions] `.?AVhkpNullCollisionFilter@@` +`class hkpNullCollisionFilter`: VTable [0x00000000031201F8, 0x0000000000000020 offset, 2 functions] `.?AVhkpNullCollisionFilter@@` +`class hkpNullCollisionFilter`: VTable [0x0000000003120218, 0x0000000000000028 offset, 2 functions] `.?AVhkpNullCollisionFilter@@` +`class hkpMoppModifier`: VTable [0x0000000003120408, 0x0000000000000000 offset, 3 functions] `.?AVhkpMoppModifier@@` +`class hkpRemoveTerminalsMoppModifier`: VTable [0x0000000003120430, 0x0000000000000000 offset, 3 functions] `.?AVhkpRemoveTerminalsMoppModifier@@` +`class hkpRemoveTerminalsMoppModifier`: VTable [0x0000000003120458, 0x0000000000000010 offset, 3 functions] `.?AVhkpRemoveTerminalsMoppModifier@@` +`class hkpBvTreeShape`: VTable [0x00000000031204D0, 0x0000000000000000 offset, 13 functions] `.?AVhkpBvTreeShape@@` +`class hkMoppBvTreeShapeBase`: VTable [0x0000000003120558, 0x0000000000000000 offset, 14 functions] `.?AVhkMoppBvTreeShapeBase@@` +`class hkpMoppBvTreeShape`: VTable [0x00000000031205E8, 0x0000000000000000 offset, 14 functions] `.?AVhkpMoppBvTreeShape@@` +`class hkpConvexTransformShapeBase`: VTable [0x00000000031206E0, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexTransformShapeBase@@` +`class hkpBoxShape`: VTable [0x0000000003120798, 0x0000000000000000 offset, 18 functions] `.?AVhkpBoxShape@@` +`class hkpConvexTransformShape`: VTable [0x00000000031208A0, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexTransformShape@@` +`class hkpConvexTranslateShape`: VTable [0x0000000003120998, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexTranslateShape@@` +`class hkpConvexVerticesConnectivity`: VTable [0x0000000003120A90, 0x0000000000000000 offset, 4 functions] `.?AVhkpConvexVerticesConnectivity@@` +`class hkpTriangleShape`: VTable [0x0000000003120B70, 0x0000000000000000 offset, 18 functions] `.?AVhkpTriangleShape@@` +`class hkpConvexListShape`: VTable [0x0000000003120CC8, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexListShape@@` +`class hkpConvexListShape`: VTable [0x0000000003120D80, 0x0000000000000028 offset, 7 functions] `.?AVhkpConvexListShape@@` +`class hkpMultiSphereShape`: VTable [0x0000000003120E00, 0x0000000000000000 offset, 13 functions] `.?AVhkpMultiSphereShape@@` +`class hkpMultiRayShape`: VTable [0x0000000003120EF8, 0x0000000000000000 offset, 11 functions] `.?AVhkpMultiRayShape@@` +`class hkpTransformShape`: VTable [0x0000000003120FF8, 0x0000000000000000 offset, 11 functions] `.?AVhkpTransformShape@@` +`class hkpShapeInfo`: VTable [0x0000000003121148, 0x0000000000000000 offset, 3 functions] `.?AVhkpShapeInfo@@` +`class hkpShapeCollection`: VTable [0x00000000031211C0, 0x0000000000000000 offset, 13 functions] `.?AVhkpShapeCollection@@` +`class hkpShapeCollection`: VTable [0x0000000003121248, 0x0000000000000020 offset, 7 functions] `.?AVhkpShapeCollection@@` +`class hkpListShape`: VTable [0x0000000003121298, 0x0000000000000000 offset, 13 functions] `.?AVhkpListShape@@` +`class hkpListShape`: VTable [0x0000000003121320, 0x0000000000000020 offset, 7 functions] `.?AVhkpListShape@@` +`class hkpRemoveTerminalsMoppModifier2`: VTable [0x00000000031213B0, 0x0000000000000000 offset, 3 functions] `.?AVhkpRemoveTerminalsMoppModifier2@@` +`class hkpRemoveTerminalsMoppModifier2`: VTable [0x00000000031213D8, 0x0000000000000010 offset, 3 functions] `.?AVhkpRemoveTerminalsMoppModifier2@@` +`class hkpCylinderShape`: VTable [0x0000000003121558, 0x0000000000000000 offset, 18 functions] `.?AVhkpCylinderShape@@` +`class hkpContactMgrFactory`: VTable [0x0000000003121758, 0x0000000000000000 offset, 4 functions] `.?AVhkpContactMgrFactory@@` +`class hkpContactMgr`: VTable [0x00000000031217A8, 0x0000000000000000 offset, 10 functions] `.?AVhkpContactMgr@@` +`class hkpNullContactMgr`: VTable [0x0000000003121818, 0x0000000000000000 offset, 10 functions] `.?AVhkpNullContactMgr@@` +`class hkpNullContactMgrFactory`: VTable [0x0000000003121888, 0x0000000000000000 offset, 4 functions] `.?AVhkpNullContactMgrFactory@@` +`class hkpBroadPhaseListener`: VTable [0x00000000031218B8, 0x0000000000000000 offset, 3 functions] `.?AVhkpBroadPhaseListener@@` +`class hkpSimpleWorldRayCaster`: VTable [0x00000000031218E0, 0x0000000000000000 offset, 2 functions] `.?AVhkpSimpleWorldRayCaster@@` +`class hkpWorldLinearCaster`: VTable [0x0000000003121900, 0x0000000000000000 offset, 2 functions] `.?AVhkpWorldLinearCaster@@` +`class hkpWorld`: VTable [0x0000000003121920, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorld@@` +`class hkpPhantomBroadPhaseListener`: VTable [0x0000000003121948, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhantomBroadPhaseListener@@` +`class hkpPhantomBroadPhaseListener`: VTable [0x0000000003121970, 0x0000000000000010 offset, 3 functions] `.?AVhkpPhantomBroadPhaseListener@@` +`class hkpBroadPhaseBorderListener`: VTable [0x0000000003121998, 0x0000000000000000 offset, 3 functions] `.?AVhkpBroadPhaseBorderListener@@` +`class hkpBroadPhaseBorderListener`: VTable [0x00000000031219C0, 0x0000000000000010 offset, 3 functions] `.?AVhkpBroadPhaseBorderListener@@` +`class hkpWorldPostSimulationListener`: VTable [0x00000000031219E8, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldPostSimulationListener@@` +`class hkpConstraintListener`: VTable [0x0000000003121A10, 0x0000000000000000 offset, 7 functions] `.?AVhkpConstraintListener@@` +`class hkpCollisionCallbackUtil`: VTable [0x0000000003121A60, 0x0000000000000000 offset, 5 functions] `.?AVhkpCollisionCallbackUtil@@` +`class hkpCollisionCallbackUtil`: VTable [0x0000000003121AA0, 0x0000000000000020 offset, 7 functions] `.?AVhkpCollisionCallbackUtil@@` +`class hkpWorldObject`: VTable [0x00000000031221D0, 0x0000000000000000 offset, 6 functions] `.?AVhkpWorldObject@@` +`class hkpMotion`: VTable [0x0000000003122218, 0x0000000000000000 offset, 26 functions] `.?AVhkpMotion@@` +`class hkpKeyframedRigidMotion`: VTable [0x0000000003122320, 0x0000000000000000 offset, 28 functions] `.?AVhkpKeyframedRigidMotion@@` +`class hkpMaxSizeMotion`: VTable [0x0000000003122438, 0x0000000000000000 offset, 28 functions] `.?AVhkpMaxSizeMotion@@` +`class hkpEntity`: VTable [0x0000000003122550, 0x0000000000000000 offset, 7 functions] `.?AVhkpEntity@@` +`class hkpFixedRigidMotion`: VTable [0x00000000031225A0, 0x0000000000000000 offset, 29 functions] `.?AVhkpFixedRigidMotion@@` +`class hkpSphereMotion`: VTable [0x00000000031226C0, 0x0000000000000000 offset, 26 functions] `.?AVhkpSphereMotion@@` +`class hkpBoxMotion`: VTable [0x00000000031227C8, 0x0000000000000000 offset, 26 functions] `.?AVhkpBoxMotion@@` +`class hkpThinBoxMotion`: VTable [0x00000000031228D0, 0x0000000000000000 offset, 26 functions] `.?AVhkpThinBoxMotion@@` +`class hkpCharacterMotion`: VTable [0x00000000031229D8, 0x0000000000000000 offset, 26 functions] `.?AVhkpCharacterMotion@@` +`class hkpRigidBody`: VTable [0x0000000003122BB0, 0x0000000000000000 offset, 8 functions] `.?AVhkpRigidBody@@` +`class hkpPhantom`: VTable [0x0000000003122C08, 0x0000000000000000 offset, 15 functions] `.?AVhkpPhantom@@` +`class hkpAabbPhantom`: VTable [0x0000000003122CA8, 0x0000000000000000 offset, 15 functions] `.?AVhkpAabbPhantom@@` +`class hkpConstraintInstance`: VTable [0x0000000003122DD0, 0x0000000000000000 offset, 7 functions] `.?AVhkpConstraintInstance@@` +`class hkpConstraintData`: VTable [0x0000000003122E20, 0x0000000000000000 offset, 19 functions] `.?AVhkpConstraintData@@` +`class hkpLimitedHingeConstraintData`: VTable [0x0000000003122EE0, 0x0000000000000000 offset, 19 functions] `.?AVhkpLimitedHingeConstraintData@@` +`class hkpRagdollConstraintData`: VTable [0x0000000003122FA0, 0x0000000000000000 offset, 19 functions] `.?AVhkpRagdollConstraintData@@` +`class hkpAction`: VTable [0x000000000312A878, 0x0000000000000000 offset, 8 functions] `.?AVhkpAction@@` +`class hkWorldMemoryAvailableWatchDog`: VTable [0x000000000312A930, 0x0000000000000000 offset, 6 functions] `.?AVhkWorldMemoryAvailableWatchDog@@` +`class hkpPairCollisionFilter`: VTable [0x000000000312A990, 0x0000000000000000 offset, 4 functions] `.?AVhkpPairCollisionFilter@@` +`class hkpPairCollisionFilter`: VTable [0x000000000312A9C0, 0x0000000000000010 offset, 2 functions] `.?AVhkpPairCollisionFilter@@` +`class hkpPairCollisionFilter`: VTable [0x000000000312A9E0, 0x0000000000000018 offset, 4 functions] `.?AVhkpPairCollisionFilter@@` +`class hkpPairCollisionFilter`: VTable [0x000000000312AA10, 0x0000000000000020 offset, 2 functions] `.?AVhkpPairCollisionFilter@@` +`class hkpPairCollisionFilter`: VTable [0x000000000312AA30, 0x0000000000000028 offset, 2 functions] `.?AVhkpPairCollisionFilter@@` +`class hkpConstraintCollisionFilter`: VTable [0x000000000312AA50, 0x0000000000000000 offset, 4 functions] `.?AVhkpConstraintCollisionFilter@@` +`class hkpConstraintCollisionFilter`: VTable [0x000000000312AA80, 0x0000000000000010 offset, 2 functions] `.?AVhkpConstraintCollisionFilter@@` +`class hkpConstraintCollisionFilter`: VTable [0x000000000312AAA0, 0x0000000000000018 offset, 4 functions] `.?AVhkpConstraintCollisionFilter@@` +`class hkpConstraintCollisionFilter`: VTable [0x000000000312AAD0, 0x0000000000000020 offset, 2 functions] `.?AVhkpConstraintCollisionFilter@@` +`class hkpConstraintCollisionFilter`: VTable [0x000000000312AAF0, 0x0000000000000028 offset, 2 functions] `.?AVhkpConstraintCollisionFilter@@` +`class hkpConstraintCollisionFilter`: VTable [0x000000000312AB10, 0x0000000000000060 offset, 7 functions] `.?AVhkpConstraintCollisionFilter@@` +`class hkpBallAndSocketConstraintData`: VTable [0x000000000312AD00, 0x0000000000000000 offset, 19 functions] `.?AVhkpBallAndSocketConstraintData@@` +`class hkpCogWheelConstraintData`: VTable [0x000000000312AE70, 0x0000000000000000 offset, 19 functions] `.?AVhkpCogWheelConstraintData@@` +`class hkpHingeConstraintData`: VTable [0x000000000312AFC0, 0x0000000000000000 offset, 19 functions] `.?AVhkpHingeConstraintData@@` +`class hkpParametricCurve`: VTable [0x000000000312B1C0, 0x0000000000000000 offset, 14 functions] `.?AVhkpParametricCurve@@` +`class hkpLinearParametricCurve`: VTable [0x000000000312B250, 0x0000000000000000 offset, 14 functions] `.?AVhkpLinearParametricCurve@@` +`class hkpPointToPathConstraintData`: VTable [0x000000000312B338, 0x0000000000000000 offset, 19 functions] `.?AVhkpPointToPathConstraintData@@` +`class hkpPointToPlaneConstraintData`: VTable [0x000000000312B460, 0x0000000000000000 offset, 19 functions] `.?AVhkpPointToPlaneConstraintData@@` +`class hkpPrismaticConstraintData`: VTable [0x000000000312B5D0, 0x0000000000000000 offset, 19 functions] `.?AVhkpPrismaticConstraintData@@` +`class hkpRackAndPinionConstraintData`: VTable [0x000000000312B730, 0x0000000000000000 offset, 19 functions] `.?AVhkpRackAndPinionConstraintData@@` +`class hkpStiffSpringConstraintData`: VTable [0x000000000312B930, 0x0000000000000000 offset, 19 functions] `.?AVhkpStiffSpringConstraintData@@` +`class hkpWheelConstraintData`: VTable [0x000000000312BA98, 0x0000000000000000 offset, 19 functions] `.?AVhkpWheelConstraintData@@` +`class hkpRotationalConstraintData`: VTable [0x000000000312BBE8, 0x0000000000000000 offset, 19 functions] `.?AVhkpRotationalConstraintData@@` +`class hkpHingeLimitsData`: VTable [0x000000000312BE38, 0x0000000000000000 offset, 19 functions] `.?AVhkpHingeLimitsData@@` +`class hkpRagdollLimitsData`: VTable [0x000000000312BF68, 0x0000000000000000 offset, 19 functions] `.?AVhkpRagdollLimitsData@@` +`class hkpConstraintChainInstance`: VTable [0x000000000312C178, 0x0000000000000000 offset, 7 functions] `.?AVhkpConstraintChainInstance@@` +`class hkpConstraintChainInstanceAction`: VTable [0x000000000312C210, 0x0000000000000000 offset, 8 functions] `.?AVhkpConstraintChainInstanceAction@@` +`class hkpConstraintMotor`: VTable [0x000000000312C408, 0x0000000000000000 offset, 4 functions] `.?AVhkpConstraintMotor@@` +`class hkpLimitedForceConstraintMotor`: VTable [0x000000000312C438, 0x0000000000000000 offset, 4 functions] `.?AVhkpLimitedForceConstraintMotor@@` +`class hkpCallbackConstraintMotor`: VTable [0x000000000312C468, 0x0000000000000000 offset, 4 functions] `.?AVhkpCallbackConstraintMotor@@` +`class hkpPositionConstraintMotor`: VTable [0x000000000312C510, 0x0000000000000000 offset, 4 functions] `.?AVhkpPositionConstraintMotor@@` +`class hkpSpringDamperConstraintMotor`: VTable [0x000000000312C588, 0x0000000000000000 offset, 4 functions] `.?AVhkpSpringDamperConstraintMotor@@` +`class hkpVelocityConstraintMotor`: VTable [0x000000000312C608, 0x0000000000000000 offset, 4 functions] `.?AVhkpVelocityConstraintMotor@@` +`class hkpPulleyConstraintData`: VTable [0x000000000312C6C0, 0x0000000000000000 offset, 19 functions] `.?AVhkpPulleyConstraintData@@` +`class hkpShapePhantom`: VTable [0x000000000312CCF8, 0x0000000000000000 offset, 19 functions] `.?AVhkpShapePhantom@@` +`class hkpCachingShapePhantom`: VTable [0x000000000312CDB8, 0x0000000000000000 offset, 19 functions] `.?AVhkpCachingShapePhantom@@` +`class hkpSimpleShapePhantom`: VTable [0x000000000312CEE0, 0x0000000000000000 offset, 19 functions] `.?AVhkpSimpleShapePhantom@@` +`class hkpDefaultWorldMemoryWatchDog`: VTable [0x000000000312D040, 0x0000000000000000 offset, 6 functions] `.?AVhkpDefaultWorldMemoryWatchDog@@` +`class hkpSimulation`: VTable [0x000000000312D100, 0x0000000000000000 offset, 19 functions] `.?AVhkpSimulation@@` +`class hkpPhysicsSystem`: VTable [0x000000000312D270, 0x0000000000000000 offset, 5 functions] `.?AVhkpPhysicsSystem@@` +`class hkpConstraintOwner`: VTable [0x000000000312D648, 0x0000000000000000 offset, 7 functions] `.?AVhkpConstraintOwner@@` +`class hkpEntityEntityBroadPhaseListener`: VTable [0x000000000312D720, 0x0000000000000000 offset, 3 functions] `.?AVhkpEntityEntityBroadPhaseListener@@` +`class hkpEntityEntityBroadPhaseListener`: VTable [0x000000000312D748, 0x0000000000000010 offset, 3 functions] `.?AVhkpEntityEntityBroadPhaseListener@@` +`class hkpSimulationIsland`: VTable [0x000000000312D770, 0x0000000000000000 offset, 7 functions] `.?AVhkpSimulationIsland@@` +`class hkpPhantomOverlapListener`: VTable [0x000000000312D878, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhantomOverlapListener@@` +`class hkpWorldDeletionListener`: VTable [0x000000000312D8A0, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldDeletionListener@@` +`class hkpBroadPhaseBorder`: VTable [0x000000000312D8C8, 0x0000000000000000 offset, 5 functions] `.?AVhkpBroadPhaseBorder@@` +`class hkpBroadPhaseBorder`: VTable [0x000000000312D908, 0x0000000000000010 offset, 3 functions] `.?AVhkpBroadPhaseBorder@@` +`class hkpBroadPhaseBorder`: VTable [0x000000000312D930, 0x0000000000000018 offset, 3 functions] `.?AVhkpBroadPhaseBorder@@` +`class hkpBroadPhaseBorder`: VTable [0x000000000312D958, 0x0000000000000020 offset, 3 functions] `.?AVhkpBroadPhaseBorder@@` +`class hkpDynamicsContactMgr`: VTable [0x000000000312D980, 0x0000000000000000 offset, 19 functions] `.?AVhkpDynamicsContactMgr@@` +`class hkpSimpleContactConstraintData`: VTable [0x000000000312DA40, 0x0000000000000000 offset, 21 functions] `.?AVhkpSimpleContactConstraintData@@` +`class hkpSimpleConstraintContactMgr::Factory`: VTable [0x000000000312DB18, 0x0000000000000000 offset, 4 functions] `.?AVFactory@hkpSimpleConstraintContactMgr@@` +`class hkpSimpleConstraintContactMgr`: VTable [0x000000000312DB48, 0x0000000000000000 offset, 20 functions] `.?AVhkpSimpleConstraintContactMgr@@` +`class hkpReportContactMgr::Factory`: VTable [0x000000000312DD18, 0x0000000000000000 offset, 4 functions] `.?AVFactory@hkpReportContactMgr@@` +`class hkpReportContactMgr`: VTable [0x000000000312DD48, 0x0000000000000000 offset, 19 functions] `.?AVhkpReportContactMgr@@` +`class hkpWorldMaintenanceMgr`: VTable [0x000000000312E0E0, 0x0000000000000000 offset, 6 functions] `.?AVhkpWorldMaintenanceMgr@@` +`class hkpDefaultWorldMaintenanceMgr`: VTable [0x000000000312E128, 0x0000000000000000 offset, 6 functions] `.?AVhkpDefaultWorldMaintenanceMgr@@` +`class hkpWorldExtension`: VTable [0x000000000312E1A0, 0x0000000000000000 offset, 5 functions] `.?AVhkpWorldExtension@@` +`class hkpEndOfStepCallbackUtil`: VTable [0x000000000312E1E0, 0x0000000000000000 offset, 3 functions] `.?AVhkpEndOfStepCallbackUtil@@` +`class hkpEndOfStepCallbackUtil`: VTable [0x000000000312E208, 0x0000000000000010 offset, 3 functions] `.?AVhkpEndOfStepCallbackUtil@@` +`class hkpClosestCdPointCollector`: VTable [0x000000000312E318, 0x0000000000000000 offset, 3 functions] `.?AVhkpClosestCdPointCollector@@` +`class hkpMalleableConstraintData`: VTable [0x000000000312E348, 0x0000000000000000 offset, 19 functions] `.?AVhkpMalleableConstraintData@@` +`class hkpBreakableConstraintData`: VTable [0x000000000312E408, 0x0000000000000000 offset, 19 functions] `.?AVhkpBreakableConstraintData@@` +`class hkpConstraintChainData`: VTable [0x000000000312E4C8, 0x0000000000000000 offset, 20 functions] `.?AVhkpConstraintChainData@@` +`class hkpBallSocketChainData`: VTable [0x000000000312E598, 0x0000000000000000 offset, 20 functions] `.?AVhkpBallSocketChainData@@` +`class hkpStiffSpringChainData`: VTable [0x000000000312E668, 0x0000000000000000 offset, 20 functions] `.?AVhkpStiffSpringChainData@@` +`class hkpGenericConstraintData`: VTable [0x000000000312E738, 0x0000000000000000 offset, 19 functions] `.?AVhkpGenericConstraintData@@` +`class hkpConvexPieceStreamData`: VTable [0x000000000312EB00, 0x0000000000000000 offset, 3 functions] `.?AVhkpConvexPieceStreamData@@` +`class hkpMouseSpringAction`: VTable [0x000000000312ECD0, 0x0000000000000000 offset, 8 functions] `.?AVhkpMouseSpringAction@@` +`class hkpBinaryAction`: VTable [0x0000000003132C08, 0x0000000000000000 offset, 8 functions] `.?AVhkpBinaryAction@@` +`class hkpAngularDashpotAction`: VTable [0x0000000003132C60, 0x0000000000000000 offset, 8 functions] `.?AVhkpAngularDashpotAction@@` +`class hkpDashpotAction`: VTable [0x0000000003132CF8, 0x0000000000000000 offset, 8 functions] `.?AVhkpDashpotAction@@` +`class hkpUnaryAction`: VTable [0x0000000003132D80, 0x0000000000000000 offset, 8 functions] `.?AVhkpUnaryAction@@` +`class hkpMotorAction`: VTable [0x0000000003132DD8, 0x0000000000000000 offset, 8 functions] `.?AVhkpMotorAction@@` +`class hkpReorientAction`: VTable [0x0000000003132EA0, 0x0000000000000000 offset, 8 functions] `.?AVhkpReorientAction@@` +`class hkpSpringAction`: VTable [0x0000000003132F28, 0x0000000000000000 offset, 8 functions] `.?AVhkpSpringAction@@` +`struct hkpCharacterRigidBodyCinfo`: VTable [0x0000000003133038, 0x0000000000000000 offset, 3 functions] `.?AUhkpCharacterRigidBodyCinfo@@` +`class hkpPoweredChainMapper`: VTable [0x0000000003133170, 0x0000000000000000 offset, 3 functions] `.?AVhkpPoweredChainMapper@@` +`class hkpConstrainedSystemFilter`: VTable [0x0000000003133278, 0x0000000000000000 offset, 4 functions] `.?AVhkpConstrainedSystemFilter@@` +`class hkpConstrainedSystemFilter`: VTable [0x00000000031332A8, 0x0000000000000010 offset, 2 functions] `.?AVhkpConstrainedSystemFilter@@` +`class hkpConstrainedSystemFilter`: VTable [0x00000000031332C8, 0x0000000000000018 offset, 4 functions] `.?AVhkpConstrainedSystemFilter@@` +`class hkpConstrainedSystemFilter`: VTable [0x00000000031332F8, 0x0000000000000020 offset, 2 functions] `.?AVhkpConstrainedSystemFilter@@` +`class hkpConstrainedSystemFilter`: VTable [0x0000000003133318, 0x0000000000000028 offset, 2 functions] `.?AVhkpConstrainedSystemFilter@@` +`class hkpConstrainedSystemFilter`: VTable [0x0000000003133338, 0x0000000000000048 offset, 7 functions] `.?AVhkpConstrainedSystemFilter@@` +`class hkpDisableEntityCollisionFilter`: VTable [0x00000000031333D0, 0x0000000000000000 offset, 4 functions] `.?AVhkpDisableEntityCollisionFilter@@` +`class hkpDisableEntityCollisionFilter`: VTable [0x0000000003133400, 0x0000000000000010 offset, 2 functions] `.?AVhkpDisableEntityCollisionFilter@@` +`class hkpDisableEntityCollisionFilter`: VTable [0x0000000003133420, 0x0000000000000018 offset, 4 functions] `.?AVhkpDisableEntityCollisionFilter@@` +`class hkpDisableEntityCollisionFilter`: VTable [0x0000000003133450, 0x0000000000000020 offset, 2 functions] `.?AVhkpDisableEntityCollisionFilter@@` +`class hkpDisableEntityCollisionFilter`: VTable [0x0000000003133470, 0x0000000000000028 offset, 2 functions] `.?AVhkpDisableEntityCollisionFilter@@` +`class hkpDisableEntityCollisionFilter`: VTable [0x0000000003133490, 0x0000000000000048 offset, 6 functions] `.?AVhkpDisableEntityCollisionFilter@@` +`class hkpGroupCollisionFilter`: VTable [0x0000000003133528, 0x0000000000000000 offset, 4 functions] `.?AVhkpGroupCollisionFilter@@` +`class hkpGroupCollisionFilter`: VTable [0x0000000003133558, 0x0000000000000010 offset, 2 functions] `.?AVhkpGroupCollisionFilter@@` +`class hkpGroupCollisionFilter`: VTable [0x0000000003133578, 0x0000000000000018 offset, 4 functions] `.?AVhkpGroupCollisionFilter@@` +`class hkpGroupCollisionFilter`: VTable [0x00000000031335A8, 0x0000000000000020 offset, 2 functions] `.?AVhkpGroupCollisionFilter@@` +`class hkpGroupCollisionFilter`: VTable [0x00000000031335C8, 0x0000000000000028 offset, 2 functions] `.?AVhkpGroupCollisionFilter@@` +`class hkpPhysicsSystemWithContacts`: VTable [0x0000000003133628, 0x0000000000000000 offset, 5 functions] `.?AVhkpPhysicsSystemWithContacts@@` +`struct hkpSerializedAgentNnEntry`: VTable [0x00000000031336B8, 0x0000000000000000 offset, 3 functions] `.?AUhkpSerializedAgentNnEntry@@` +`class hkpSerializedDisplayMarker`: VTable [0x0000000003133838, 0x0000000000000000 offset, 3 functions] `.?AVhkpSerializedDisplayMarker@@` +`class hkpSerializedDisplayMarkerList`: VTable [0x00000000031338A8, 0x0000000000000000 offset, 3 functions] `.?AVhkpSerializedDisplayMarkerList@@` +`class hkpSerializedDisplayRbTransforms`: VTable [0x0000000003133920, 0x0000000000000000 offset, 3 functions] `.?AVhkpSerializedDisplayRbTransforms@@` +`struct hkpDisplayBindingData::RigidBody`: VTable [0x0000000003133A20, 0x0000000000000000 offset, 3 functions] `.?AURigidBody@hkpDisplayBindingData@@` +`struct hkpDisplayBindingData::PhysicsSystem`: VTable [0x0000000003133A48, 0x0000000000000000 offset, 3 functions] `.?AUPhysicsSystem@hkpDisplayBindingData@@` +`struct hkpDisplayBindingData`: VTable [0x0000000003133A70, 0x0000000000000000 offset, 3 functions] `.?AUhkpDisplayBindingData@@` +`class hkpPhysicsData`: VTable [0x0000000003133B88, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhysicsData@@` +`class hkpCharacterProxy`: VTable [0x0000000003133DE8, 0x0000000000000000 offset, 5 functions] `.?AVhkpCharacterProxy@@` +`class hkpCharacterProxy`: VTable [0x0000000003133E28, 0x0000000000000010 offset, 6 functions] `.?AVhkpCharacterProxy@@` +`class hkpCharacterProxy`: VTable [0x0000000003133E70, 0x0000000000000018 offset, 5 functions] `.?AVhkpCharacterProxy@@` +`class hkpContactListener`: VTable [0x0000000003133FA0, 0x0000000000000000 offset, 7 functions] `.?AVhkpContactListener@@` +`class hkpTriggerVolume`: VTable [0x0000000003133FF0, 0x0000000000000000 offset, 5 functions] `.?AVhkpTriggerVolume@@` +`class hkpTriggerVolume`: VTable [0x0000000003134030, 0x0000000000000010 offset, 7 functions] `.?AVhkpTriggerVolume@@` +`class hkpTriggerVolume`: VTable [0x0000000003134080, 0x0000000000000018 offset, 3 functions] `.?AVhkpTriggerVolume@@` +`class hkpTriggerVolume`: VTable [0x00000000031340A8, 0x0000000000000020 offset, 6 functions] `.?AVhkpTriggerVolume@@` +`class hkpFirstPersonGun`: VTable [0x00000000031342F0, 0x0000000000000000 offset, 9 functions] `.?AVhkpFirstPersonGun@@` +`class hkpBallGun`: VTable [0x0000000003134350, 0x0000000000000000 offset, 9 functions] `.?AVhkpBallGun@@` +`class hkpGravityGun`: VTable [0x00000000031343E0, 0x0000000000000000 offset, 9 functions] `.?AVhkpGravityGun@@` +`class hkpMountedBallGun`: VTable [0x0000000003134490, 0x0000000000000000 offset, 9 functions] `.?AVhkpMountedBallGun@@` +`class hkpGunProjectile`: VTable [0x0000000003134520, 0x0000000000000000 offset, 6 functions] `.?AVhkpGunProjectile@@` +`class hkpGunProjectile`: VTable [0x0000000003134568, 0x0000000000000010 offset, 7 functions] `.?AVhkpGunProjectile@@` +`class hkpProjectileGun`: VTable [0x00000000031345B8, 0x0000000000000000 offset, 11 functions] `.?AVhkpProjectileGun@@` +`class hkpSaveContactPointsUtil::EntitySelector`: VTable [0x0000000003134990, 0x0000000000000000 offset, 2 functions] `.?AVEntitySelector@hkpSaveContactPointsUtil@@` +`class `anonymous namespace'::hkEntitySelectorAll`: VTable [0x00000000031349B0, 0x0000000000000000 offset, 2 functions] `.?AVhkEntitySelectorAll@?A0x7ce6448c@@` +`class `anonymous namespace'::hkEntitySelectorListed`: VTable [0x00000000031349D0, 0x0000000000000000 offset, 2 functions] `.?AVhkEntitySelectorListed@?A0x7ce6448c@@` +`class BSLimbIKModifierCastInfo`: VTable [0x00000000031349F0, 0x0000000000000000 offset, 1 functions] `.?AVBSLimbIKModifierCastInfo@@` +`class BSILimbIKModifierSingleton`: VTable [0x0000000003134A08, 0x0000000000000000 offset, 4 functions] `.?AVBSILimbIKModifierSingleton@@` +`class BGSGamebryoSequenceGenerator`: VTable [0x0000000003134A38, 0x0000000000000000 offset, 28 functions] `.?AVBGSGamebryoSequenceGenerator@@` +`class BSIStateManagerModifier::BSIStateManagerStateListener`: VTable [0x000000000313A158, 0x0000000000000000 offset, 7 functions] `.?AVBSIStateManagerStateListener@BSIStateManagerModifier@@` +`class BSIStateManagerModifier`: VTable [0x000000000313D600, 0x0000000000000000 offset, 25 functions] `.?AVBSIStateManagerModifier@@` +`class BSBoneSwitchGenerator`: VTable [0x000000000313D840, 0x0000000000000000 offset, 28 functions] `.?AVBSBoneSwitchGenerator@@` +`class BSBoneSwitchGeneratorBoneData`: VTable [0x000000000313DA68, 0x0000000000000000 offset, 4 functions] `.?AVBSBoneSwitchGeneratorBoneData@@` +`class BSCyclicBlendTransitionGenerator`: VTable [0x000000000313DA98, 0x0000000000000000 offset, 28 functions] `.?AVBSCyclicBlendTransitionGenerator@@` +`class BSOffsetAnimationGenerator`: VTable [0x000000000313DED8, 0x0000000000000000 offset, 28 functions] `.?AVBSOffsetAnimationGenerator@@` +`class BSiStateTaggingGenerator`: VTable [0x000000000313E1F0, 0x0000000000000000 offset, 28 functions] `.?AVBSiStateTaggingGenerator@@` +`class BSSynchronizedClipGenerator::hkbDefaultSynchronizedScene`: VTable [0x000000000313E338, 0x0000000000000000 offset, 10 functions] `.?AVhkbDefaultSynchronizedScene@BSSynchronizedClipGenerator@@` +`class BSSynchronizedClipGenerator`: VTable [0x000000000313E3A8, 0x0000000000000000 offset, 28 functions] `.?AVBSSynchronizedClipGenerator@@` +`class BSComputeAddBoneAnimModifier`: VTable [0x000000000313E5E8, 0x0000000000000000 offset, 25 functions] `.?AVBSComputeAddBoneAnimModifier@@` +`class BSDecomposeVectorModifier`: VTable [0x000000000313E790, 0x0000000000000000 offset, 25 functions] `.?AVBSDecomposeVectorModifier@@` +`class BSDirectAtModifier`: VTable [0x000000000313E890, 0x0000000000000000 offset, 25 functions] `.?AVBSDirectAtModifier@@` +`class BSDistTriggerModifier`: VTable [0x000000000313E9B0, 0x0000000000000000 offset, 25 functions] `.?AVBSDistTriggerModifier@@` +`class BSEventEveryNEventsModifier`: VTable [0x000000000313EAD0, 0x0000000000000000 offset, 25 functions] `.?AVBSEventEveryNEventsModifier@@` +`class BSEventOnDeactivateModifier`: VTable [0x000000000313ED30, 0x0000000000000000 offset, 25 functions] `.?AVBSEventOnDeactivateModifier@@` +`class BSEventOnFalseToTrueModifier`: VTable [0x000000000313EE68, 0x0000000000000000 offset, 25 functions] `.?AVBSEventOnFalseToTrueModifier@@` +`class BSGetTimeStepModifier`: VTable [0x000000000313EF98, 0x0000000000000000 offset, 25 functions] `.?AVBSGetTimeStepModifier@@` +`class BSInterpValueModifier`: VTable [0x000000000313F098, 0x0000000000000000 offset, 25 functions] `.?AVBSInterpValueModifier@@` +`class BSIsActiveModifier`: VTable [0x000000000313F198, 0x0000000000000000 offset, 25 functions] `.?AVBSIsActiveModifier@@` +`class BSLimbIKModifier`: VTable [0x000000000313F298, 0x0000000000000000 offset, 25 functions] `.?AVBSLimbIKModifier@@` +`class BSLookAtModifier`: VTable [0x000000000313F480, 0x0000000000000000 offset, 25 functions] `.?AVBSLookAtModifier@@` +`class BSModifyOnceModifier`: VTable [0x000000000313F770, 0x0000000000000000 offset, 25 functions] `.?AVBSModifyOnceModifier@@` +`class BSPassByTargetTriggerModifier`: VTable [0x000000000313F8B0, 0x0000000000000000 offset, 25 functions] `.?AVBSPassByTargetTriggerModifier@@` +`class BSRagdollContactListenerModifier`: VTable [0x000000000313F9D8, 0x0000000000000000 offset, 25 functions] `.?AVBSRagdollContactListenerModifier@@` +`class BSRagdollContactListenerModifier`: VTable [0x000000000313FAD8, 0x0000000000000050 offset, 7 functions] `.?AVBSRagdollContactListenerModifier@@` +`class BSSpeedSamplerModifier`: VTable [0x000000000313FB50, 0x0000000000000000 offset, 25 functions] `.?AVBSSpeedSamplerModifier@@` +`class BSTimerModifier`: VTable [0x000000000313FC70, 0x0000000000000000 offset, 25 functions] `.?AVBSTimerModifier@@` +`class BSTweenerModifier`: VTable [0x000000000313FD70, 0x0000000000000000 offset, 25 functions] `.?AVBSTweenerModifier@@` +`class hkaAnimationBinding`: VTable [0x000000000313FE88, 0x0000000000000000 offset, 3 functions] `.?AVhkaAnimationBinding@@` +`class BSSynchronizedClipGeneratorUtils::FindEventFunctor`: VTable [0x000000000313FEB0, 0x0000000000000000 offset, 2 functions] `.?AVFindEventFunctor@BSSynchronizedClipGeneratorUtils@@` +`class BSIDirectAtModifierSingleton`: VTable [0x000000000313FED0, 0x0000000000000000 offset, 2 functions] `.?AVBSIDirectAtModifierSingleton@@` +`class BSIPassByTargetTriggerModifierSingleton`: VTable [0x0000000003140000, 0x0000000000000000 offset, 4 functions] `.?AVBSIPassByTargetTriggerModifierSingleton@@` +`class BSIRagdollContactListenerModifierSingleton`: VTable [0x0000000003140030, 0x0000000000000000 offset, 2 functions] `.?AVBSIRagdollContactListenerModifierSingleton@@` +`class BShkbUtils::GraphInspectionFunctor`: VTable [0x000000000314B7A0, 0x0000000000000000 offset, 7 functions] `.?AVGraphInspectionFunctor@BShkbUtils@@` +`class hkbAssetLoader`: VTable [0x000000000314B7F0, 0x0000000000000000 offset, 5 functions] `.?AVhkbAssetLoader@@` +`class `anonymous namespace'::BSResourceAssetLoader`: VTable [0x000000000314B830, 0x0000000000000000 offset, 5 functions] `.?AVBSResourceAssetLoader@?A0xda570c87@@` +`class `anonymous namespace'::NullAssetLoader`: VTable [0x000000000314B870, 0x0000000000000000 offset, 5 functions] `.?AVNullAssetLoader@?A0xda570c87@@` +`class `anonymous namespace'::MapEventFindFunctor`: VTable [0x000000000314B8B0, 0x0000000000000000 offset, 2 functions] `.?AVMapEventFindFunctor@?A0xda570c87@@` +`class `anonymous namespace'::ClipAddingFunctor`: VTable [0x000000000314B8D0, 0x0000000000000000 offset, 7 functions] `.?AVClipAddingFunctor@?A0xda570c87@@` +`class BShkbUtils::ProspectiveEventClipAddingFunctor`: VTable [0x000000000314BDB8, 0x0000000000000000 offset, 7 functions] `.?AVProspectiveEventClipAddingFunctor@BShkbUtils@@` +`class `anonymous namespace'::CompileExpressionFunctor`: VTable [0x000000000314C5A0, 0x0000000000000000 offset, 7 functions] `.?AVCompileExpressionFunctor@?A0xda570c87@@` +`class hkLoader`: VTable [0x000000000314D140, 0x0000000000000000 offset, 11 functions] `.?AVhkLoader@@` +`class BShkbHkxDB::DBData`: VTable [0x000000000314D1B8, 0x0000000000000000 offset, 15 functions] `.?AVDBData@BShkbHkxDB@@` +`class BSResource::EntryDB`: VTable [0x000000000314D258, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BShkbHkxDB@@@BSResource@@` +`class BShkbHkxDB::ProjectDBData`: VTable [0x000000000314D2A0, 0x0000000000000000 offset, 15 functions] `.?AVProjectDBData@BShkbHkxDB@@` +`class BSQueuedResourceCollection,2>`: VTable [0x000000000314D340, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BShkbHkxDB@@@BSResource@@$01@@` +`class BSQueuedResourceCollection,2>`: VTable [0x000000000314D410, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BShkbHkxDB@@@BSResource@@$01@@` +`class BShkbHkxDB::QueuedHandles`: VTable [0x000000000314D438, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHandles@BShkbHkxDB@@` +`class BShkbHkxDB::QueuedHandles`: VTable [0x000000000314D508, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHandles@BShkbHkxDB@@` +`class BShkbHkxDB::StreamAdaptor`: VTable [0x000000000314D530, 0x0000000000000000 offset, 13 functions] `.?AVStreamAdaptor@BShkbHkxDB@@` +`class `anonymous namespace'::BShkbAnimationGraphLoadScrapper`: VTable [0x000000000314DE18, 0x0000000000000000 offset, 2 functions] `.?AVBShkbAnimationGraphLoadScrapper@?A0x842ae00c@@` +`class AutoRegisterFactory >`: VTable [0x000000000314DFA8, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterFactory@VBShkbAnimationGraphLoadScrapper@?A0x842ae00c@@V?$BSTFactoryManager@VBSFixedString@@VBSAnimationGraphLoadScrapper@@$01VBSTSingletonImplicit@@@@@@` +`class bhkIWorldStepListener`: VTable [0x000000000314DFC8, 0x0000000000000000 offset, 3 functions] `.?AVbhkIWorldStepListener@@` +`class `anonymous namespace'::GraphPhysicsStepListener`: VTable [0x000000000314DFF0, 0x0000000000000000 offset, 3 functions] `.?AVGraphPhysicsStepListener@?A0x842ae00c@@` +`class BSAnimationGraphLoadScrapper`: VTable [0x000000000314E058, 0x0000000000000000 offset, 2 functions] `.?AVBSAnimationGraphLoadScrapper@@` +`class hkaSkeleton`: VTable [0x000000000314F708, 0x0000000000000000 offset, 3 functions] `.?AVhkaSkeleton@@` +`class BSIRagdollDriver`: VTable [0x000000000314F730, 0x0000000000000000 offset, 14 functions] `.?AVBSIRagdollDriver@@` +`class BShkbAnimationGraph`: VTable [0x000000000314F7C0, 0x0000000000000000 offset, 14 functions] `.?AVBShkbAnimationGraph@@` +`class `anonymous namespace'::SynchronizedClipNameVisitor`: VTable [0x000000000314F930, 0x0000000000000000 offset, 2 functions] `.?AVSynchronizedClipNameVisitor@?A0x842ae00c@@` +`class `anonymous namespace'::BSHashMapEventFindFunctor`: VTable [0x0000000003150550, 0x0000000000000000 offset, 2 functions] `.?AVBSHashMapEventFindFunctor@?A0x842ae00c@@` +`class BSAnimationGraphManager`: VTable [0x0000000003152330, 0x0000000000000000 offset, 2 functions] `.?AVBSAnimationGraphManager@@` +`class IPostAnimationChannelUpdateFunctor`: VTable [0x0000000003152350, 0x0000000000000000 offset, 2 functions] `.?AVIPostAnimationChannelUpdateFunctor@@` +`class BSTMessageQueue >`: VTable [0x0000000003152370, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@V?$BSTSmartPointer@VBSAnimationGraphManager@@UBSTSmartPointerIntrusiveRefCount@@@@@@` +`class BSTCommonMessageQueue >`: VTable [0x00000000031523B0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@V?$BSTSmartPointer@VBSAnimationGraphManager@@UBSTSmartPointerIntrusiveRefCount@@@@@@` +`class BSTCommonStaticMessageQueue,128>`: VTable [0x0000000003152400, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonStaticMessageQueue@V?$BSTSmartPointer@VBSAnimationGraphManager@@UBSTSmartPointerIntrusiveRefCount@@@@$0IA@@@` +`class `anonymous namespace'::DeferredUpdate`: VTable [0x0000000003152450, 0x0000000000000000 offset, 7 functions] `.?AVDeferredUpdate@?A0x52690444@@` +`class BSISpeedSamplerDB`: VTable [0x0000000003152EF0, 0x0000000000000000 offset, 2 functions] `.?AVBSISpeedSamplerDB@@` +`class BSSpeedSamplerDBManager`: VTable [0x0000000003152F10, 0x0000000000000000 offset, 2 functions] `.?AVBSSpeedSamplerDBManager@@` +`struct IBSTCreator`: VTable [0x0000000003152F80, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBShkNonTransformController@@@@` +`struct BSTDerivedCreator`: VTable [0x0000000003152FA8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBShkVisibilityController@@VBShkNonTransformController@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003152FD0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBShkVisibilityController@@VBShkNonTransformController@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VBShkNonTransformController@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x0000000003152FF8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBShkVisibilityController@@V?$BSTCreateFactoryManager@VBSFixedString@@VBShkNonTransformController@@$0CA@@@@@` +`class BShkNonTransformController`: VTable [0x0000000003153028, 0x0000000000000000 offset, 4 functions] `.?AVBShkNonTransformController@@` +`class BShkFloatController`: VTable [0x0000000003153058, 0x0000000000000000 offset, 4 functions] `.?AVBShkFloatController@@` +`class BShkVisibilityController`: VTable [0x0000000003153088, 0x0000000000000000 offset, 4 functions] `.?AVBShkVisibilityController@@` +`class hkaMirroredSkeleton`: VTable [0x00000000031532C0, 0x0000000000000000 offset, 3 functions] `.?AVhkaMirroredSkeleton@@` +`class hkaRagdollInstance`: VTable [0x00000000031535A0, 0x0000000000000000 offset, 4 functions] `.?AVhkaRagdollInstance@@` +`class hkaAnimatedReferenceFrame`: VTable [0x0000000003155180, 0x0000000000000000 offset, 6 functions] `.?AVhkaAnimatedReferenceFrame@@` +`class hkaAnimation`: VTable [0x00000000031551C8, 0x0000000000000000 offset, 16 functions] `.?AVhkaAnimation@@` +`class hkaInterleavedUncompressedAnimation`: VTable [0x0000000003155370, 0x0000000000000000 offset, 16 functions] `.?AVhkaInterleavedUncompressedAnimation@@` +`class hkaQuantizedAnimation`: VTable [0x0000000003155478, 0x0000000000000000 offset, 16 functions] `.?AVhkaQuantizedAnimation@@` +`class hkaSplineCompressedAnimation`: VTable [0x00000000031555D0, 0x0000000000000000 offset, 16 functions] `.?AVhkaSplineCompressedAnimation@@` +`class hkaAnimationPreviewColorContainer`: VTable [0x0000000003155840, 0x0000000000000000 offset, 3 functions] `.?AVhkaAnimationPreviewColorContainer@@` +`class hkaDefaultAnimatedReferenceFrame`: VTable [0x0000000003155B70, 0x0000000000000000 offset, 6 functions] `.?AVhkaDefaultAnimatedReferenceFrame@@` +`class hkaFootstepAnalysisInfoContainer`: VTable [0x0000000003155C28, 0x0000000000000000 offset, 3 functions] `.?AVhkaFootstepAnalysisInfoContainer@@` +`class hkaBoneAttachment`: VTable [0x0000000003155D00, 0x0000000000000000 offset, 3 functions] `.?AVhkaBoneAttachment@@` +`class hkaAnimationContainer`: VTable [0x0000000003155DC8, 0x0000000000000000 offset, 3 functions] `.?AVhkaAnimationContainer@@` +`class hkpCollisionDispatcher`: VTable [0x00000000031577B0, 0x0000000000000000 offset, 3 functions] `.?AVhkpCollisionDispatcher@@` +`class hkpNullBroadPhaseListener`: VTable [0x00000000031579C0, 0x0000000000000000 offset, 3 functions] `.?AVhkpNullBroadPhaseListener@@` +`class hkpNullBroadPhaseListener`: VTable [0x00000000031579E8, 0x0000000000000010 offset, 3 functions] `.?AVhkpNullBroadPhaseListener@@` +`class hkpCollisionAgent`: VTable [0x0000000003157A10, 0x0000000000000000 offset, 14 functions] `.?AVhkpCollisionAgent@@` +`class hkpNullAgent`: VTable [0x0000000003157AA0, 0x0000000000000000 offset, 14 functions] `.?AVhkpNullAgent@@` +`class hkp3AxisSweep`: VTable [0x0000000003157BE8, 0x0000000000000000 offset, 31 functions] `.?AVhkp3AxisSweep@@` +`class hkpBroadPhase`: VTable [0x000000000315A9F0, 0x0000000000000000 offset, 31 functions] `.?AVhkpBroadPhase@@` +`class hkTraceStream`: VTable [0x000000000315ABF0, 0x0000000000000000 offset, 3 functions] `.?AVhkTraceStream@@` +`class hkpPoweredChainData`: VTable [0x000000000315B170, 0x0000000000000000 offset, 20 functions] `.?AVhkpPoweredChainData@@` +`class hkpMapPointsToSubShapeContactMgr`: VTable [0x000000000315B2B8, 0x0000000000000000 offset, 10 functions] `.?AVhkpMapPointsToSubShapeContactMgr@@` +`class hkpConvexVerticesShape`: VTable [0x000000000315B568, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexVerticesShape@@` +`class BSiStateTaggingUtils::BSiStateTaggingStateListener`: VTable [0x000000000315BD60, 0x0000000000000000 offset, 7 functions] `.?AVBSiStateTaggingStateListener@BSiStateTaggingUtils@@` +`class `anonymous namespace'::iStateTaggingFunctor`: VTable [0x000000000315BDB0, 0x0000000000000000 offset, 7 functions] `.?AViStateTaggingFunctor@?A0x85c8d91e@@` +`class hkResource`: VTable [0x000000000315BE20, 0x0000000000000000 offset, 8 functions] `.?AVhkResource@@` +`struct `anonymous namespace'::hkNativeResource`: VTable [0x000000000315BE78, 0x0000000000000000 offset, 8 functions] `.?AUhkNativeResource@?A0xfb16bef9@@` +`class BShkbUtils::SaveDataRestoreFunctor`: VTable [0x000000000315C780, 0x0000000000000000 offset, 7 functions] `.?AVSaveDataRestoreFunctor@BShkbUtils@@` +`struct hkpConstraintUtils::CollectConstraintsFilter`: VTable [0x000000000315CE60, 0x0000000000000000 offset, 2 functions] `.?AUCollectConstraintsFilter@hkpConstraintUtils@@` +`struct hkpEaseConstraintsAction::CollectSupportedConstraints`: VTable [0x000000000315CE80, 0x0000000000000000 offset, 2 functions] `.?AUCollectSupportedConstraints@hkpEaseConstraintsAction@@` +`class hkpEaseConstraintsAction`: VTable [0x000000000315CEA0, 0x0000000000000000 offset, 8 functions] `.?AVhkpEaseConstraintsAction@@` +`class hkpEasePenetrationAction`: VTable [0x000000000315D128, 0x0000000000000000 offset, 8 functions] `.?AVhkpEasePenetrationAction@@` +`class hkxAnimatedFloat`: VTable [0x000000000315FF70, 0x0000000000000000 offset, 3 functions] `.?AVhkxAnimatedFloat@@` +`class hkxAnimatedMatrix`: VTable [0x000000000315FFC8, 0x0000000000000000 offset, 3 functions] `.?AVhkxAnimatedMatrix@@` +`class hkxAnimatedQuaternion`: VTable [0x0000000003160020, 0x0000000000000000 offset, 3 functions] `.?AVhkxAnimatedQuaternion@@` +`class hkxAnimatedVector`: VTable [0x0000000003160088, 0x0000000000000000 offset, 3 functions] `.?AVhkxAnimatedVector@@` +`class hkxSparselyAnimatedBool`: VTable [0x0000000003160100, 0x0000000000000000 offset, 3 functions] `.?AVhkxSparselyAnimatedBool@@` +`class hkxSparselyAnimatedInt`: VTable [0x0000000003160128, 0x0000000000000000 offset, 3 functions] `.?AVhkxSparselyAnimatedInt@@` +`class hkxEnum`: VTable [0x0000000003160150, 0x0000000000000000 offset, 3 functions] `.?AVhkxEnum@@` +`class hkxSparselyAnimatedEnum`: VTable [0x0000000003160178, 0x0000000000000000 offset, 3 functions] `.?AVhkxSparselyAnimatedEnum@@` +`class hkxSparselyAnimatedString`: VTable [0x00000000031601A0, 0x0000000000000000 offset, 3 functions] `.?AVhkxSparselyAnimatedString@@` +`class hkxAttributeHolder`: VTable [0x00000000031601F8, 0x0000000000000000 offset, 3 functions] `.?AVhkxAttributeHolder@@` +`class hkxCamera`: VTable [0x0000000003160398, 0x0000000000000000 offset, 3 functions] `.?AVhkxCamera@@` +`class hkxNode`: VTable [0x0000000003160450, 0x0000000000000000 offset, 3 functions] `.?AVhkxNode@@` +`class hkxLight`: VTable [0x00000000031604D8, 0x0000000000000000 offset, 3 functions] `.?AVhkxLight@@` +`class hkxMaterial`: VTable [0x0000000003160528, 0x0000000000000000 offset, 3 functions] `.?AVhkxMaterial@@` +`class hkxMaterialEffect`: VTable [0x00000000031605F8, 0x0000000000000000 offset, 3 functions] `.?AVhkxMaterialEffect@@` +`class hkxMaterialShader`: VTable [0x0000000003160650, 0x0000000000000000 offset, 3 functions] `.?AVhkxMaterialShader@@` +`class hkxTextureFile`: VTable [0x0000000003160728, 0x0000000000000000 offset, 3 functions] `.?AVhkxTextureFile@@` +`class hkxTextureInplace`: VTable [0x0000000003160780, 0x0000000000000000 offset, 3 functions] `.?AVhkxTextureInplace@@` +`class hkxEdgeSelectionChannel`: VTable [0x00000000031607D8, 0x0000000000000000 offset, 3 functions] `.?AVhkxEdgeSelectionChannel@@` +`class hkxTriangleSelectionChannel`: VTable [0x0000000003160840, 0x0000000000000000 offset, 3 functions] `.?AVhkxTriangleSelectionChannel@@` +`class hkxVertexFloatDataChannel`: VTable [0x00000000031608B8, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexFloatDataChannel@@` +`class hkxVertexIntDataChannel`: VTable [0x0000000003160920, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexIntDataChannel@@` +`class hkxVertexSelectionChannel`: VTable [0x0000000003160988, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexSelectionChannel@@` +`class hkxVertexVectorDataChannel`: VTable [0x00000000031609F0, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexVectorDataChannel@@` +`class hkxIndexBuffer`: VTable [0x0000000003160A60, 0x0000000000000000 offset, 3 functions] `.?AVhkxIndexBuffer@@` +`class hkxMeshSection`: VTable [0x0000000003160AF0, 0x0000000000000000 offset, 3 functions] `.?AVhkxMeshSection@@` +`class hkxMesh::UserChannelInfo`: VTable [0x0000000003160B18, 0x0000000000000000 offset, 3 functions] `.?AVUserChannelInfo@hkxMesh@@` +`class hkxNodeSelectionSet`: VTable [0x0000000003160D08, 0x0000000000000000 offset, 3 functions] `.?AVhkxNodeSelectionSet@@` +`class hkxSkinBinding`: VTable [0x0000000003160D30, 0x0000000000000000 offset, 3 functions] `.?AVhkxSkinBinding@@` +`class hkxScene`: VTable [0x0000000003160D58, 0x0000000000000000 offset, 3 functions] `.?AVhkxScene@@` +`class hkaMeshBinding`: VTable [0x00000000031612F0, 0x0000000000000000 offset, 3 functions] `.?AVhkaMeshBinding@@` +`class hkaFootstepAnalysisInfo`: VTable [0x0000000003161478, 0x0000000000000000 offset, 3 functions] `.?AVhkaFootstepAnalysisInfo@@` +`class hkpPredGskfAgent`: VTable [0x0000000003162590, 0x0000000000000000 offset, 14 functions] `.?AVhkpPredGskfAgent@@` +`class hkpIterativeLinearCastAgent`: VTable [0x0000000003162628, 0x0000000000000000 offset, 14 functions] `.?AVhkpIterativeLinearCastAgent@@` +`class hkpBoxBoxAgent`: VTable [0x00000000031626B8, 0x0000000000000000 offset, 14 functions] `.?AVhkpBoxBoxAgent@@` +`class hkpSymmetricAgentFlipCollector`: VTable [0x0000000003162758, 0x0000000000000000 offset, 3 functions] `.?AVhkpSymmetricAgentFlipCollector@@` +`class hkpSymmetricAgentFlipCastCollector`: VTable [0x0000000003162780, 0x0000000000000000 offset, 3 functions] `.?AVhkpSymmetricAgentFlipCastCollector@@` +`class hkpSymmetricAgentFlipBodyCollector`: VTable [0x00000000031627A8, 0x0000000000000000 offset, 3 functions] `.?AVhkpSymmetricAgentFlipBodyCollector@@` +`class hkpBvAgent`: VTable [0x00000000031627D0, 0x0000000000000000 offset, 14 functions] `.?AVhkpBvAgent@@` +`class hkpFlagCdBodyPairCollector`: VTable [0x0000000003162860, 0x0000000000000000 offset, 3 functions] `.?AVhkpFlagCdBodyPairCollector@@` +`class hkpSimpleClosestContactCollector`: VTable [0x0000000003162888, 0x0000000000000000 offset, 3 functions] `.?AVhkpSimpleClosestContactCollector@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x00000000031628B0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpBvAgent@@@@` +`class hkpSymmetricAgent`: VTable [0x0000000003162940, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpBvAgent@@@@` +`class hkpBvTreeAgent`: VTable [0x0000000003162A08, 0x0000000000000000 offset, 14 functions] `.?AVhkpBvTreeAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003162A98, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpBvTreeAgent@@@@` +`class hkpSymmetricAgent`: VTable [0x0000000003162B28, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpBvTreeAgent@@@@` +`class hkpBvTreeStreamAgent`: VTable [0x0000000003162BF0, 0x0000000000000000 offset, 14 functions] `.?AVhkpBvTreeStreamAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003162C80, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpBvTreeStreamAgent@@@@` +`class hkpSymmetricAgent`: VTable [0x0000000003162D10, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpBvTreeStreamAgent@@@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003162DA0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpShapeCollectionAgent@@@@` +`class hkpSymmetricAgent`: VTable [0x0000000003162E30, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpShapeCollectionAgent@@@@` +`class hkpMoppAgent`: VTable [0x0000000003162EC0, 0x0000000000000000 offset, 14 functions] `.?AVhkpMoppAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003162F50, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpMoppAgent@@@@` +`class hkpSymmetricAgent`: VTable [0x0000000003162FE0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpMoppAgent@@@@` +`class hkpPhantomAgent`: VTable [0x0000000003163078, 0x0000000000000000 offset, 14 functions] `.?AVhkpPhantomAgent@@` +`class hkpSphereSphereAgent`: VTable [0x0000000003163108, 0x0000000000000000 offset, 14 functions] `.?AVhkpSphereSphereAgent@@` +`class hkpSphereCapsuleAgent`: VTable [0x00000000031631B0, 0x0000000000000000 offset, 14 functions] `.?AVhkpSphereCapsuleAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003163240, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpSphereCapsuleAgent@@@@` +`class hkpSphereTriangleAgent`: VTable [0x00000000031632E8, 0x0000000000000000 offset, 14 functions] `.?AVhkpSphereTriangleAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003163378, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpSphereTriangleAgent@@@@` +`class hkpCapsuleCapsuleAgent`: VTable [0x0000000003163418, 0x0000000000000000 offset, 14 functions] `.?AVhkpCapsuleCapsuleAgent@@` +`class hkpCapsuleTriangleAgent`: VTable [0x00000000031634B8, 0x0000000000000000 offset, 14 functions] `.?AVhkpCapsuleTriangleAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003163548, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpCapsuleTriangleAgent@@@@` +`class hkpSphereBoxAgent`: VTable [0x0000000003163600, 0x0000000000000000 offset, 14 functions] `.?AVhkpSphereBoxAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003163690, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpSphereBoxAgent@@@@` +`class hkpMultiSphereTriangleAgent`: VTable [0x0000000003163730, 0x0000000000000000 offset, 14 functions] `.?AVhkpMultiSphereTriangleAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x00000000031637C0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpMultiSphereTriangleAgent@@@@` +`class hkpMultiRayConvexAgent`: VTable [0x0000000003163888, 0x0000000000000000 offset, 14 functions] `.?AVhkpMultiRayConvexAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003163918, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpMultiRayConvexAgent@@@@` +`class hkpTransformAgent`: VTable [0x00000000031639E0, 0x0000000000000000 offset, 14 functions] `.?AVhkpTransformAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003163A70, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpTransformAgent@@@@` +`class hkpSymmetricAgent`: VTable [0x0000000003163B00, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpTransformAgent@@@@` +`class hkpListAgent`: VTable [0x0000000003163BB0, 0x0000000000000000 offset, 14 functions] `.?AVhkpListAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003163C40, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpListAgent@@@@` +`class hkpSymmetricAgent`: VTable [0x0000000003163CD0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpListAgent@@@@` +`class hkpConvexListAgent`: VTable [0x0000000003163D60, 0x0000000000000000 offset, 14 functions] `.?AVhkpConvexListAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003163DF0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpConvexListAgent@@@@` +`class hkpSymmetricAgent`: VTable [0x0000000003163E80, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpConvexListAgent@@@@` +`class hkpShapeCollectionAgent`: VTable [0x0000000003163F60, 0x0000000000000000 offset, 14 functions] `.?AVhkpShapeCollectionAgent@@` +`class hkpMultiSphereAgent`: VTable [0x0000000003164008, 0x0000000000000000 offset, 14 functions] `.?AVhkpMultiSphereAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003164098, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpMultiSphereAgent@@@@` +`class hkpSymmetricAgent`: VTable [0x0000000003164128, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpMultiSphereAgent@@@@` +`class hkIstream`: VTable [0x0000000003164390, 0x0000000000000000 offset, 3 functions] `.?AVhkIstream@@` +`class hkTagfileWriter::AddDataObjectListener`: VTable [0x00000000031643B8, 0x0000000000000000 offset, 4 functions] `.?AVAddDataObjectListener@hkTagfileWriter@@` +`class hkTagfileWriter`: VTable [0x00000000031643E8, 0x0000000000000000 offset, 4 functions] `.?AVhkTagfileWriter@@` +`class hkTagfileReader`: VTable [0x0000000003164418, 0x0000000000000000 offset, 4 functions] `.?AVhkTagfileReader@@` +`class hkBinaryTagfileWriter`: VTable [0x0000000003164448, 0x0000000000000000 offset, 4 functions] `.?AVhkBinaryTagfileWriter@@` +`class hkXmlTagfileReader`: VTable [0x0000000003164478, 0x0000000000000000 offset, 4 functions] `.?AVhkXmlTagfileReader@@` +`class hkXmlTagfileWriter`: VTable [0x00000000031644A8, 0x0000000000000000 offset, 4 functions] `.?AVhkXmlTagfileWriter@@` +`class `anonymous namespace'::ForwardingPackfileListerer`: VTable [0x0000000003164630, 0x0000000000000000 offset, 4 functions] `.?AVForwardingPackfileListerer@?A0x4076b7e2@@` +`class hkpArrayAction`: VTable [0x00000000031647E0, 0x0000000000000000 offset, 8 functions] `.?AVhkpArrayAction@@` +`class hkAlignSceneToNodeOptions`: VTable [0x0000000003164838, 0x0000000000000000 offset, 3 functions] `.?AVhkAlignSceneToNodeOptions@@` +`class hkxEnvironment`: VTable [0x0000000003164860, 0x0000000000000000 offset, 3 functions] `.?AVhkxEnvironment@@` +`class hkxMaterialShaderSet`: VTable [0x0000000003164BB8, 0x0000000000000000 offset, 3 functions] `.?AVhkxMaterialShaderSet@@` +`class hkxVertexBuffer`: VTable [0x0000000003164BE0, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexBuffer@@` +`class hkxMesh`: VTable [0x0000000003164C08, 0x0000000000000000 offset, 3 functions] `.?AVhkxMesh@@` +`class hkpGskBaseAgent`: VTable [0x0000000003165050, 0x0000000000000000 offset, 14 functions] `.?AVhkpGskBaseAgent@@` +`class hkpGskfAgent`: VTable [0x0000000003165100, 0x0000000000000000 offset, 14 functions] `.?AVhkpGskfAgent@@` +`class hkMemoryStreamReader`: VTable [0x00000000031651B0, 0x0000000000000000 offset, 12 functions] `.?AVhkMemoryStreamReader@@` +`class hkPackfileWriter`: VTable [0x0000000003165250, 0x0000000000000000 offset, 11 functions] `.?AVhkPackfileWriter@@` +`class `anonymous namespace'::InternedStringRefCounted`: VTable [0x0000000003165538, 0x0000000000000000 offset, 3 functions] `.?AVInternedStringRefCounted@?A0x860cb2af@@` +`class hkDataWorld`: VTable [0x0000000003165560, 0x0000000000000000 offset, 23 functions] `.?AVhkDataWorld@@` +`class hkDataWorldDict`: VTable [0x0000000003165648, 0x0000000000000000 offset, 23 functions] `.?AVhkDataWorldDict@@` +`class hkDataRefCounted`: VTable [0x0000000003165730, 0x0000000000000000 offset, 1 functions] `.?AVhkDataRefCounted@@` +`class hkDataArrayImpl`: VTable [0x0000000003165748, 0x0000000000000000 offset, 37 functions] `.?AVhkDataArrayImpl@@` +`class hkDataClassImpl`: VTable [0x00000000031658B8, 0x0000000000000000 offset, 12 functions] `.?AVhkDataClassImpl@@` +`class hkDataObjectImpl`: VTable [0x0000000003165938, 0x0000000000000000 offset, 25 functions] `.?AVhkDataObjectImpl@@` +`class hkDataClassDict`: VTable [0x0000000003165A38, 0x0000000000000000 offset, 12 functions] `.?AVhkDataClassDict@@` +`class hkDataObjectDict`: VTable [0x0000000003165AB8, 0x0000000000000000 offset, 25 functions] `.?AVhkDataObjectDict@@` +`struct VariableIntArrayImplementation`: VTable [0x0000000003165BB8, 0x0000000000000000 offset, 38 functions] `.?AUVariableIntArrayImplementation@@` +`struct BasicArrayImplementation`: VTable [0x0000000003165DD8, 0x0000000000000000 offset, 37 functions] `.?AU?$BasicArrayImplementation@E$00@@` +`struct ByteArrayImplementation`: VTable [0x0000000003165F48, 0x0000000000000000 offset, 37 functions] `.?AUByteArrayImplementation@@` +`struct ArrayOfTuplesImplementation::View`: VTable [0x00000000031660B8, 0x0000000000000000 offset, 37 functions] `.?AUView@ArrayOfTuplesImplementation@@` +`struct ArrayOfTuplesImplementation`: VTable [0x0000000003166228, 0x0000000000000000 offset, 37 functions] `.?AUArrayOfTuplesImplementation@@` +`struct BasicArrayImplementation`: VTable [0x0000000003166398, 0x0000000000000000 offset, 37 functions] `.?AU?$BasicArrayImplementation@M$02@@` +`struct RealArrayImplementation`: VTable [0x0000000003166508, 0x0000000000000000 offset, 37 functions] `.?AURealArrayImplementation@@` +`struct VecArrayImplementation`: VTable [0x0000000003166678, 0x0000000000000000 offset, 37 functions] `.?AUVecArrayImplementation@@` +`struct BasicArrayImplementation`: VTable [0x00000000031667E8, 0x0000000000000000 offset, 37 functions] `.?AU?$BasicArrayImplementation@PEAVhkDataObjectImpl@@$07@@` +`struct PointerArrayImplementation`: VTable [0x0000000003166958, 0x0000000000000000 offset, 37 functions] `.?AUPointerArrayImplementation@@` +`struct BasicArrayImplementation`: VTable [0x0000000003166AC8, 0x0000000000000000 offset, 37 functions] `.?AU?$BasicArrayImplementation@PEAD$09@@` +`struct CstringArrayImplementation`: VTable [0x0000000003166C38, 0x0000000000000000 offset, 37 functions] `.?AUCstringArrayImplementation@@` +`struct StructArrayImplementation::Object`: VTable [0x0000000003166DA8, 0x0000000000000000 offset, 31 functions] `.?AUObject@StructArrayImplementation@@` +`struct StructArrayImplementation`: VTable [0x0000000003166EE0, 0x0000000000000000 offset, 37 functions] `.?AUStructArrayImplementation@@` +`class hkDataWorldNative`: VTable [0x0000000003167158, 0x0000000000000000 offset, 23 functions] `.?AVhkDataWorldNative@@` +`class hkDataClassNative`: VTable [0x00000000031672F0, 0x0000000000000000 offset, 12 functions] `.?AVhkDataClassNative@@` +`class hkDataArrayNative`: VTable [0x0000000003167370, 0x0000000000000000 offset, 37 functions] `.?AVhkDataArrayNative@@` +`class hkDataObjectNative`: VTable [0x00000000031674E0, 0x0000000000000000 offset, 25 functions] `.?AVhkDataObjectNative@@` +`class hkBinaryTagfileReader`: VTable [0x0000000003167718, 0x0000000000000000 offset, 4 functions] `.?AVhkBinaryTagfileReader@@` +`class hkVersionPatchManager`: VTable [0x0000000003167BF8, 0x0000000000000000 offset, 3 functions] `.?AVhkVersionPatchManager@@` +`class hkSubStreamWriter`: VTable [0x0000000003167E00, 0x0000000000000000 offset, 9 functions] `.?AVhkSubStreamWriter@@` +`class hkBinaryPackfileWriter`: VTable [0x0000000003167E60, 0x0000000000000000 offset, 11 functions] `.?AVhkBinaryPackfileWriter@@` +`class hkPooledAllocator`: VTable [0x0000000003167ED8, 0x0000000000000000 offset, 11 functions] `.?AVhkPooledAllocator@@` +`class hkTempDetectAllocator`: VTable [0x0000000003167F50, 0x0000000000000000 offset, 11 functions] `.?AVhkTempDetectAllocator@@` +`class hkSerializeDeprecated`: VTable [0x00000000031682D0, 0x0000000000000000 offset, 7 functions] `.?AVhkSerializeDeprecated@@` +`class hkOffsetOnlyStreamWriter`: VTable [0x00000000031685B8, 0x0000000000000000 offset, 9 functions] `.?AVhkOffsetOnlyStreamWriter@@` +`class hkObjectWriter`: VTable [0x0000000003168618, 0x0000000000000000 offset, 5 functions] `.?AVhkObjectWriter@@` +`class hkPlatformObjectWriter::Cache`: VTable [0x0000000003168658, 0x0000000000000000 offset, 3 functions] `.?AVCache@hkPlatformObjectWriter@@` +`class hkPlatformObjectWriter`: VTable [0x0000000003168680, 0x0000000000000000 offset, 5 functions] `.?AVhkPlatformObjectWriter@@` +`class hkPackfileData`: VTable [0x00000000031686C0, 0x0000000000000000 offset, 8 functions] `.?AVhkPackfileData@@` +`class hkObjectResource`: VTable [0x0000000003168748, 0x0000000000000000 offset, 9 functions] `.?AVhkObjectResource@@` +`class hkIArchive`: VTable [0x00000000031687A8, 0x0000000000000000 offset, 3 functions] `.?AVhkIArchive@@` +`class hkParserBuffer`: VTable [0x000000000316C560, 0x0000000000000000 offset, 3 functions] `.?AVhkParserBuffer@@` +`class hkXmlStreamParser`: VTable [0x000000000316C588, 0x0000000000000000 offset, 3 functions] `.?AVhkXmlStreamParser@@` +`class hkXmlLexAnalyzer`: VTable [0x000000000316C7B8, 0x0000000000000000 offset, 3 functions] `.?AVhkXmlLexAnalyzer@@` +`class `anonymous namespace'::AudioLoadTask`: VTable [0x000000000316DDE0, 0x0000000000000000 offset, 13 functions] `.?AVAudioLoadTask@?A0xc71f01d5@@` +`class AudioLoadForPlaybackTask`: VTable [0x000000000316DF60, 0x0000000000000000 offset, 13 functions] `.?AVAudioLoadForPlaybackTask@@` +`class AudioLoadToCacheTask`: VTable [0x000000000316DFE8, 0x0000000000000000 offset, 13 functions] `.?AVAudioLoadToCacheTask@@` +`class BSAudioManagerThread`: VTable [0x000000000316E070, 0x0000000000000000 offset, 3 functions] `.?AVBSAudioManagerThread@@` +`class BSAudio`: VTable [0x000000000316E540, 0x0000000000000000 offset, 12 functions] `.?AVBSAudio@@` +`class BSGameSound`: VTable [0x000000000316E710, 0x0000000000000000 offset, 25 functions] `.?AVBSGameSound@@` +`class BSNullImplAudio`: VTable [0x000000000316E910, 0x0000000000000000 offset, 12 functions] `.?AVBSNullImplAudio@@` +`struct IBSTCreator`: VTable [0x000000000316E990, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSAudio@@@@` +`struct BSTDerivedCreator`: VTable [0x000000000316E9B8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBSNullImplAudio@@VBSAudio@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000316E9E0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBSNullImplAudio@@VBSAudio@@@@V?$BSTCreateFactoryManager@VBSFixedStringCI@@VBSAudio@@$03@@@@` +`struct AutoRegisterCreator >`: VTable [0x000000000316EA08, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBSNullImplAudio@@V?$BSTCreateFactoryManager@VBSFixedStringCI@@VBSAudio@@$03@@@@` +`class BSAudioListener`: VTable [0x000000000316ED60, 0x0000000000000000 offset, 6 functions] `.?AVBSAudioListener@@` +`class BSNullImplAudioListener`: VTable [0x000000000316EDA8, 0x0000000000000000 offset, 6 functions] `.?AVBSNullImplAudioListener@@` +`class BSNullImplGameSound`: VTable [0x000000000316EDF0, 0x0000000000000000 offset, 25 functions] `.?AVBSNullImplGameSound@@` +`struct `anonymous namespace'::ReverbModCallback`: VTable [0x000000000316F0E8, 0x0000000000000000 offset, 3 functions] `.?AUReverbModCallback@?A0xc48ce1d3@@` +`class BSXAudio2Audio`: VTable [0x000000000316F200, 0x0000000000000000 offset, 12 functions] `.?AVBSXAudio2Audio@@` +`class `anonymous namespace'::MonitorAPO`: VTable [0x000000000316F2C8, 0x0000000000000000 offset, 15 functions] `.?AVMonitorAPO@?A0xc48ce1d3@@` +`struct BSTDerivedCreator`: VTable [0x000000000316F3F0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBSXAudio2Audio@@VBSAudio@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x000000000316F418, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBSXAudio2Audio@@VBSAudio@@@@V?$BSTCreateFactoryManager@VBSFixedStringCI@@VBSAudio@@$03@@@@` +`struct AutoRegisterCreator >`: VTable [0x000000000316F440, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBSXAudio2Audio@@V?$BSTCreateFactoryManager@VBSFixedStringCI@@VBSAudio@@$03@@@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x000000000316F540, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0IA@@@@@` +`class BSXAudio2AudioListener`: VTable [0x000000000316F598, 0x0000000000000000 offset, 7 functions] `.?AVBSXAudio2AudioListener@@` +`class BSXAudio2GameSound`: VTable [0x000000000316F8F8, 0x0000000000000000 offset, 25 functions] `.?AVBSXAudio2GameSound@@` +`class BSXAudio2GameSound`: VTable [0x000000000316F9F8, 0x00000000000000D0 offset, 7 functions] `.?AVBSXAudio2GameSound@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x000000000316FE90, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0CE@@@@@` +`class BSAudioDataSrc`: VTable [0x0000000003170220, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAudioDataSrc@VBSXAudio2DataSrc@@@@` +`class BSXAudio2DataSrc`: VTable [0x0000000003170238, 0x0000000000000000 offset, 1 functions] `.?AVBSXAudio2DataSrc@@` +`class BSCoreMessage`: VTable [0x0000000003170870, 0x0000000000000000 offset, 5 functions] `.?AVBSCoreMessage@@` +`class NullMemoryTracker`: VTable [0x0000000003170958, 0x0000000000000000 offset, 8 functions] `.?AVNullMemoryTracker@@` +`class IMemoryTracker`: VTable [0x00000000031709C8, 0x0000000000000000 offset, 8 functions] `.?AVIMemoryTracker@@` +`class IMemoryManagerFile`: VTable [0x0000000003170F30, 0x0000000000000000 offset, 5 functions] `.?AVIMemoryManagerFile@@` +`class IMemoryManagerFileFactory`: VTable [0x0000000003170F70, 0x0000000000000000 offset, 4 functions] `.?AVIMemoryManagerFileFactory@@` +`class MemoryHeap`: VTable [0x0000000003171DC8, 0x0000000000000000 offset, 34 functions] `.?AVMemoryHeap@@` +`class UnitTestMemoryHeap`: VTable [0x0000000003171F18, 0x0000000000000000 offset, 34 functions] `.?AVUnitTestMemoryHeap@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000003172518, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0M@@@@@` +`class ScrapHeap`: VTable [0x00000000031725E8, 0x0000000000000000 offset, 17 functions] `.?AVScrapHeap@@` +`class BSThread`: VTable [0x0000000003172CB0, 0x0000000000000000 offset, 3 functions] `.?AVBSThread@@` +`class CompactingStore::MoveCallback`: VTable [0x0000000003172E20, 0x0000000000000000 offset, 2 functions] `.?AVMoveCallback@CompactingStore@@` +`class CompactingStore::NoopMoveCallback`: VTable [0x0000000003172E58, 0x0000000000000000 offset, 2 functions] `.?AVNoopMoveCallback@CompactingStore@@` +`class CompactingStore::Store`: VTable [0x00000000031731B8, 0x0000000000000000 offset, 14 functions] `.?AVStore@CompactingStore@@` +`class IMemoryHeap`: VTable [0x0000000003173AB0, 0x0000000000000000 offset, 28 functions] `.?AVIMemoryHeap@@` +`class ZeroOverheadHeap`: VTable [0x0000000003173BC8, 0x0000000000000000 offset, 28 functions] `.?AVZeroOverheadHeap@@` +`class UnitTestZeroOverheadHeap`: VTable [0x0000000003173CE0, 0x0000000000000000 offset, 28 functions] `.?AVUnitTestZeroOverheadHeap@@` +`class IMemoryStoreBase::IBlockWalker`: VTable [0x0000000003173F10, 0x0000000000000000 offset, 6 functions] `.?AVIBlockWalker@IMemoryStoreBase@@` +`class IMemoryStoreBase`: VTable [0x0000000003173F58, 0x0000000000000000 offset, 14 functions] `.?AVIMemoryStoreBase@@` +`class IMemoryStore`: VTable [0x0000000003173FE8, 0x0000000000000000 offset, 17 functions] `.?AVIMemoryStore@@` +`class BSSmallBlockAllocatorUtil::UserPoolBase`: VTable [0x00000000031742F8, 0x0000000000000000 offset, 3 functions] `.?AVUserPoolBase@BSSmallBlockAllocatorUtil@@` +`class BSSmallBlockAllocator`: VTable [0x0000000003174320, 0x0000000000000000 offset, 17 functions] `.?AVBSSmallBlockAllocator@@` +`class BSStepThread`: VTable [0x0000000003174C80, 0x0000000000000000 offset, 4 functions] `.?AVBSStepThread@@` +`class BSThreadEvent::`anonymous namespace'::Source`: VTable [0x0000000003174CB0, 0x0000000000000000 offset, 1 functions] `.?AVSource@?A0x8c5a22c1@BSThreadEvent@@` +`class MemoryTrashing::TrashingEventSource`: VTable [0x0000000003174F80, 0x0000000000000000 offset, 1 functions] `.?AVTrashingEventSource@MemoryTrashing@@` +`class AbstractHeap`: VTable [0x00000000031753C0, 0x0000000000000000 offset, 34 functions] `.?AVAbstractHeap@@` +`class BSWin32GamerProfile`: VTable [0x0000000003177548, 0x0000000000000000 offset, 6 functions] `.?AVBSWin32GamerProfile@@` +`class BSTEventSink`: VTable [0x00000000031777D0, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@VBSSaveDataEvent@@@@` +`class BSGamerProfile`: VTable [0x00000000031777F0, 0x0000000000000000 offset, 6 functions] `.?AVBSGamerProfile@@` +`class InputEvent`: VTable [0x00000000031781B8, 0x0000000000000000 offset, 3 functions] `.?AVInputEvent@@` +`class IDEvent`: VTable [0x00000000031781E0, 0x0000000000000000 offset, 3 functions] `.?AVIDEvent@@` +`class ButtonEvent`: VTable [0x0000000003178208, 0x0000000000000000 offset, 3 functions] `.?AVButtonEvent@@` +`class MouseMoveEvent`: VTable [0x0000000003178488, 0x0000000000000000 offset, 3 functions] `.?AVMouseMoveEvent@@` +`class ThumbstickEvent`: VTable [0x00000000031784B0, 0x0000000000000000 offset, 3 functions] `.?AVThumbstickEvent@@` +`class CharEvent`: VTable [0x00000000031784D8, 0x0000000000000000 offset, 3 functions] `.?AVCharEvent@@` +`class DeviceConnectEvent`: VTable [0x0000000003178500, 0x0000000000000000 offset, 3 functions] `.?AVDeviceConnectEvent@@` +`class KinectEvent`: VTable [0x0000000003178528, 0x0000000000000000 offset, 3 functions] `.?AVKinectEvent@@` +`class BSIInputDevice`: VTable [0x0000000003178B80, 0x0000000000000000 offset, 9 functions] `.?AVBSIInputDevice@@` +`class BSInputDevice`: VTable [0x0000000003178BE0, 0x0000000000000000 offset, 9 functions] `.?AVBSInputDevice@@` +`class BSWin32KeyboardDevice`: VTable [0x0000000003178C40, 0x0000000000000000 offset, 11 functions] `.?AVBSWin32KeyboardDevice@@` +`class BSWin32MouseDevice`: VTable [0x0000000003178CB8, 0x0000000000000000 offset, 10 functions] `.?AVBSWin32MouseDevice@@` +`class BSPCGamepadDeviceHandler`: VTable [0x0000000003179048, 0x0000000000000000 offset, 9 functions] `.?AVBSPCGamepadDeviceHandler@@` +`class BSPCGamepadDeviceDelegate`: VTable [0x00000000031790A8, 0x0000000000000000 offset, 15 functions] `.?AVBSPCGamepadDeviceDelegate@@` +`class BSWin32GamepadDevice`: VTable [0x0000000003179148, 0x0000000000000000 offset, 15 functions] `.?AVBSWin32GamepadDevice@@` +`class BSPCOrbisGamepadDevice`: VTable [0x00000000031791E8, 0x0000000000000000 offset, 15 functions] `.?AVBSPCOrbisGamepadDevice@@` +`class BSKeyboardDevice`: VTable [0x0000000003179438, 0x0000000000000000 offset, 11 functions] `.?AVBSKeyboardDevice@@` +`class BSWin32VirtualKeyboardDevice`: VTable [0x00000000031794C0, 0x0000000000000000 offset, 14 functions] `.?AVBSWin32VirtualKeyboardDevice@@` +`class BSMouseDevice`: VTable [0x0000000003179680, 0x0000000000000000 offset, 10 functions] `.?AVBSMouseDevice@@` +`class BSGamepadDevice`: VTable [0x0000000003179B38, 0x0000000000000000 offset, 15 functions] `.?AVBSGamepadDevice@@` +`class BSVirtualKeyboardDevice`: VTable [0x0000000003179F78, 0x0000000000000000 offset, 14 functions] `.?AVBSVirtualKeyboardDevice@@` +`class ICommandLineHandler`: VTable [0x000000000317ACE0, 0x0000000000000000 offset, 2 functions] `.?AVICommandLineHandler@@` +`class StackTrace::StackTraceCapture`: VTable [0x000000000317AD00, 0x0000000000000000 offset, 1 functions] `.?AV?$StackTraceCapture@UPCPolicy@StackTrace@@@StackTrace@@` +`class `anonymous namespace'::MemoryTraceWriteCommandLineHandler`: VTable [0x000000000317AD18, 0x0000000000000000 offset, 2 functions] `.?AVMemoryTraceWriteCommandLineHandler@?A0x50810a3d@@` +`class StackTrace::StackTraceRecorder`: VTable [0x000000000317B098, 0x0000000000000000 offset, 1 functions] `.?AVStackTraceRecorder@StackTrace@@` +`class BSWin32ExceptionHandler`: VTable [0x000000000317B3C0, 0x0000000000000000 offset, 8 functions] `.?AVBSWin32ExceptionHandler@@` +`class `anonymous namespace'::StackWalker`: VTable [0x000000000317B418, 0x0000000000000000 offset, 6 functions] `.?AVStackWalker@?A0x0ea6cbd5@@` +`class BSTMessageQueue`: VTable [0x000000000317BB50, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@UStackFrameDatum@StackTrace@@@@` +`class BSTCommonMessageQueue`: VTable [0x000000000317BB90, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@UStackFrameDatum@StackTrace@@@@` +`class BSTCommonStaticMessageQueue`: VTable [0x000000000317BBE0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonStaticMessageQueue@UStackFrameDatum@StackTrace@@$0BAA@@@` +`class StackTrace::MemoryTraceWrite`: VTable [0x000000000317BC30, 0x0000000000000000 offset, 3 functions] `.?AVMemoryTraceWrite@StackTrace@@` +`class StackTrace::StackTraceTranslate`: VTable [0x000000000317BE80, 0x0000000000000000 offset, 1 functions] `.?AVStackTraceTranslate@StackTrace@@` +`class StackTrace::MemoryTracker`: VTable [0x000000000317C0F8, 0x0000000000000000 offset, 8 functions] `.?AVMemoryTracker@StackTrace@@` +`class `anonymous namespace'::AssertHandler`: VTable [0x000000000317C1A8, 0x0000000000000000 offset, 2 functions] `.?AVAssertHandler@?A0xa495476b@@` +`class BSTEventSink`: VTable [0x000000000317C348, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UTrashEvent@MemoryTrashing@@@@` +`class BSExceptionHandler`: VTable [0x000000000317C368, 0x0000000000000000 offset, 8 functions] `.?AVBSExceptionHandler@@` +`class bhkNiCollisionObject`: VTable [0x000000000317D168, 0x0000000000000000 offset, 52 functions] `.?AVbhkNiCollisionObject@@` +`class bhkWindListener`: VTable [0x000000000317D4F0, 0x0000000000000000 offset, 11 functions] `.?AVbhkWindListener@@` +`class bhkWorldObject`: VTable [0x000000000317DD38, 0x0000000000000000 offset, 55 functions] `.?AVbhkWorldObject@@` +`class bhkTaskletManagerCallback`: VTable [0x000000000317EC68, 0x0000000000000000 offset, 2 functions] `.?AVbhkTaskletManagerCallback@@` +`class bhkOnStartupCallback`: VTable [0x000000000317EC88, 0x0000000000000000 offset, 2 functions] `.?AVbhkOnStartupCallback@@` +`class bhkOnExitCallback`: VTable [0x000000000317ECA8, 0x0000000000000000 offset, 2 functions] `.?AVbhkOnExitCallback@@` +`class ahkpWorld`: VTable [0x000000000317F978, 0x0000000000000000 offset, 3 functions] `.?AVahkpWorld@@` +`struct bhkWorldCinfo`: VTable [0x000000000317F9A0, 0x0000000000000000 offset, 3 functions] `.?AUbhkWorldCinfo@@` +`class bhkWorld::bhkConstraintProjector`: VTable [0x000000000317F9C8, 0x0000000000000000 offset, 7 functions] `.?AVbhkConstraintProjector@bhkWorld@@` +`class bhkWorld`: VTable [0x000000000317FA18, 0x0000000000000000 offset, 58 functions] `.?AVbhkWorld@@` +`class bhkAction`: VTable [0x000000000317FC50, 0x0000000000000000 offset, 53 functions] `.?AVbhkAction@@` +`class bhkUnaryAction`: VTable [0x000000000317FE58, 0x0000000000000000 offset, 53 functions] `.?AVbhkUnaryAction@@` +`class bhkMouseSpringAction`: VTable [0x0000000003180060, 0x0000000000000000 offset, 53 functions] `.?AVbhkMouseSpringAction@@` +`class bhkRefObject`: VTable [0x0000000003180BE0, 0x0000000000000000 offset, 41 functions] `.?AVbhkRefObject@@` +`class bhkSphereShape`: VTable [0x0000000003182428, 0x0000000000000000 offset, 59 functions] `.?AVbhkSphereShape@@` +`class bhkAttachmentCollisionObject`: VTable [0x0000000003182748, 0x0000000000000000 offset, 52 functions] `.?AVbhkAttachmentCollisionObject@@` +`struct hkConstraintCinfo`: VTable [0x0000000003182FF8, 0x0000000000000000 offset, 6 functions] `.?AUhkConstraintCinfo@@` +`class bhkConstraint`: VTable [0x0000000003183040, 0x0000000000000000 offset, 57 functions] `.?AVbhkConstraint@@` +`struct hkStiffSpringConstraintCinfo`: VTable [0x0000000003183270, 0x0000000000000000 offset, 6 functions] `.?AUhkStiffSpringConstraintCinfo@@` +`class bhkStiffSpringConstraint`: VTable [0x00000000031832B8, 0x0000000000000000 offset, 57 functions] `.?AVbhkStiffSpringConstraint@@` +`struct hkBallAndSocketConstraintCinfo`: VTable [0x00000000031834E8, 0x0000000000000000 offset, 6 functions] `.?AUhkBallAndSocketConstraintCinfo@@` +`struct hkGenericConstraintCinfo`: VTable [0x0000000003183530, 0x0000000000000000 offset, 6 functions] `.?AUhkGenericConstraintCinfo@@` +`struct hkFixedConstraintCinfo`: VTable [0x0000000003183578, 0x0000000000000000 offset, 6 functions] `.?AUhkFixedConstraintCinfo@@` +`class bhkBinaryAction`: VTable [0x0000000003183950, 0x0000000000000000 offset, 56 functions] `.?AVbhkBinaryAction@@` +`class `anonymous namespace'::bhkConstraintDisabler`: VTable [0x0000000003183BF0, 0x0000000000000000 offset, 7 functions] `.?AVbhkConstraintDisabler@?A0x4be2edd9@@` +`class bhkTransformShape`: VTable [0x00000000031843F0, 0x0000000000000000 offset, 59 functions] `.?AVbhkTransformShape@@` +`class bhkCapsuleShape`: VTable [0x00000000031849E8, 0x0000000000000000 offset, 59 functions] `.?AVbhkCapsuleShape@@` +`struct hkLimitedHingeConstraintCinfo`: VTable [0x0000000003184EA8, 0x0000000000000000 offset, 6 functions] `.?AUhkLimitedHingeConstraintCinfo@@` +`class bhkLimitedHingeConstraint`: VTable [0x0000000003184EF0, 0x0000000000000000 offset, 57 functions] `.?AVbhkLimitedHingeConstraint@@` +`class ahkpMalleableConstraintData`: VTable [0x00000000031854F8, 0x0000000000000000 offset, 19 functions] `.?AVahkpMalleableConstraintData@@` +`struct hkMalleableConstraintCinfo`: VTable [0x00000000031855B8, 0x0000000000000000 offset, 6 functions] `.?AUhkMalleableConstraintCinfo@@` +`class bhkMalleableConstraint`: VTable [0x0000000003185600, 0x0000000000000000 offset, 57 functions] `.?AVbhkMalleableConstraint@@` +`class bhkCollisionFilter`: VTable [0x0000000003185D40, 0x0000000000000000 offset, 4 functions] `.?AVbhkCollisionFilter@@` +`class bhkCollisionFilter`: VTable [0x0000000003185D70, 0x0000000000000010 offset, 2 functions] `.?AVbhkCollisionFilter@@` +`class bhkCollisionFilter`: VTable [0x0000000003185D90, 0x0000000000000018 offset, 4 functions] `.?AVbhkCollisionFilter@@` +`class bhkCollisionFilter`: VTable [0x0000000003185DC0, 0x0000000000000020 offset, 2 functions] `.?AVbhkCollisionFilter@@` +`class bhkCollisionFilter`: VTable [0x0000000003185DE0, 0x0000000000000028 offset, 2 functions] `.?AVbhkCollisionFilter@@` +`class bhkRagdollShareData`: VTable [0x00000000031881B8, 0x0000000000000000 offset, 39 functions] `.?AVbhkRagdollShareData@@` +`class bhkRagdollController`: VTable [0x0000000003188338, 0x0000000000000000 offset, 3 functions] `.?AVbhkRagdollController@@` +`class bhkRigidBodyT`: VTable [0x0000000003188980, 0x0000000000000000 offset, 65 functions] `.?AVbhkRigidBodyT@@` +`class bhkWorldM`: VTable [0x0000000003188D80, 0x0000000000000000 offset, 58 functions] `.?AVbhkWorldM@@` +`class NiTLargeArray >`: VTable [0x00000000031896E8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@VhkNiTriStripsData@@V?$NiTNewInterface@VhkNiTriStripsData@@@@@@` +`class NiTLargeObjectArray`: VTable [0x0000000003189700, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeObjectArray@VhkNiTriStripsData@@@@` +`class hkNiTriStripsShape`: VTable [0x0000000003189718, 0x0000000000000000 offset, 14 functions] `.?AVhkNiTriStripsShape@@` +`class hkNiTriStripsShape`: VTable [0x00000000031897A8, 0x0000000000000020 offset, 7 functions] `.?AVhkNiTriStripsShape@@` +`class hkNormalTriangleShape`: VTable [0x00000000031897F8, 0x0000000000000000 offset, 19 functions] `.?AVhkNormalTriangleShape@@` +`class hkPackedNiTriStripsData`: VTable [0x0000000003189C30, 0x0000000000000000 offset, 39 functions] `.?AVhkPackedNiTriStripsData@@` +`class hkPackedNiTriStripsShape`: VTable [0x0000000003189DB0, 0x0000000000000000 offset, 14 functions] `.?AVhkPackedNiTriStripsShape@@` +`class hkPackedNiTriStripsShape`: VTable [0x0000000003189E40, 0x0000000000000020 offset, 7 functions] `.?AVhkPackedNiTriStripsShape@@` +`class bhkShapeCollection`: VTable [0x000000000318A328, 0x0000000000000000 offset, 60 functions] `.?AVbhkShapeCollection@@` +`class bhkNiTriStripsShape`: VTable [0x000000000318A5C0, 0x0000000000000000 offset, 60 functions] `.?AVbhkNiTriStripsShape@@` +`class bhkPackedNiTriStripsShape`: VTable [0x000000000318AB98, 0x0000000000000000 offset, 60 functions] `.?AVbhkPackedNiTriStripsShape@@` +`class NiTArray >`: VTable [0x000000000318AE48, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@GV?$NiTMallocInterface@G@@@@` +`class NiTPrimitiveArray`: VTable [0x000000000318AE60, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@G@@` +`class bhkBlendCollisionObject`: VTable [0x000000000318AF78, 0x0000000000000000 offset, 52 functions] `.?AVbhkBlendCollisionObject@@` +`class hkBSHeightFieldShape`: VTable [0x000000000318B438, 0x0000000000000000 offset, 15 functions] `.?AVhkBSHeightFieldShape@@` +`class hkProductFeatures`: VTable [0x000000000318E288, 0x0000000000000000 offset, 3 functions] `.?AVhkProductFeatures@@` +`class BSTEventSink`: VTable [0x000000000318E2B0, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UThreadEvent@BSThreadEvent@@@@` +`class `anonymous namespace'::HavokThreadMemorySink`: VTable [0x000000000318E2D0, 0x0000000000000000 offset, 2 functions] `.?AVHavokThreadMemorySink@?A0xc885a2a7@@` +`class hkpCharacterState`: VTable [0x000000000318F048, 0x0000000000000000 offset, 8 functions] `.?AVhkpCharacterState@@` +`class bhkCharacterState`: VTable [0x000000000318F0A0, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterState@@` +`class BSBound`: VTable [0x000000000318F100, 0x0000000000000000 offset, 41 functions] `.?AVBSBound@@` +`class bhkCharacterControllerCinfo`: VTable [0x000000000318F298, 0x0000000000000000 offset, 6 functions] `.?AVbhkCharacterControllerCinfo@@` +`class bhkCharacterController`: VTable [0x000000000318F2E0, 0x0000000000000000 offset, 20 functions] `.?AVbhkCharacterController@@` +`class bhkICharOrientationController`: VTable [0x000000000318F3B0, 0x0000000000000000 offset, 11 functions] `.?AVbhkICharOrientationController@@` +`class bhkCharacterStateClimbing`: VTable [0x000000000318F428, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateClimbing@@` +`class bhkCharacterStateFlying`: VTable [0x000000000318F488, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateFlying@@` +`class bhkCollisionBox`: VTable [0x000000000318F4E8, 0x0000000000000000 offset, 56 functions] `.?AVbhkCollisionBox@@` +`class bhkListShape`: VTable [0x000000000318F710, 0x0000000000000000 offset, 60 functions] `.?AVbhkListShape@@` +`class bhkCachingShapePhantom`: VTable [0x0000000003190700, 0x0000000000000000 offset, 55 functions] `.?AVbhkCachingShapePhantom@@` +`class hkpSafeEaseConstraintsAction`: VTable [0x0000000003190A28, 0x0000000000000000 offset, 8 functions] `.?AVhkpSafeEaseConstraintsAction@@` +`class hkpSafeEaseConstraintsAction`: VTable [0x0000000003190A80, 0x0000000000000068 offset, 7 functions] `.?AVhkpSafeEaseConstraintsAction@@` +`class hkVisualDebugger`: VTable [0x0000000003190AD0, 0x0000000000000000 offset, 5 functions] `.?AVhkVisualDebugger@@` +`class hkProcessContext`: VTable [0x0000000003191008, 0x0000000000000000 offset, 3 functions] `.?AVhkProcessContext@@` +`class hkpActionListener`: VTable [0x0000000003191030, 0x0000000000000000 offset, 3 functions] `.?AVhkpActionListener@@` +`class hkpPhysicsContext`: VTable [0x0000000003191058, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhysicsContext@@` +`class hkpPhysicsContext`: VTable [0x0000000003191080, 0x0000000000000010 offset, 3 functions] `.?AVhkpPhysicsContext@@` +`class hkpPhysicsContext`: VTable [0x00000000031910A8, 0x00000000000000A0 offset, 3 functions] `.?AVhkpPhysicsContext@@` +`class hkpPhysicsContext`: VTable [0x00000000031910D0, 0x00000000000000A8 offset, 6 functions] `.?AVhkpPhysicsContext@@` +`class hkpPhysicsContext`: VTable [0x0000000003191118, 0x00000000000000B0 offset, 5 functions] `.?AVhkpPhysicsContext@@` +`class hkpPhysicsContext`: VTable [0x0000000003191158, 0x00000000000000B8 offset, 7 functions] `.?AVhkpPhysicsContext@@` +`class hkpPhysicsContext`: VTable [0x00000000031911A8, 0x00000000000000C0 offset, 3 functions] `.?AVhkpPhysicsContext@@` +`class bhkBipedOrientationController`: VTable [0x0000000003191480, 0x0000000000000000 offset, 11 functions] `.?AVbhkBipedOrientationController@@` +`class `anonymous namespace'::bhkLifoAllocator`: VTable [0x0000000003191510, 0x0000000000000000 offset, 11 functions] `.?AVbhkLifoAllocator@?A0x1f4d0554@@` +`class hkThreadMemory`: VTable [0x00000000031917F8, 0x0000000000000000 offset, 12 functions] `.?AVhkThreadMemory@@` +`class bhkMemorySystem`: VTable [0x0000000003191878, 0x0000000000000000 offset, 23 functions] `.?AVbhkMemorySystem@@` +`class hkaRagdollRaycastInterface`: VTable [0x0000000003192808, 0x0000000000000000 offset, 2 functions] `.?AVhkaRagdollRaycastInterface@@` +`class bhkRagdollPenetrationUtil`: VTable [0x0000000003192828, 0x0000000000000000 offset, 2 functions] `.?AVbhkRagdollPenetrationUtil@@` +`class hkpIslandActivationListener`: VTable [0x00000000031929F0, 0x0000000000000000 offset, 3 functions] `.?AVhkpIslandActivationListener@@` +`class hkpSuspendInactiveAgentsUtil`: VTable [0x0000000003192A18, 0x0000000000000000 offset, 3 functions] `.?AVhkpSuspendInactiveAgentsUtil@@` +`class hkpSuspendInactiveAgentsUtil`: VTable [0x0000000003192A40, 0x0000000000000010 offset, 3 functions] `.?AVhkpSuspendInactiveAgentsUtil@@` +`class hkpSuspendInactiveAgentsUtil`: VTable [0x0000000003192A68, 0x0000000000000018 offset, 3 functions] `.?AVhkpSuspendInactiveAgentsUtil@@` +`class `anonymous namespace'::NeverCollideFilter`: VTable [0x0000000003192A90, 0x0000000000000000 offset, 4 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` +`class `anonymous namespace'::NeverCollideFilter`: VTable [0x0000000003192AC0, 0x0000000000000010 offset, 2 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` +`class `anonymous namespace'::NeverCollideFilter`: VTable [0x0000000003192AE0, 0x0000000000000018 offset, 4 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` +`class `anonymous namespace'::NeverCollideFilter`: VTable [0x0000000003192B10, 0x0000000000000020 offset, 2 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` +`class `anonymous namespace'::NeverCollideFilter`: VTable [0x0000000003192B30, 0x0000000000000028 offset, 2 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` +`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x0000000003192B50, 0x0000000000000000 offset, 4 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` +`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x0000000003192B80, 0x0000000000000010 offset, 2 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` +`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x0000000003192BA0, 0x0000000000000018 offset, 4 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` +`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x0000000003192BD0, 0x0000000000000020 offset, 2 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` +`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x0000000003192BF0, 0x0000000000000028 offset, 2 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` +`class hkPackfileWriter::AddObjectListener`: VTable [0x0000000003192C10, 0x0000000000000000 offset, 4 functions] `.?AVAddObjectListener@hkPackfileWriter@@` +`class hkpHavokSnapshot::ConvertListener`: VTable [0x0000000003192C40, 0x0000000000000000 offset, 4 functions] `.?AVConvertListener@hkpHavokSnapshot@@` +`class bhkCompressedMeshShapeData`: VTable [0x00000000031933D0, 0x0000000000000000 offset, 39 functions] `.?AVbhkCompressedMeshShapeData@@` +`class bhkCompressedMeshShape`: VTable [0x0000000003193550, 0x0000000000000000 offset, 60 functions] `.?AVbhkCompressedMeshShape@@` +`class `anonymous namespace'::hkpCompressedMeshShapeShared`: VTable [0x0000000003193948, 0x0000000000000000 offset, 13 functions] `.?AVhkpCompressedMeshShapeShared@?A0xc671c7f6@@` +`class `anonymous namespace'::hkpCompressedMeshShapeShared`: VTable [0x00000000031939D0, 0x0000000000000020 offset, 7 functions] `.?AVhkpCompressedMeshShapeShared@?A0xc671c7f6@@` +`class bhkConvexSweepShape`: VTable [0x0000000003193D40, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexSweepShape@@` +`class bhkConvexTransformShape`: VTable [0x0000000003194238, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexTransformShape@@` +`class bhkConvexTranslateShape`: VTable [0x0000000003194738, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexTranslateShape@@` +`class bhkConvexVerticesShape`: VTable [0x0000000003194CF8, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexVerticesShape@@` +`class bhkCylinderShape`: VTable [0x0000000003195228, 0x0000000000000000 offset, 59 functions] `.?AVbhkCylinderShape@@` +`class bhkMultiSphereShape`: VTable [0x0000000003195758, 0x0000000000000000 offset, 59 functions] `.?AVbhkMultiSphereShape@@` +`class bhkHeightFieldShape`: VTable [0x0000000003195BE8, 0x0000000000000000 offset, 59 functions] `.?AVbhkHeightFieldShape@@` +`class bhkPlaneShape`: VTable [0x0000000003195E28, 0x0000000000000000 offset, 59 functions] `.?AVbhkPlaneShape@@` +`class bhkTriangleShape`: VTable [0x0000000003196478, 0x0000000000000000 offset, 59 functions] `.?AVbhkTriangleShape@@` +`class hkScaledMoppBvTreeShape`: VTable [0x00000000031969A0, 0x0000000000000000 offset, 14 functions] `.?AVhkScaledMoppBvTreeShape@@` +`class bhkMoppBvTreeShape`: VTable [0x0000000003196A30, 0x0000000000000000 offset, 59 functions] `.?AVbhkMoppBvTreeShape@@` +`class bhkBallAndSocketConstraint`: VTable [0x00000000031972D8, 0x0000000000000000 offset, 57 functions] `.?AVbhkBallAndSocketConstraint@@` +`struct hkConstraintChainCinfo`: VTable [0x0000000003197798, 0x0000000000000000 offset, 6 functions] `.?AUhkConstraintChainCinfo@@` +`class bhkConstraintChain`: VTable [0x00000000031977E0, 0x0000000000000000 offset, 58 functions] `.?AVbhkConstraintChain@@` +`struct hkBallSocketChainCinfo`: VTable [0x0000000003197A18, 0x0000000000000000 offset, 6 functions] `.?AUhkBallSocketChainCinfo@@` +`class bhkBallSocketConstraintChain`: VTable [0x0000000003197A60, 0x0000000000000000 offset, 58 functions] `.?AVbhkBallSocketConstraintChain@@` +`class bhkGroupConstraint`: VTable [0x0000000003197E98, 0x0000000000000000 offset, 57 functions] `.?AVbhkGroupConstraint@@` +`struct hkHingeConstraintCinfo`: VTable [0x0000000003198370, 0x0000000000000000 offset, 6 functions] `.?AUhkHingeConstraintCinfo@@` +`class bhkHingeConstraint`: VTable [0x00000000031983B8, 0x0000000000000000 offset, 57 functions] `.?AVbhkHingeConstraint@@` +`struct hkHingeLimitsConstraintCinfo`: VTable [0x0000000003198870, 0x0000000000000000 offset, 6 functions] `.?AUhkHingeLimitsConstraintCinfo@@` +`class bhkHingeLimitsConstraint`: VTable [0x00000000031988B8, 0x0000000000000000 offset, 57 functions] `.?AVbhkHingeLimitsConstraint@@` +`class bhkGenericConstraint`: VTable [0x0000000003198D78, 0x0000000000000000 offset, 57 functions] `.?AVbhkGenericConstraint@@` +`class bhkFixedConstraint`: VTable [0x0000000003198FA8, 0x0000000000000000 offset, 57 functions] `.?AVbhkFixedConstraint@@` +`struct hkPrismaticConstraintCinfo`: VTable [0x0000000003199430, 0x0000000000000000 offset, 6 functions] `.?AUhkPrismaticConstraintCinfo@@` +`class bhkPrismaticConstraint`: VTable [0x0000000003199478, 0x0000000000000000 offset, 57 functions] `.?AVbhkPrismaticConstraint@@` +`struct hkRagdollConstraintCinfo`: VTable [0x0000000003199938, 0x0000000000000000 offset, 6 functions] `.?AUhkRagdollConstraintCinfo@@` +`class bhkRagdollConstraint`: VTable [0x0000000003199980, 0x0000000000000000 offset, 57 functions] `.?AVbhkRagdollConstraint@@` +`struct hkRagdollLimitsConstraintCinfo`: VTable [0x0000000003199EC8, 0x0000000000000000 offset, 6 functions] `.?AUhkRagdollLimitsConstraintCinfo@@` +`class bhkRagdollLimitsConstraint`: VTable [0x0000000003199F10, 0x0000000000000000 offset, 57 functions] `.?AVbhkRagdollLimitsConstraint@@` +`struct hkWheelConstraintCinfo`: VTable [0x000000000319A5A8, 0x0000000000000000 offset, 6 functions] `.?AUhkWheelConstraintCinfo@@` +`class bhkWheelConstraint`: VTable [0x000000000319A5F0, 0x0000000000000000 offset, 57 functions] `.?AVbhkWheelConstraint@@` +`class ahkpBreakableConstraintData`: VTable [0x000000000319AAD8, 0x0000000000000000 offset, 19 functions] `.?AVahkpBreakableConstraintData@@` +`struct hkBreakableConstraintCinfo`: VTable [0x000000000319AB98, 0x0000000000000000 offset, 6 functions] `.?AUhkBreakableConstraintCinfo@@` +`class bhkBreakableConstraint`: VTable [0x000000000319ABE0, 0x0000000000000000 offset, 57 functions] `.?AVbhkBreakableConstraint@@` +`class bhkAngularDashpotAction`: VTable [0x000000000319B060, 0x0000000000000000 offset, 56 functions] `.?AVbhkAngularDashpotAction@@` +`class bhkDashpotAction`: VTable [0x000000000319B488, 0x0000000000000000 offset, 56 functions] `.?AVbhkDashpotAction@@` +`class bhkLiquidAction`: VTable [0x000000000319B908, 0x0000000000000000 offset, 53 functions] `.?AVbhkLiquidAction@@` +`class bhkMotorAction`: VTable [0x000000000319BD30, 0x0000000000000000 offset, 53 functions] `.?AVbhkMotorAction@@` +`class bhkOrientHingedBodyAction`: VTable [0x000000000319C170, 0x0000000000000000 offset, 54 functions] `.?AVbhkOrientHingedBodyAction@@` +`class bhkSpringAction`: VTable [0x000000000319C5B8, 0x0000000000000000 offset, 56 functions] `.?AVbhkSpringAction@@` +`class bhkSPCollisionObject`: VTable [0x000000000319C8E0, 0x0000000000000000 offset, 52 functions] `.?AVbhkSPCollisionObject@@` +`class bhkBlendController`: VTable [0x000000000319CC48, 0x0000000000000000 offset, 49 functions] `.?AVbhkBlendController@@` +`class bhkExtraData`: VTable [0x000000000319D180, 0x0000000000000000 offset, 41 functions] `.?AVbhkExtraData@@` +`class bhkRagdollTemplateData`: VTable [0x000000000319D7C8, 0x0000000000000000 offset, 39 functions] `.?AVbhkRagdollTemplateData@@` +`class bhkRagdollTemplate`: VTable [0x000000000319D990, 0x0000000000000000 offset, 42 functions] `.?AVbhkRagdollTemplate@@` +`class bhkPoseArray`: VTable [0x000000000319DCF8, 0x0000000000000000 offset, 39 functions] `.?AVbhkPoseArray@@` +`struct hkPointToPathConstraintCinfo`: VTable [0x000000000319E4A0, 0x0000000000000000 offset, 6 functions] `.?AUhkPointToPathConstraintCinfo@@` +`class bhkPositionConstraintMotor`: VTable [0x000000000319E6F0, 0x0000000000000000 offset, 26 functions] `.?AVbhkPositionConstraintMotor@@` +`class bhkVelocityConstraintMotor`: VTable [0x000000000319E8C8, 0x0000000000000000 offset, 26 functions] `.?AVbhkVelocityConstraintMotor@@` +`class bhkSpringDamperConstraintMotor`: VTable [0x000000000319EAB0, 0x0000000000000000 offset, 26 functions] `.?AVbhkSpringDamperConstraintMotor@@` +`class hkDisplayGeometry`: VTable [0x000000000319EC10, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayGeometry@@` +`class hkDisplayCapsule`: VTable [0x000000000319EC50, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayCapsule@@` +`class hkpTriSampledHeightFieldBvTreeShape`: VTable [0x000000000319F3E0, 0x0000000000000000 offset, 14 functions] `.?AVhkpTriSampledHeightFieldBvTreeShape@@` +`class hkpHeightFieldShape`: VTable [0x000000000319F470, 0x0000000000000000 offset, 13 functions] `.?AVhkpHeightFieldShape@@` +`class hkpSampledHeightFieldShape`: VTable [0x000000000319F4F8, 0x0000000000000000 offset, 15 functions] `.?AVhkpSampledHeightFieldShape@@` +`struct `anonymous namespace'::NearestHitCollector`: VTable [0x000000000319F5B0, 0x0000000000000000 offset, 2 functions] `.?AUNearestHitCollector@?A0x498db440@@` +`struct `anonymous namespace'::RotateNormalHitCollector`: VTable [0x000000000319F5D0, 0x0000000000000000 offset, 2 functions] `.?AURotateNormalHitCollector@?A0x498db440@@` +`class hkpTriSampledHeightFieldCollection`: VTable [0x000000000319F5F0, 0x0000000000000000 offset, 13 functions] `.?AVhkpTriSampledHeightFieldCollection@@` +`class hkpTriSampledHeightFieldCollection`: VTable [0x000000000319F678, 0x0000000000000020 offset, 7 functions] `.?AVhkpTriSampledHeightFieldCollection@@` +`class hkpCompressedSampledHeightFieldShape`: VTable [0x000000000319F6C8, 0x0000000000000000 offset, 15 functions] `.?AVhkpCompressedSampledHeightFieldShape@@` +`struct hkMonitorStreamColorTable`: VTable [0x000000000320B718, 0x0000000000000000 offset, 3 functions] `.?AUhkMonitorStreamColorTable@@` +`class hkpFastMeshShape`: VTable [0x000000000320BAD0, 0x0000000000000000 offset, 14 functions] `.?AVhkpFastMeshShape@@` +`class hkpFastMeshShape`: VTable [0x000000000320BB60, 0x0000000000000020 offset, 7 functions] `.?AVhkpFastMeshShape@@` +`class hkpPlaneShape`: VTable [0x000000000320C8E0, 0x0000000000000000 offset, 13 functions] `.?AVhkpPlaneShape@@` +`class hkpStorageSampledHeightFieldShape`: VTable [0x000000000320C980, 0x0000000000000000 offset, 15 functions] `.?AVhkpStorageSampledHeightFieldShape@@` +`class hkbCameraShakeEventPayload`: VTable [0x000000000320E328, 0x0000000000000000 offset, 3 functions] `.?AVhkbCameraShakeEventPayload@@` +`class hkbParticleSystemEventPayload`: VTable [0x000000000320E378, 0x0000000000000000 offset, 3 functions] `.?AVhkbParticleSystemEventPayload@@` +`class hkbStateChooser`: VTable [0x000000000320E3C8, 0x0000000000000000 offset, 4 functions] `.?AVhkbStateChooser@@` +`class hkbTestStateChooser`: VTable [0x000000000320E3F8, 0x0000000000000000 offset, 4 functions] `.?AVhkbTestStateChooser@@` +`class hkbSimulationControlCommand`: VTable [0x000000000320E448, 0x0000000000000000 offset, 3 functions] `.?AVhkbSimulationControlCommand@@` +`class hkbCharacterControlCommand`: VTable [0x000000000320E470, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterControlCommand@@` +`class hkbRaiseEventCommand`: VTable [0x000000000320E498, 0x0000000000000000 offset, 3 functions] `.?AVhkbRaiseEventCommand@@` +`class hkbSetWordVariableCommand`: VTable [0x000000000320E4C0, 0x0000000000000000 offset, 3 functions] `.?AVhkbSetWordVariableCommand@@` +`class hkbSetLocalTimeOfClipGeneratorCommand`: VTable [0x000000000320E4E8, 0x0000000000000000 offset, 3 functions] `.?AVhkbSetLocalTimeOfClipGeneratorCommand@@` +`class hkbSetBehaviorCommand`: VTable [0x000000000320E510, 0x0000000000000000 offset, 3 functions] `.?AVhkbSetBehaviorCommand@@` +`class hkbSetNodePropertyCommand`: VTable [0x000000000320E538, 0x0000000000000000 offset, 3 functions] `.?AVhkbSetNodePropertyCommand@@` +`class hkbCharacterAddedInfo`: VTable [0x000000000320E560, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterAddedInfo@@` +`class hkbCharacterInfo`: VTable [0x000000000320E588, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterInfo@@` +`class hkbCharacterSteppedInfo`: VTable [0x000000000320E5B0, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterSteppedInfo@@` +`class hkbCharacterSkinInfo`: VTable [0x000000000320E5D8, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterSkinInfo@@` +`class hkbBehaviorInfo`: VTable [0x000000000320E600, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorInfo@@` +`class hkbBehaviorEventsInfo`: VTable [0x000000000320E628, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorEventsInfo@@` +`class hkbEventRaisedInfo`: VTable [0x000000000320E650, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventRaisedInfo@@` +`class hkbSimulationStateInfo`: VTable [0x000000000320E678, 0x0000000000000000 offset, 3 functions] `.?AVhkbSimulationStateInfo@@` +`class hkbLinkedSymbolInfo`: VTable [0x000000000320E6A0, 0x0000000000000000 offset, 3 functions] `.?AVhkbLinkedSymbolInfo@@` +`class hkbAuxiliaryNodeInfo`: VTable [0x000000000320E6C8, 0x0000000000000000 offset, 3 functions] `.?AVhkbAuxiliaryNodeInfo@@` +`class hkbBehaviorGraphInternalStateInfo`: VTable [0x000000000320E6F0, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorGraphInternalStateInfo@@` +`class hkClassPointerVtable::VtableRegistry`: VTable [0x000000000320EA78, 0x0000000000000000 offset, 6 functions] `.?AVVtableRegistry@hkClassPointerVtable@@` +`struct hkSerializeDeprecated2`: VTable [0x000000000320EAC0, 0x0000000000000000 offset, 7 functions] `.?AUhkSerializeDeprecated2@@` +`class hkpHeightFieldAgent`: VTable [0x000000000320EC80, 0x0000000000000000 offset, 14 functions] `.?AVhkpHeightFieldAgent@@` +`class hkpSymmetricAgentLinearCast`: VTable [0x000000000320ED10, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpHeightFieldAgent@@@@` +`class hkpSymmetricAgent`: VTable [0x000000000320EDA0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpHeightFieldAgent@@@@` +`class hkHeightFieldRayForwardingCollector`: VTable [0x000000000320EEC8, 0x0000000000000000 offset, 2 functions] `.?AVhkHeightFieldRayForwardingCollector@@` +`class hkpContinuousSimulation`: VTable [0x000000000320EF10, 0x0000000000000000 offset, 22 functions] `.?AVhkpContinuousSimulation@@` +`class hkpMultiThreadedSimulation::MtEntityEntityBroadPhaseListener`: VTable [0x000000000320F270, 0x0000000000000000 offset, 3 functions] `.?AVMtEntityEntityBroadPhaseListener@hkpMultiThreadedSimulation@@` +`class hkpMultiThreadedSimulation::MtPhantomBroadPhaseListener`: VTable [0x000000000320F298, 0x0000000000000000 offset, 3 functions] `.?AVMtPhantomBroadPhaseListener@hkpMultiThreadedSimulation@@` +`class hkpMultiThreadedSimulation::MtBroadPhaseBorderListener`: VTable [0x000000000320F2C0, 0x0000000000000000 offset, 3 functions] `.?AVMtBroadPhaseBorderListener@hkpMultiThreadedSimulation@@` +`class hkpMultiThreadedSimulation`: VTable [0x000000000320F2E8, 0x0000000000000000 offset, 22 functions] `.?AVhkpMultiThreadedSimulation@@` +`class hkpCharacterContext`: VTable [0x000000000323C660, 0x0000000000000000 offset, 3 functions] `.?AVhkpCharacterContext@@` +`class hkpCharacterStateManager`: VTable [0x000000000323C688, 0x0000000000000000 offset, 3 functions] `.?AVhkpCharacterStateManager@@` +`class bhkCharacterStateInAir`: VTable [0x000000000323C770, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateInAir@@` +`class bhkCharacterStateJumping`: VTable [0x000000000323C800, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateJumping@@` +`class bhkCharacterStateOnGround`: VTable [0x000000000323CA10, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateOnGround@@` +`class bhkCharacterStateSwimming`: VTable [0x000000000323CB58, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateSwimming@@` +`class hkCharControllerShape`: VTable [0x000000000323CCA0, 0x0000000000000000 offset, 19 functions] `.?AVhkCharControllerShape@@` +`class bhkCharControllerShape`: VTable [0x000000000323CD60, 0x0000000000000000 offset, 59 functions] `.?AVbhkCharControllerShape@@` +`class bhkQuadOrientationController`: VTable [0x000000000323D1A0, 0x0000000000000000 offset, 11 functions] `.?AVbhkQuadOrientationController@@` +`class `anonymous namespace'::bhkClosestRBRayHitCollector`: VTable [0x000000000323D328, 0x0000000000000000 offset, 2 functions] `.?AVbhkClosestRBRayHitCollector@?A0xb817b125@@` +`class hkProcessFactory`: VTable [0x000000000323D3B0, 0x0000000000000000 offset, 3 functions] `.?AVhkProcessFactory@@` +`class hkProcess`: VTable [0x000000000323D3F0, 0x0000000000000000 offset, 8 functions] `.?AVhkProcess@@` +`class hkCommandRouter`: VTable [0x000000000323D448, 0x0000000000000000 offset, 3 functions] `.?AVhkCommandRouter@@` +`class hkProcessHandler`: VTable [0x000000000323D470, 0x0000000000000000 offset, 9 functions] `.?AVhkProcessHandler@@` +`class hkServerProcessHandler`: VTable [0x000000000323D4D0, 0x0000000000000000 offset, 3 functions] `.?AVhkServerProcessHandler@@` +`class hkServerProcessHandler`: VTable [0x000000000323D4F8, 0x0000000000000010 offset, 9 functions] `.?AVhkServerProcessHandler@@` +`class hkServerProcessHandler`: VTable [0x000000000323D558, 0x0000000000000018 offset, 8 functions] `.?AVhkServerProcessHandler@@` +`class hkDebugDisplayHandler`: VTable [0x000000000323D5D8, 0x0000000000000000 offset, 27 functions] `.?AVhkDebugDisplayHandler@@` +`class hkDebugDisplayProcess`: VTable [0x000000000323D6E8, 0x0000000000000000 offset, 3 functions] `.?AVhkDebugDisplayProcess@@` +`class hkDebugDisplayProcess`: VTable [0x000000000323D710, 0x0000000000000010 offset, 8 functions] `.?AVhkDebugDisplayProcess@@` +`class hkDebugDisplayProcess`: VTable [0x000000000323D768, 0x0000000000000040 offset, 27 functions] `.?AVhkDebugDisplayProcess@@` +`class hkInspectProcess`: VTable [0x000000000323D878, 0x0000000000000000 offset, 3 functions] `.?AVhkInspectProcess@@` +`class hkInspectProcess`: VTable [0x000000000323D8A0, 0x0000000000000010 offset, 8 functions] `.?AVhkInspectProcess@@` +`class hkRemoteObjectProcess`: VTable [0x000000000323D910, 0x0000000000000000 offset, 3 functions] `.?AVhkRemoteObjectProcess@@` +`class hkRemoteObjectProcess`: VTable [0x000000000323D938, 0x0000000000000010 offset, 8 functions] `.?AVhkRemoteObjectProcess@@` +`class hkStatisticsProcess`: VTable [0x000000000323D990, 0x0000000000000000 offset, 3 functions] `.?AVhkStatisticsProcess@@` +`class hkStatisticsProcess`: VTable [0x000000000323D9B8, 0x0000000000000010 offset, 8 functions] `.?AVhkStatisticsProcess@@` +`class hkMemorySnapshotProcess`: VTable [0x000000000323DA20, 0x0000000000000000 offset, 3 functions] `.?AVhkMemorySnapshotProcess@@` +`class hkMemorySnapshotProcess`: VTable [0x000000000323DA48, 0x0000000000000010 offset, 8 functions] `.?AVhkMemorySnapshotProcess@@` +`class hkpBroadphaseViewer`: VTable [0x000000000323DAC0, 0x0000000000000000 offset, 3 functions] `.?AVhkpBroadphaseViewer@@` +`class hkpBroadphaseViewer`: VTable [0x000000000323DAE8, 0x0000000000000010 offset, 8 functions] `.?AVhkpBroadphaseViewer@@` +`class hkpBroadphaseViewer`: VTable [0x000000000323DB40, 0x0000000000000040 offset, 3 functions] `.?AVhkpBroadphaseViewer@@` +`class hkpBroadphaseViewer`: VTable [0x000000000323DB68, 0x0000000000000050 offset, 3 functions] `.?AVhkpBroadphaseViewer@@` +`class hkpMidphaseViewer`: VTable [0x000000000323DBB0, 0x0000000000000000 offset, 3 functions] `.?AVhkpMidphaseViewer@@` +`class hkpMidphaseViewer`: VTable [0x000000000323DBD8, 0x0000000000000010 offset, 8 functions] `.?AVhkpMidphaseViewer@@` +`class hkpMidphaseViewer`: VTable [0x000000000323DC30, 0x0000000000000040 offset, 3 functions] `.?AVhkpMidphaseViewer@@` +`class hkpMidphaseViewer`: VTable [0x000000000323DC58, 0x0000000000000050 offset, 3 functions] `.?AVhkpMidphaseViewer@@` +`class hkpConstraintViewer`: VTable [0x000000000323DCA8, 0x0000000000000000 offset, 3 functions] `.?AVhkpConstraintViewer@@` +`class hkpConstraintViewer`: VTable [0x000000000323DCD0, 0x0000000000000010 offset, 8 functions] `.?AVhkpConstraintViewer@@` +`class hkpConstraintViewer`: VTable [0x000000000323DD28, 0x0000000000000040 offset, 3 functions] `.?AVhkpConstraintViewer@@` +`class hkpConstraintViewer`: VTable [0x000000000323DD50, 0x0000000000000050 offset, 3 functions] `.?AVhkpConstraintViewer@@` +`class hkpActiveContactPointViewer`: VTable [0x000000000323DDA0, 0x0000000000000000 offset, 4 functions] `.?AVhkpActiveContactPointViewer@@` +`class hkpActiveContactPointViewer`: VTable [0x000000000323DDD0, 0x0000000000000010 offset, 8 functions] `.?AVhkpActiveContactPointViewer@@` +`class hkpActiveContactPointViewer`: VTable [0x000000000323DE28, 0x0000000000000040 offset, 3 functions] `.?AVhkpActiveContactPointViewer@@` +`class hkpActiveContactPointViewer`: VTable [0x000000000323DE50, 0x0000000000000050 offset, 3 functions] `.?AVhkpActiveContactPointViewer@@` +`class hkpInactiveContactPointViewer`: VTable [0x000000000323DE98, 0x0000000000000000 offset, 4 functions] `.?AVhkpInactiveContactPointViewer@@` +`class hkpInactiveContactPointViewer`: VTable [0x000000000323DEC8, 0x0000000000000010 offset, 8 functions] `.?AVhkpInactiveContactPointViewer@@` +`class hkpInactiveContactPointViewer`: VTable [0x000000000323DF20, 0x0000000000000040 offset, 3 functions] `.?AVhkpInactiveContactPointViewer@@` +`class hkpInactiveContactPointViewer`: VTable [0x000000000323DF48, 0x0000000000000050 offset, 3 functions] `.?AVhkpInactiveContactPointViewer@@` +`class hkpToiContactPointViewer`: VTable [0x000000000323DF90, 0x0000000000000000 offset, 3 functions] `.?AVhkpToiContactPointViewer@@` +`class hkpToiContactPointViewer`: VTable [0x000000000323DFB8, 0x0000000000000010 offset, 8 functions] `.?AVhkpToiContactPointViewer@@` +`class hkpToiContactPointViewer`: VTable [0x000000000323E010, 0x0000000000000040 offset, 3 functions] `.?AVhkpToiContactPointViewer@@` +`class hkpToiContactPointViewer`: VTable [0x000000000323E038, 0x0000000000000050 offset, 7 functions] `.?AVhkpToiContactPointViewer@@` +`class hkpToiCountViewer`: VTable [0x000000000323E0C0, 0x0000000000000000 offset, 3 functions] `.?AVhkpToiCountViewer@@` +`class hkpToiCountViewer`: VTable [0x000000000323E0E8, 0x0000000000000010 offset, 8 functions] `.?AVhkpToiCountViewer@@` +`class hkpToiCountViewer`: VTable [0x000000000323E140, 0x0000000000000040 offset, 3 functions] `.?AVhkpToiCountViewer@@` +`class hkpToiCountViewer`: VTable [0x000000000323E168, 0x0000000000000050 offset, 7 functions] `.?AVhkpToiCountViewer@@` +`class hkpToiCountViewer`: VTable [0x000000000323E1B8, 0x0000000000000058 offset, 3 functions] `.?AVhkpToiCountViewer@@` +`class hkpToiCountViewer`: VTable [0x000000000323E1E0, 0x0000000000000060 offset, 6 functions] `.?AVhkpToiCountViewer@@` +`class hkpPhantomDisplayViewer`: VTable [0x000000000323E248, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhantomDisplayViewer@@` +`class hkpPhantomDisplayViewer`: VTable [0x000000000323E270, 0x0000000000000010 offset, 8 functions] `.?AVhkpPhantomDisplayViewer@@` +`class hkpPhantomDisplayViewer`: VTable [0x000000000323E2C8, 0x0000000000000040 offset, 3 functions] `.?AVhkpPhantomDisplayViewer@@` +`class hkpPhantomDisplayViewer`: VTable [0x000000000323E2F0, 0x0000000000000050 offset, 5 functions] `.?AVhkpPhantomDisplayViewer@@` +`class hkpPhantomDisplayViewer`: VTable [0x000000000323E330, 0x0000000000000058 offset, 3 functions] `.?AVhkpPhantomDisplayViewer@@` +`class hkpUserShapePhantomTypeIdentifier`: VTable [0x000000000323E358, 0x0000000000000000 offset, 3 functions] `.?AVhkpUserShapePhantomTypeIdentifier@@` +`class hkpRigidBodyCentreOfMassViewer`: VTable [0x000000000323E460, 0x0000000000000000 offset, 3 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` +`class hkpRigidBodyCentreOfMassViewer`: VTable [0x000000000323E488, 0x0000000000000010 offset, 8 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` +`class hkpRigidBodyCentreOfMassViewer`: VTable [0x000000000323E4E0, 0x0000000000000040 offset, 3 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` +`class hkpRigidBodyCentreOfMassViewer`: VTable [0x000000000323E508, 0x0000000000000050 offset, 6 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` +`class hkpRigidBodyCentreOfMassViewer`: VTable [0x000000000323E550, 0x0000000000000058 offset, 3 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` +`class hkpRigidBodyInertiaViewer`: VTable [0x000000000323E5E8, 0x0000000000000000 offset, 3 functions] `.?AVhkpRigidBodyInertiaViewer@@` +`class hkpRigidBodyInertiaViewer`: VTable [0x000000000323E610, 0x0000000000000010 offset, 8 functions] `.?AVhkpRigidBodyInertiaViewer@@` +`class hkpRigidBodyInertiaViewer`: VTable [0x000000000323E668, 0x0000000000000040 offset, 3 functions] `.?AVhkpRigidBodyInertiaViewer@@` +`class hkpRigidBodyInertiaViewer`: VTable [0x000000000323E690, 0x0000000000000050 offset, 6 functions] `.?AVhkpRigidBodyInertiaViewer@@` +`class hkpRigidBodyInertiaViewer`: VTable [0x000000000323E6D8, 0x0000000000000058 offset, 3 functions] `.?AVhkpRigidBodyInertiaViewer@@` +`class hkpShapeDisplayViewer`: VTable [0x000000000323E760, 0x0000000000000000 offset, 5 functions] `.?AVhkpShapeDisplayViewer@@` +`class hkpShapeDisplayViewer`: VTable [0x000000000323E7A0, 0x0000000000000010 offset, 8 functions] `.?AVhkpShapeDisplayViewer@@` +`class hkpShapeDisplayViewer`: VTable [0x000000000323E7F8, 0x0000000000000040 offset, 3 functions] `.?AVhkpShapeDisplayViewer@@` +`class hkpShapeDisplayViewer`: VTable [0x000000000323E820, 0x0000000000000050 offset, 6 functions] `.?AVhkpShapeDisplayViewer@@` +`class hkpShapeDisplayViewer`: VTable [0x000000000323E868, 0x0000000000000058 offset, 3 functions] `.?AVhkpShapeDisplayViewer@@` +`class hkCrcStreamWriter`: VTable [0x000000000323E8B0, 0x0000000000000000 offset, 9 functions] `.?AV?$hkCrcStreamWriter@_K$0?DGJDKIGKCIHIPALO@@@` +`class hkCrc64StreamWriter`: VTable [0x000000000323E910, 0x0000000000000000 offset, 9 functions] `.?AVhkCrc64StreamWriter@@` +`class hkpConvexRadiusViewer`: VTable [0x000000000323E990, 0x0000000000000000 offset, 3 functions] `.?AVhkpConvexRadiusViewer@@` +`class hkpConvexRadiusViewer`: VTable [0x000000000323E9B8, 0x0000000000000010 offset, 8 functions] `.?AVhkpConvexRadiusViewer@@` +`class hkpConvexRadiusViewer`: VTable [0x000000000323EA10, 0x0000000000000040 offset, 3 functions] `.?AVhkpConvexRadiusViewer@@` +`class hkpConvexRadiusViewer`: VTable [0x000000000323EA38, 0x0000000000000050 offset, 6 functions] `.?AVhkpConvexRadiusViewer@@` +`class hkpConvexRadiusViewer`: VTable [0x000000000323EA80, 0x0000000000000058 offset, 3 functions] `.?AVhkpConvexRadiusViewer@@` +`class hkpSweptTransformDisplayViewer`: VTable [0x000000000323EAD8, 0x0000000000000000 offset, 3 functions] `.?AVhkpSweptTransformDisplayViewer@@` +`class hkpSweptTransformDisplayViewer`: VTable [0x000000000323EB00, 0x0000000000000010 offset, 8 functions] `.?AVhkpSweptTransformDisplayViewer@@` +`class hkpSweptTransformDisplayViewer`: VTable [0x000000000323EB58, 0x0000000000000040 offset, 3 functions] `.?AVhkpSweptTransformDisplayViewer@@` +`class hkpSweptTransformDisplayViewer`: VTable [0x000000000323EB80, 0x0000000000000050 offset, 6 functions] `.?AVhkpSweptTransformDisplayViewer@@` +`class hkpSweptTransformDisplayViewer`: VTable [0x000000000323EBC8, 0x0000000000000058 offset, 3 functions] `.?AVhkpSweptTransformDisplayViewer@@` +`class hkpSimulationIslandViewer`: VTable [0x000000000323EC80, 0x0000000000000000 offset, 3 functions] `.?AVhkpSimulationIslandViewer@@` +`class hkpSimulationIslandViewer`: VTable [0x000000000323ECA8, 0x0000000000000010 offset, 8 functions] `.?AVhkpSimulationIslandViewer@@` +`class hkpSimulationIslandViewer`: VTable [0x000000000323ED00, 0x0000000000000040 offset, 3 functions] `.?AVhkpSimulationIslandViewer@@` +`class hkpSimulationIslandViewer`: VTable [0x000000000323ED28, 0x0000000000000050 offset, 3 functions] `.?AVhkpSimulationIslandViewer@@` +`class hkpMousePickingViewer`: VTable [0x000000000323ED90, 0x0000000000000000 offset, 3 functions] `.?AVhkpMousePickingViewer@@` +`class hkpMousePickingViewer`: VTable [0x000000000323EDB8, 0x0000000000000010 offset, 8 functions] `.?AVhkpMousePickingViewer@@` +`class hkpMousePickingViewer`: VTable [0x000000000323EE10, 0x0000000000000040 offset, 3 functions] `.?AVhkpMousePickingViewer@@` +`class hkpWorldMemoryViewer`: VTable [0x000000000323EE48, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldMemoryViewer@@` +`class hkpWorldMemoryViewer`: VTable [0x000000000323EE70, 0x0000000000000010 offset, 8 functions] `.?AVhkpWorldMemoryViewer@@` +`class hkpWorldMemoryViewer`: VTable [0x000000000323EEC8, 0x0000000000000040 offset, 3 functions] `.?AVhkpWorldMemoryViewer@@` +`class hkpWorldSnapshotViewer`: VTable [0x000000000323EF08, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldSnapshotViewer@@` +`class hkpWorldSnapshotViewer`: VTable [0x000000000323EF30, 0x0000000000000010 offset, 8 functions] `.?AVhkpWorldSnapshotViewer@@` +`class hkpWorldSnapshotViewer`: VTable [0x000000000323EF88, 0x0000000000000040 offset, 3 functions] `.?AVhkpWorldSnapshotViewer@@` +`class hkpVehicleViewer`: VTable [0x000000000323F018, 0x0000000000000000 offset, 3 functions] `.?AVhkpVehicleViewer@@` +`class hkpVehicleViewer`: VTable [0x000000000323F040, 0x0000000000000010 offset, 8 functions] `.?AVhkpVehicleViewer@@` +`class hkpVehicleViewer`: VTable [0x000000000323F098, 0x0000000000000040 offset, 3 functions] `.?AVhkpVehicleViewer@@` +`class hkpVehicleViewer`: VTable [0x000000000323F0C0, 0x0000000000000050 offset, 3 functions] `.?AVhkpVehicleViewer@@` +`class hkpVehicleViewer`: VTable [0x000000000323F0E8, 0x0000000000000058 offset, 3 functions] `.?AVhkpVehicleViewer@@` +`class hkpWeldingViewer`: VTable [0x000000000323F140, 0x0000000000000000 offset, 3 functions] `.?AVhkpWeldingViewer@@` +`class hkpWeldingViewer`: VTable [0x000000000323F168, 0x0000000000000010 offset, 8 functions] `.?AVhkpWeldingViewer@@` +`class hkpWeldingViewer`: VTable [0x000000000323F1C0, 0x0000000000000040 offset, 3 functions] `.?AVhkpWeldingViewer@@` +`class hkpWeldingViewer`: VTable [0x000000000323F1E8, 0x0000000000000050 offset, 3 functions] `.?AVhkpWeldingViewer@@` +`class hkpInconsistentWindingViewer`: VTable [0x000000000323F270, 0x0000000000000000 offset, 3 functions] `.?AVhkpInconsistentWindingViewer@@` +`class hkpInconsistentWindingViewer`: VTable [0x000000000323F298, 0x0000000000000010 offset, 8 functions] `.?AVhkpInconsistentWindingViewer@@` +`class hkpInconsistentWindingViewer`: VTable [0x000000000323F2F0, 0x0000000000000040 offset, 3 functions] `.?AVhkpInconsistentWindingViewer@@` +`class hkpInconsistentWindingViewer`: VTable [0x000000000323F318, 0x0000000000000050 offset, 3 functions] `.?AVhkpInconsistentWindingViewer@@` +`class hkpInconsistentWindingViewer`: VTable [0x000000000323F340, 0x0000000000000058 offset, 6 functions] `.?AVhkpInconsistentWindingViewer@@` +`class hkpSingleBodyConstraintViewer`: VTable [0x000000000323F3F0, 0x0000000000000000 offset, 3 functions] `.?AVhkpSingleBodyConstraintViewer@@` +`class hkpSingleBodyConstraintViewer`: VTable [0x000000000323F418, 0x0000000000000010 offset, 8 functions] `.?AVhkpSingleBodyConstraintViewer@@` +`class hkpSingleBodyConstraintViewer`: VTable [0x000000000323F470, 0x0000000000000040 offset, 3 functions] `.?AVhkpSingleBodyConstraintViewer@@` +`class hkpSingleBodyConstraintViewer`: VTable [0x000000000323F498, 0x0000000000000050 offset, 3 functions] `.?AVhkpSingleBodyConstraintViewer@@` +`class hkpSingleBodyConstraintViewer`: VTable [0x000000000323F4C0, 0x0000000000000058 offset, 6 functions] `.?AVhkpSingleBodyConstraintViewer@@` +`class hkSolverAllocator`: VTable [0x000000000323F530, 0x0000000000000000 offset, 11 functions] `.?AVhkSolverAllocator@@` +`class bhkThreadMemorySource`: VTable [0x000000000323FA18, 0x0000000000000000 offset, 11 functions] `.?AVbhkThreadMemorySource@@` +`class bhkThreadMemorySource`: VTable [0x000000000323FA90, 0x0000000000000008 offset, 28 functions] `.?AVbhkThreadMemorySource@@` +`class hkJobThreadPool`: VTable [0x000000000323FED0, 0x0000000000000000 offset, 10 functions] `.?AVhkJobThreadPool@@` +`class hkCpuJobThreadPool`: VTable [0x000000000323FF40, 0x0000000000000000 offset, 10 functions] `.?AVhkCpuJobThreadPool@@` +`class hkaDetectRagdollPenetration`: VTable [0x000000000323FFE0, 0x0000000000000000 offset, 3 functions] `.?AVhkaDetectRagdollPenetration@@` +`struct hkpStorageMeshShape::SubpartStorage`: VTable [0x0000000003240008, 0x0000000000000000 offset, 3 functions] `.?AUSubpartStorage@hkpStorageMeshShape@@` +`class hkpStorageMeshShape`: VTable [0x0000000003240030, 0x0000000000000000 offset, 14 functions] `.?AVhkpStorageMeshShape@@` +`class hkpStorageMeshShape`: VTable [0x00000000032400C0, 0x0000000000000020 offset, 7 functions] `.?AVhkpStorageMeshShape@@` +`struct hkpStorageExtendedMeshShape::MeshSubpartStorage`: VTable [0x0000000003240120, 0x0000000000000000 offset, 3 functions] `.?AUMeshSubpartStorage@hkpStorageExtendedMeshShape@@` +`struct hkpStorageExtendedMeshShape::ShapeSubpartStorage`: VTable [0x0000000003240148, 0x0000000000000000 offset, 3 functions] `.?AUShapeSubpartStorage@hkpStorageExtendedMeshShape@@` +`class hkpStorageExtendedMeshShape`: VTable [0x0000000003240170, 0x0000000000000000 offset, 15 functions] `.?AVhkpStorageExtendedMeshShape@@` +`class hkpStorageExtendedMeshShape`: VTable [0x0000000003240210, 0x0000000000000020 offset, 7 functions] `.?AVhkpStorageExtendedMeshShape@@` +`class hkpCompressedMeshShape`: VTable [0x00000000032409A8, 0x0000000000000000 offset, 13 functions] `.?AVhkpCompressedMeshShape@@` +`class hkpCompressedMeshShape`: VTable [0x0000000003240A30, 0x0000000000000020 offset, 7 functions] `.?AVhkpCompressedMeshShape@@` +`class hkgpAbstractMesh`: VTable [0x0000000003240A80, 0x0000000000000000 offset, 4 functions] `.?AV?$hkgpAbstractMesh@UEdge@hkgpIndexedMeshDefinitions@@UVertex@2@UTriangle@2@UhkContainerHeapAllocator@@@@` +`class hkDisplayCylinder`: VTable [0x0000000003240BB0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayCylinder@@` +`class hkLiquidAction`: VTable [0x0000000003241020, 0x0000000000000000 offset, 8 functions] `.?AVhkLiquidAction@@` +`class hkOrientHingedBodyAction`: VTable [0x0000000003241118, 0x0000000000000000 offset, 8 functions] `.?AVhkOrientHingedBodyAction@@` +`class bhkPointToPathConstraint`: VTable [0x0000000003241410, 0x0000000000000000 offset, 57 functions] `.?AVbhkPointToPathConstraint@@` +`class hkVersionRegistry`: VTable [0x0000000003241860, 0x0000000000000000 offset, 3 functions] `.?AVhkVersionRegistry@@` +`class ValidatedClassNameRegistry`: VTable [0x0000000003241888, 0x0000000000000000 offset, 11 functions] `.?AVValidatedClassNameRegistry@@` +`class hkRenamedClassNameRegistry`: VTable [0x0000000003241900, 0x0000000000000000 offset, 6 functions] `.?AVhkRenamedClassNameRegistry@@` +`class `anonymous namespace'::PackfileObjectCopier`: VTable [0x00000000032421B8, 0x0000000000000000 offset, 6 functions] `.?AVPackfileObjectCopier@?A0x0aad51fa@@` +`class hkpMeshShape`: VTable [0x0000000003242DB8, 0x0000000000000000 offset, 14 functions] `.?AVhkpMeshShape@@` +`class hkpMeshShape`: VTable [0x0000000003242E48, 0x0000000000000020 offset, 7 functions] `.?AVhkpMeshShape@@` +`class hkRemoteObjectClientSideListener`: VTable [0x0000000003242EA8, 0x0000000000000000 offset, 2 functions] `.?AVhkRemoteObjectClientSideListener@@` +`class hkbClientCharacterState`: VTable [0x0000000003242EC8, 0x0000000000000000 offset, 3 functions] `.?AVhkbClientCharacterState@@` +`class hkbBehaviorClient`: VTable [0x0000000003242EF0, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorClient@@` +`class hkbBehaviorClient`: VTable [0x0000000003242F18, 0x0000000000000010 offset, 2 functions] `.?AVhkbBehaviorClient@@` +`class hkXmlPackfileWriter`: VTable [0x0000000003242FD0, 0x0000000000000000 offset, 11 functions] `.?AVhkXmlPackfileWriter@@` +`struct hkXmlObjectWriter::NameFromAddress`: VTable [0x0000000003243048, 0x0000000000000000 offset, 2 functions] `.?AUNameFromAddress@hkXmlObjectWriter@@` +`struct `anonymous namespace'::PackfileNameFromAddress`: VTable [0x0000000003243068, 0x0000000000000000 offset, 2 functions] `.?AUPackfileNameFromAddress@?A0x147ad74e@@` +`class hkXmlPackfileReader`: VTable [0x00000000032431B0, 0x0000000000000000 offset, 15 functions] `.?AVhkXmlPackfileReader@@` +`class `anonymous namespace'::hkPatchClassInstanceXmlParser`: VTable [0x0000000003243298, 0x0000000000000000 offset, 6 functions] `.?AVhkPatchClassInstanceXmlParser@?A0x673c72ae@@` +`class hkXmlPackfileUpdateTracker`: VTable [0x0000000003243320, 0x0000000000000000 offset, 9 functions] `.?AVhkXmlPackfileUpdateTracker@@` +`class hkBinaryPackfileReader::BinaryPackfileData`: VTable [0x00000000032434F0, 0x0000000000000000 offset, 8 functions] `.?AVBinaryPackfileData@hkBinaryPackfileReader@@` +`class hkBinaryPackfileReader`: VTable [0x0000000003243548, 0x0000000000000000 offset, 17 functions] `.?AVhkBinaryPackfileReader@@` +`class hkObjectInspector::ObjectListener`: VTable [0x00000000032435F8, 0x0000000000000000 offset, 2 functions] `.?AVObjectListener@hkObjectInspector@@` +`class hkObjectUpdateTracker`: VTable [0x0000000003243618, 0x0000000000000000 offset, 9 functions] `.?AVhkObjectUpdateTracker@@` +`class `anonymous namespace'::PackfileObjectsCollector`: VTable [0x00000000032436B8, 0x0000000000000000 offset, 2 functions] `.?AVPackfileObjectsCollector@?A0x71220c57@@` +`class `anonymous namespace'::PackfilePointersMapListener`: VTable [0x00000000032436D8, 0x0000000000000000 offset, 2 functions] `.?AVPackfilePointersMapListener@?A0x71220c57@@` +`class `anonymous namespace'::PackfileCstringListener`: VTable [0x00000000032436F8, 0x0000000000000000 offset, 2 functions] `.?AVPackfileCstringListener@?A0x71220c57@@` +`class `anonymous namespace'::hkContentsUpdateTracker`: VTable [0x0000000003243718, 0x0000000000000000 offset, 9 functions] `.?AVhkContentsUpdateTracker@?A0x71220c57@@` +`class `anonymous namespace'::ClassUpdateTracker`: VTable [0x0000000003243778, 0x0000000000000000 offset, 9 functions] `.?AVClassUpdateTracker@?A0x71220c57@@` +`class hkClassPointerVtable::TypeInfoRegistry`: VTable [0x0000000003243850, 0x0000000000000000 offset, 8 functions] `.?AVTypeInfoRegistry@hkClassPointerVtable@@` +`class hkpToiResourceMgr`: VTable [0x00000000032438D0, 0x0000000000000000 offset, 8 functions] `.?AVhkpToiResourceMgr@@` +`class hkpDefaultToiResourceMgr`: VTable [0x0000000003243928, 0x0000000000000000 offset, 8 functions] `.?AVhkpDefaultToiResourceMgr@@` +`class hkpDeferredConstraintOwner`: VTable [0x0000000003243B38, 0x0000000000000000 offset, 7 functions] `.?AVhkpDeferredConstraintOwner@@` +`class hkSystemClock`: VTable [0x0000000003243BE0, 0x0000000000000000 offset, 5 functions] `.?AVhkSystemClock@@` +`class hkWindowsSystemClock`: VTable [0x0000000003243C20, 0x0000000000000000 offset, 5 functions] `.?AVhkWindowsSystemClock@@` +`class hkDisplaySerializeOStream`: VTable [0x0000000003243C80, 0x0000000000000000 offset, 3 functions] `.?AVhkDisplaySerializeOStream@@` +`class hkReplayStreamReader`: VTable [0x0000000003243CA8, 0x0000000000000000 offset, 12 functions] `.?AVhkReplayStreamReader@@` +`class hkServerDebugDisplayHandler`: VTable [0x0000000003243D80, 0x0000000000000000 offset, 3 functions] `.?AVhkServerDebugDisplayHandler@@` +`class hkServerDebugDisplayHandler`: VTable [0x0000000003243DA8, 0x0000000000000010 offset, 8 functions] `.?AVhkServerDebugDisplayHandler@@` +`class hkServerDebugDisplayHandler`: VTable [0x0000000003243E00, 0x0000000000000040 offset, 27 functions] `.?AVhkServerDebugDisplayHandler@@` +`class hkDisplaySerializeIStream`: VTable [0x0000000003243F90, 0x0000000000000000 offset, 3 functions] `.?AVhkDisplaySerializeIStream@@` +`class hkVdbCommandWriter`: VTable [0x0000000003244098, 0x0000000000000000 offset, 9 functions] `.?AVhkVdbCommandWriter@@` +`class hkpPhysicsContextWorldListener`: VTable [0x0000000003244380, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhysicsContextWorldListener@@` +`class hkpWorldViewerBase`: VTable [0x00000000032443A8, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldViewerBase@@` +`class hkpWorldViewerBase`: VTable [0x00000000032443D0, 0x0000000000000010 offset, 8 functions] `.?AVhkpWorldViewerBase@@` +`class hkpWorldViewerBase`: VTable [0x0000000003244428, 0x0000000000000040 offset, 3 functions] `.?AVhkpWorldViewerBase@@` +`class hkDisplayAABB`: VTable [0x0000000003244450, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayAABB@@` +`class hkDisplaySemiCircle`: VTable [0x0000000003244490, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplaySemiCircle@@` +`class hkDisplayCone`: VTable [0x00000000032444D0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayCone@@` +`class hkDisplayPlane`: VTable [0x0000000003244510, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayPlane@@` +`class hkpContactPointViewer`: VTable [0x0000000003244570, 0x0000000000000000 offset, 4 functions] `.?AVhkpContactPointViewer@@` +`class hkpContactPointViewer`: VTable [0x00000000032445A0, 0x0000000000000010 offset, 8 functions] `.?AVhkpContactPointViewer@@` +`class hkpContactPointViewer`: VTable [0x00000000032445F8, 0x0000000000000040 offset, 3 functions] `.?AVhkpContactPointViewer@@` +`class hkpContactPointViewer`: VTable [0x0000000003244620, 0x0000000000000050 offset, 3 functions] `.?AVhkpContactPointViewer@@` +`class hkDisplayGeometryBuilder`: VTable [0x00000000032446F8, 0x0000000000000000 offset, 6 functions] `.?AVhkDisplayGeometryBuilder@@` +`class hkpShapeDisplayBuilder`: VTable [0x0000000003244740, 0x0000000000000000 offset, 6 functions] `.?AVhkpShapeDisplayBuilder@@` +`class hkpUserShapeDisplayBuilder`: VTable [0x0000000003244788, 0x0000000000000000 offset, 3 functions] `.?AVhkpUserShapeDisplayBuilder@@` +`class hkpShapeContinueData`: VTable [0x00000000032447B0, 0x0000000000000000 offset, 3 functions] `.?AVhkpShapeContinueData@@` +`class hkDisplayBox`: VTable [0x0000000003244840, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayBox@@` +`class hkDisplayConvex`: VTable [0x0000000003244880, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayConvex@@` +`class hkpUserShapeHashUtil`: VTable [0x00000000032448C0, 0x0000000000000000 offset, 3 functions] `.?AVhkpUserShapeHashUtil@@` +`class hkpConvexRadiusBuilder`: VTable [0x00000000032452A8, 0x0000000000000000 offset, 6 functions] `.?AVhkpConvexRadiusBuilder@@` +`class hkpUserConvexRadiusBuilder`: VTable [0x00000000032452F0, 0x0000000000000000 offset, 3 functions] `.?AVhkpUserConvexRadiusBuilder@@` +`class hkStreamStatisticsCollector`: VTable [0x0000000003245338, 0x0000000000000000 offset, 8 functions] `.?AVhkStreamStatisticsCollector@@` +`class hkpExtendedMeshShape`: VTable [0x0000000003245398, 0x0000000000000000 offset, 15 functions] `.?AVhkpExtendedMeshShape@@` +`class hkpExtendedMeshShape`: VTable [0x0000000003245438, 0x0000000000000020 offset, 7 functions] `.?AVhkpExtendedMeshShape@@` +`class hkgpIndexedMesh`: VTable [0x0000000003245488, 0x0000000000000000 offset, 4 functions] `.?AVhkgpIndexedMesh@@` +`class hkpMoppMediator`: VTable [0x00000000032454B8, 0x0000000000000000 offset, 10 functions] `.?AVhkpMoppMediator@@` +`class hkpMoppShapeMediator`: VTable [0x0000000003245528, 0x0000000000000000 offset, 10 functions] `.?AVhkpMoppShapeMediator@@` +`class hkpMoppCachedShapeMediator`: VTable [0x0000000003245598, 0x0000000000000000 offset, 10 functions] `.?AVhkpMoppCachedShapeMediator@@` +`class hkpMoppCostFunction`: VTable [0x0000000003245608, 0x0000000000000000 offset, 3 functions] `.?AVhkpMoppCostFunction@@` +`class hkBindingClassNameRegistry`: VTable [0x00000000032456E0, 0x0000000000000000 offset, 14 functions] `.?AVhkBindingClassNameRegistry@@` +`class hkXmlObjectWriter`: VTable [0x0000000003245770, 0x0000000000000000 offset, 6 functions] `.?AVhkXmlObjectWriter@@` +`class hkPackfileReader`: VTable [0x0000000003245A80, 0x0000000000000000 offset, 14 functions] `.?AVhkPackfileReader@@` +`class hkLineNumberStreamReader`: VTable [0x0000000003245BF8, 0x0000000000000000 offset, 12 functions] `.?AVhkLineNumberStreamReader@@` +`class hkObjectReader`: VTable [0x0000000003245C78, 0x0000000000000000 offset, 5 functions] `.?AVhkObjectReader@@` +`class hkXmlObjectReader`: VTable [0x0000000003245CB8, 0x0000000000000000 offset, 5 functions] `.?AVhkXmlObjectReader@@` +`class hkChainedClassNameRegistry`: VTable [0x0000000003245E70, 0x0000000000000000 offset, 11 functions] `.?AVhkChainedClassNameRegistry@@` +`struct hkXmlParser::Node`: VTable [0x0000000003245EE8, 0x0000000000000000 offset, 3 functions] `.?AUNode@hkXmlParser@@` +`struct hkXmlParser::StartElement`: VTable [0x0000000003245F10, 0x0000000000000000 offset, 3 functions] `.?AUStartElement@hkXmlParser@@` +`struct hkXmlParser::EndElement`: VTable [0x0000000003245F38, 0x0000000000000000 offset, 3 functions] `.?AUEndElement@hkXmlParser@@` +`struct hkXmlParser::Characters`: VTable [0x0000000003245F60, 0x0000000000000000 offset, 3 functions] `.?AUCharacters@hkXmlParser@@` +`class hkXmlParser`: VTable [0x0000000003245F88, 0x0000000000000000 offset, 6 functions] `.?AVhkXmlParser@@` +`class hkPackfileObjectUpdateTracker`: VTable [0x00000000032460F0, 0x0000000000000000 offset, 9 functions] `.?AVhkPackfileObjectUpdateTracker@@` +`class hkDisplayMesh`: VTable [0x0000000003246AA0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayMesh@@` +`class hkDisplaySphere`: VTable [0x0000000003246AE0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplaySphere@@` +`class hkDisplayTaperedCapsule`: VTable [0x0000000003246B28, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayTaperedCapsule@@` +`class hkMeshTexture`: VTable [0x0000000003247E50, 0x0000000000000000 offset, 15 functions] `.?AVhkMeshTexture@@` +`class hkMemoryMeshTexture`: VTable [0x0000000003247F28, 0x0000000000000000 offset, 15 functions] `.?AVhkMemoryMeshTexture@@` +`class hkpFixedBufferCdPointCollector`: VTable [0x0000000003248148, 0x0000000000000000 offset, 3 functions] `.?AVhkpFixedBufferCdPointCollector@@` +`class hkKdTreeCastCollector`: VTable [0x0000000003248198, 0x0000000000000000 offset, 4 functions] `.?AVhkKdTreeCastCollector@@` +`class hkCpuWorldGetClosestPointsCollector`: VTable [0x00000000032481C8, 0x0000000000000000 offset, 2 functions] `.?AVhkCpuWorldGetClosestPointsCollector@@` +`class hkCpuWorldGetClosestPointsCollector`: VTable [0x00000000032481E8, 0x0000000000000008 offset, 2 functions] `.?AVhkCpuWorldGetClosestPointsCollector@@` +`class hkCpuWorldGetClosestPointsCollector`: VTable [0x0000000003248208, 0x0000000000000010 offset, 4 functions] `.?AVhkCpuWorldGetClosestPointsCollector@@` +`class hkCpuWorldLinearCastCollector`: VTable [0x00000000032482A0, 0x0000000000000000 offset, 2 functions] `.?AVhkCpuWorldLinearCastCollector@@` +`class hkCpuWorldLinearCastCollector`: VTable [0x00000000032482C0, 0x0000000000000008 offset, 4 functions] `.?AVhkCpuWorldLinearCastCollector@@` +`class hkCpuWorldLinearCastCollector`: VTable [0x00000000032482F0, 0x0000000000000010 offset, 2 functions] `.?AVhkCpuWorldLinearCastCollector@@` +`class hkCpuWorldLinearCastCollector`: VTable [0x0000000003248310, 0x0000000000000018 offset, 2 functions] `.?AVhkCpuWorldLinearCastCollector@@` +`class hkpFixedBufferRayHitCollector`: VTable [0x0000000003248380, 0x0000000000000000 offset, 2 functions] `.?AVhkpFixedBufferRayHitCollector@@` +`class hkCpuWorldRayCastCollector`: VTable [0x00000000032483C0, 0x0000000000000000 offset, 2 functions] `.?AVhkCpuWorldRayCastCollector@@` +`class hkCpuWorldRayCastCollector`: VTable [0x00000000032483E0, 0x0000000000000008 offset, 4 functions] `.?AVhkCpuWorldRayCastCollector@@` +`class hkCpuWorldRayCastCollector`: VTable [0x0000000003248410, 0x0000000000000010 offset, 2 functions] `.?AVhkCpuWorldRayCastCollector@@` +`class hkCpuWorldRayCastCollector`: VTable [0x0000000003248430, 0x0000000000000018 offset, 2 functions] `.?AVhkCpuWorldRayCastCollector@@` +`class hkpSimpleMeshShape`: VTable [0x0000000003248548, 0x0000000000000000 offset, 13 functions] `.?AVhkpSimpleMeshShape@@` +`class hkpSimpleMeshShape`: VTable [0x00000000032485D0, 0x0000000000000020 offset, 7 functions] `.?AVhkpSimpleMeshShape@@` +`class hkpMoppNodeMgr`: VTable [0x0000000003248650, 0x0000000000000000 offset, 5 functions] `.?AVhkpMoppNodeMgr@@` +`class hkpMoppSplitter`: VTable [0x0000000003248690, 0x0000000000000000 offset, 6 functions] `.?AVhkpMoppSplitter@@` +`class hkpMoppDefaultSplitter`: VTable [0x00000000032486D8, 0x0000000000000000 offset, 6 functions] `.?AVhkpMoppDefaultSplitter@@` +`class hkpMoppCodeGenerator`: VTable [0x00000000032487B0, 0x0000000000000000 offset, 3 functions] `.?AVhkpMoppCodeGenerator@@` +`class hkpMoppAssembler`: VTable [0x00000000032487D8, 0x0000000000000000 offset, 7 functions] `.?AVhkpMoppAssembler@@` +`class hkpMoppDefaultAssembler`: VTable [0x0000000003248828, 0x0000000000000000 offset, 7 functions] `.?AVhkpMoppDefaultAssembler@@` +`class hkIndexedTransformSet`: VTable [0x00000000032489A0, 0x0000000000000000 offset, 3 functions] `.?AVhkIndexedTransformSet@@` +`class hkMeshBody`: VTable [0x00000000032489C8, 0x0000000000000000 offset, 20 functions] `.?AVhkMeshBody@@` +`class hkMemoryMeshBody`: VTable [0x0000000003248A98, 0x0000000000000000 offset, 20 functions] `.?AVhkMemoryMeshBody@@` +`class hkMeshMaterial`: VTable [0x0000000003248B68, 0x0000000000000000 offset, 11 functions] `.?AVhkMeshMaterial@@` +`class hkMemoryMeshMaterial`: VTable [0x0000000003248BE0, 0x0000000000000000 offset, 11 functions] `.?AVhkMemoryMeshMaterial@@` +`class hkMeshShape`: VTable [0x0000000003248C58, 0x0000000000000000 offset, 8 functions] `.?AVhkMeshShape@@` +`class hkMemoryMeshShape`: VTable [0x0000000003248CB0, 0x0000000000000000 offset, 8 functions] `.?AVhkMemoryMeshShape@@` +`class hkMeshVertexBuffer`: VTable [0x0000000003248D08, 0x0000000000000000 offset, 14 functions] `.?AVhkMeshVertexBuffer@@` +`class hkMemoryMeshVertexBuffer`: VTable [0x0000000003248D98, 0x0000000000000000 offset, 14 functions] `.?AVhkMemoryMeshVertexBuffer@@` +`class hkMultipleVertexBuffer`: VTable [0x0000000003248E28, 0x0000000000000000 offset, 14 functions] `.?AVhkMultipleVertexBuffer@@` +`class hkKdTreeBundleCastCollector`: VTable [0x0000000003248ED8, 0x0000000000000000 offset, 3 functions] `.?AVhkKdTreeBundleCastCollector@@` +`class hkKdTreeBuildInput::Mediator`: VTable [0x0000000003248F80, 0x0000000000000000 offset, 6 functions] `.?AVMediator@hkKdTreeBuildInput@@` +`class hkpCollidableMediator`: VTable [0x0000000003248FC8, 0x0000000000000000 offset, 6 functions] `.?AVhkpCollidableMediator@@` +`class hkKdTreeCpuBroadphaseBundleCastCollector`: VTable [0x0000000003249130, 0x0000000000000000 offset, 3 functions] `.?AVhkKdTreeCpuBroadphaseBundleCastCollector@@` +`class NiAllocator`: VTable [0x0000000003249278, 0x0000000000000000 offset, 10 functions] `.?AVNiAllocator@@` +`class BSNiAllocator`: VTable [0x00000000032492E8, 0x0000000000000000 offset, 10 functions] `.?AVBSNiAllocator@@` +`class NiStandardAllocator`: VTable [0x00000000032493B8, 0x0000000000000000 offset, 10 functions] `.?AVNiStandardAllocator@@` +`class NiSearchPath`: VTable [0x00000000032496E8, 0x0000000000000000 offset, 3 functions] `.?AVNiSearchPath@@` +`class NiFile`: VTable [0x00000000032498A0, 0x0000000000000000 offset, 8 functions] `.?AVNiFile@@` +`class NiBinaryStream`: VTable [0x0000000003249900, 0x0000000000000000 offset, 6 functions] `.?AVNiBinaryStream@@` +`class NiLogBehavior`: VTable [0x0000000003249A18, 0x0000000000000000 offset, 2 functions] `.?AVNiLogBehavior@@` +`class NiThread`: VTable [0x0000000003249AD0, 0x0000000000000000 offset, 1 functions] `.?AVNiThread@@` +`class BSStringPool::IterationCallback`: VTable [0x0000000003249EB8, 0x0000000000000000 offset, 3 functions] `.?AVIterationCallback@BSStringPool@@` +`struct `void __cdecl UnitTestBSFixedString(void)'::`2'::IterationTester`: VTable [0x000000000324A3E8, 0x0000000000000000 offset, 3 functions] `.?AUIterationTester@?1??UnitTestBSFixedString@@YAXXZ@` +`class BSFile`: VTable [0x000000000324A6C8, 0x0000000000000000 offset, 19 functions] `.?AVBSFile@@` +`class BSSystemFileAsyncFunctor`: VTable [0x000000000324A920, 0x0000000000000000 offset, 2 functions] `.?AVBSSystemFileAsyncFunctor@@` +`class `anonymous namespace'::TestObjectBase`: VTable [0x000000000324B098, 0x0000000000000000 offset, 1 functions] `.?AVTestObjectBase@?A0x413323d0@@` +`class `anonymous namespace'::TestObjectDerived`: VTable [0x000000000324B0B0, 0x0000000000000000 offset, 1 functions] `.?AVTestObjectDerived@?A0x413323d0@@` +`class Archive`: VTable [0x000000000324BBD0, 0x0000000000000000 offset, 19 functions] `.?AVArchive@@` +`class Archive`: VTable [0x000000000324BC90, 0x0000000000000180 offset, 2 functions] `.?AVArchive@@` +`class ArchiveFile`: VTable [0x000000000324BCB0, 0x0000000000000000 offset, 19 functions] `.?AVArchiveFile@@` +`class CompressedArchiveFile`: VTable [0x000000000324BD70, 0x0000000000000000 offset, 19 functions] `.?AVCompressedArchiveFile@@` +`class BSSystemFileStorage`: VTable [0x000000000324BFD0, 0x0000000000000000 offset, 6 functions] `.?AVBSSystemFileStorage@@` +`class BSJobs::JobThread`: VTable [0x000000000324C0C0, 0x0000000000000000 offset, 3 functions] `.?AVJobThread@BSJobs@@` +`class BSSearchPath`: VTable [0x000000000324CDB8, 0x0000000000000000 offset, 4 functions] `.?AVBSSearchPath@@` +`class BSTaskletManagerCallback`: VTable [0x000000000324CE18, 0x0000000000000000 offset, 2 functions] `.?AVBSTaskletManagerCallback@@` +`class BSTaskletManager`: VTable [0x000000000324CE38, 0x0000000000000000 offset, 10 functions] `.?AVBSTaskletManager@@` +`class BSTaskletGroupData`: VTable [0x000000000324CEA8, 0x0000000000000000 offset, 5 functions] `.?AVBSTaskletGroupData@@` +`class BSSocket`: VTable [0x000000000324CEE8, 0x0000000000000000 offset, 4 functions] `.?AVBSSocket@@` +`class UnitTest_BSStreamParserStream`: VTable [0x000000000324D080, 0x0000000000000000 offset, 6 functions] `.?AVUnitTest_BSStreamParserStream@@` +`class UnitTest_BSStreamParserData`: VTable [0x000000000324D120, 0x0000000000000000 offset, 4 functions] `.?AVUnitTest_BSStreamParserData@@` +`class BSWin32TaskletManager`: VTable [0x000000000324D378, 0x0000000000000000 offset, 10 functions] `.?AVBSWin32TaskletManager@@` +`class BSWin32TaskletGroupData`: VTable [0x000000000324D448, 0x0000000000000000 offset, 5 functions] `.?AVBSWin32TaskletGroupData@@` +`class BSResource::StreamBase`: VTable [0x000000000324E558, 0x0000000000000000 offset, 5 functions] `.?AVStreamBase@BSResource@@` +`class BSResource::Stream`: VTable [0x000000000324E598, 0x0000000000000000 offset, 12 functions] `.?AVStream@BSResource@@` +`class BSResource::`anonymous namespace'::GlobalLocations`: VTable [0x000000000324E618, 0x0000000000000000 offset, 12 functions] `.?AVGlobalLocations@?A0x744fac12@BSResource@@` +`struct BSResource::`anonymous namespace'::LocationTree`: VTable [0x000000000324E698, 0x0000000000000000 offset, 12 functions] `.?AULocationTree@?A0x744fac12@BSResource@@` +`class BSResource::`anonymous namespace'::GlobalPaths`: VTable [0x000000000324E718, 0x0000000000000000 offset, 12 functions] `.?AVGlobalPaths@?A0x744fac12@BSResource@@` +`struct BSResource::`anonymous namespace'::DevNull::NullStream`: VTable [0x000000000324E798, 0x0000000000000000 offset, 12 functions] `.?AUNullStream@DevNull@?A0x744fac12@BSResource@@` +`class BSResource::`anonymous namespace'::DevNull`: VTable [0x000000000324E818, 0x0000000000000000 offset, 12 functions] `.?AVDevNull@?A0x744fac12@BSResource@@` +`class BSResource::`anonymous namespace'::EventSources`: VTable [0x000000000324E898, 0x0000000000000000 offset, 1 functions] `.?AVEventSources@?A0x744fac12@BSResource@@` +`class BSResource::`anonymous namespace'::ArchiveRegistrationTaskData`: VTable [0x000000000324E8F0, 0x0000000000000000 offset, 4 functions] `.?AVArchiveRegistrationTaskData@?A0x744fac12@BSResource@@` +`class `void __cdecl BSResource::RegisterPrefix(char const * __ptr64,char const * __ptr64,class BSResource::Location * __ptr64)'::`2'::Traverser`: VTable [0x000000000324E920, 0x0000000000000000 offset, 2 functions] `.?AVTraverser@?1??RegisterPrefix@BSResource@@YAXPEBD0PEAVLocation@2@@Z@` +`class BSResource::AsyncStream`: VTable [0x000000000324FC38, 0x0000000000000000 offset, 11 functions] `.?AVAsyncStream@BSResource@@` +`class BSResource::CacheDrive::Op`: VTable [0x000000000324FCB0, 0x0000000000000000 offset, 6 functions] `.?AVOp@CacheDrive@BSResource@@` +`class BSResource::ArchiveStream`: VTable [0x000000000324FCF8, 0x0000000000000000 offset, 13 functions] `.?AVArchiveStream@BSResource@@` +`class BSResource::CompressedArchiveStream`: VTable [0x000000000324FD80, 0x0000000000000000 offset, 13 functions] `.?AVCompressedArchiveStream@BSResource@@` +`class BSResource::ArchiveManager`: VTable [0x000000000324FE08, 0x0000000000000000 offset, 1 functions] `.?AVArchiveManager@BSResource@@` +`class BSResource::`anonymous namespace'::AsyncArchiveStream`: VTable [0x000000000324FE20, 0x0000000000000000 offset, 11 functions] `.?AVAsyncArchiveStream@?A0xd94b6567@BSResource@@` +`class BSResource::CacheArchiveOp`: VTable [0x000000000324FEF8, 0x0000000000000000 offset, 6 functions] `.?AVCacheArchiveOp@BSResource@@` +`class BSResource::IEntryDB::PostFlushNotify`: VTable [0x0000000003250B70, 0x0000000000000000 offset, 3 functions] `.?AVPostFlushNotify@IEntryDB@BSResource@@` +`class BSResource::IEntryDB`: VTable [0x0000000003250B98, 0x0000000000000000 offset, 6 functions] `.?AVIEntryDB@BSResource@@` +`class BSResource::EntryDB`: VTable [0x0000000003250BE0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UTestTraits@?A0x13c2d61e@@@BSResource@@` +`struct `anonymous namespace'::DevNull::NullStream`: VTable [0x0000000003250C28, 0x0000000000000000 offset, 12 functions] `.?AUNullStream@DevNull@?A0x13c2d61e@@` +`struct `anonymous namespace'::DevNull`: VTable [0x0000000003250CA8, 0x0000000000000000 offset, 12 functions] `.?AUDevNull@?A0x13c2d61e@@` +`class `anonymous namespace'::TestThread`: VTable [0x0000000003250D28, 0x0000000000000000 offset, 3 functions] `.?AVTestThread@?A0x13c2d61e@@` +`struct BSResource::`anonymous namespace'::LooseFileSBTraits::AsyncFunctor`: VTable [0x00000000032513C8, 0x0000000000000000 offset, 2 functions] `.?AUAsyncFunctor@LooseFileSBTraits@?A0x21d31999@BSResource@@` +`struct BSResource::`anonymous namespace'::LooseFileStreamBase`: VTable [0x00000000032513E8, 0x0000000000000000 offset, 1 functions] `.?AULooseFileStreamBase@?A0x21d31999@BSResource@@` +`class BSResource::`anonymous namespace'::LooseFileAsyncBase::FunctorType`: VTable [0x0000000003251400, 0x0000000000000000 offset, 2 functions] `.?AVFunctorType@LooseFileAsyncBase@?A0x21d31999@BSResource@@` +`class BSResource::`anonymous namespace'::LooseFileAsyncChild`: VTable [0x0000000003251420, 0x0000000000000000 offset, 11 functions] `.?AVLooseFileAsyncChild@?A0x21d31999@BSResource@@` +`class BSResource::`anonymous namespace'::LooseFileAsyncStream`: VTable [0x0000000003251498, 0x0000000000000000 offset, 1 functions] `.?AVLooseFileAsyncStream@?A0x21d31999@BSResource@@` +`class BSResource::`anonymous namespace'::LooseFileAsyncStream`: VTable [0x00000000032514B0, 0x0000000000000130 offset, 11 functions] `.?AVLooseFileAsyncStream@?A0x21d31999@BSResource@@` +`class BSResource::`anonymous namespace'::LooseFileStream`: VTable [0x00000000032515B0, 0x0000000000000000 offset, 1 functions] `.?AVLooseFileStream@?A0x21d31999@BSResource@@` +`class BSResource::`anonymous namespace'::LooseFileStream`: VTable [0x00000000032515C8, 0x0000000000000130 offset, 12 functions] `.?AVLooseFileStream@?A0x21d31999@BSResource@@` +`class BSResource::`anonymous namespace'::DefaultLocationData`: VTable [0x0000000003251C40, 0x0000000000000000 offset, 1 functions] `.?AVDefaultLocationData@?A0xb3a88942@BSResource@@` +`class BSResource::CacheDrive::Task`: VTable [0x0000000003252360, 0x0000000000000000 offset, 8 functions] `.?AVTask@CacheDrive@BSResource@@` +`class BSResource::CacheDrive`: VTable [0x00000000032523B8, 0x0000000000000000 offset, 12 functions] `.?AVCacheDrive@BSResource@@` +`class BSResource::CacheDrive::Impl`: VTable [0x0000000003252520, 0x0000000000000000 offset, 3 functions] `.?AVImpl@CacheDrive@BSResource@@` +`class `anonymous namespace'::DeepCopyStream`: VTable [0x0000000003252A20, 0x0000000000000000 offset, 24 functions] `.?AVDeepCopyStream@?A0x6e0bfa6d@@` +`class NiObjectNET`: VTable [0x0000000003252E90, 0x0000000000000000 offset, 39 functions] `.?AVNiObjectNET@@` +`class NiTArray,class NiTNewInterface > >`: VTable [0x00000000032538B0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiAVObject@@@@V?$NiTNewInterface@V?$NiPointer@VNiAVObject@@@@@@@@` +`class NiTObjectArray >`: VTable [0x00000000032538C8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiAVObject@@@@@@` +`class NiNode`: VTable [0x00000000032538E0, 0x0000000000000000 offset, 64 functions] `.?AVNiNode@@` +`class NiSkinInstance`: VTable [0x0000000003253DC0, 0x0000000000000000 offset, 40 functions] `.?AVNiSkinInstance@@` +`class BSDismemberSkinInstance`: VTable [0x0000000003253F50, 0x0000000000000000 offset, 40 functions] `.?AVBSDismemberSkinInstance@@` +`class NiAVObject`: VTable [0x0000000003254358, 0x0000000000000000 offset, 55 functions] `.?AVNiAVObject@@` +`class BSDynamicLines`: VTable [0x0000000003254988, 0x0000000000000000 offset, 58 functions] `.?AVBSDynamicLines@@` +`class NiCamera`: VTable [0x0000000003254D60, 0x0000000000000000 offset, 55 functions] `.?AVNiCamera@@` +`class NiTexture`: VTable [0x00000000032551F8, 0x0000000000000000 offset, 45 functions] `.?AVNiTexture@@` +`class NiSourceTexture`: VTable [0x00000000032553B8, 0x0000000000000000 offset, 45 functions] `.?AVNiSourceTexture@@` +`class BSTriShape`: VTable [0x0000000003255738, 0x0000000000000000 offset, 58 functions] `.?AVBSTriShape@@` +`class BSSkinnedDecalTriShape`: VTable [0x0000000003255970, 0x0000000000000000 offset, 58 functions] `.?AVBSSkinnedDecalTriShape@@` +`class NiSwitchNode`: VTable [0x0000000003255E00, 0x0000000000000000 offset, 64 functions] `.?AVNiSwitchNode@@` +`class NiStream::BackgroundLoadProcedure`: VTable [0x0000000003256C08, 0x0000000000000000 offset, 2 functions] `.?AVBackgroundLoadProcedure@NiStream@@` +`class NiTLargeArray,class NiTNewInterface > >`: VTable [0x0000000003256C28, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@V?$NiPointer@VNiObject@@@@V?$NiTNewInterface@V?$NiPointer@VNiObject@@@@@@@@` +`class NiTLargeObjectArray >`: VTable [0x0000000003256C40, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeObjectArray@V?$NiPointer@VNiObject@@@@@@` +`class NiTLargeArray >`: VTable [0x0000000003256C58, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@IV?$NiTMallocInterface@I@@@@` +`class NiTLargePrimitiveArray`: VTable [0x0000000003256C70, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargePrimitiveArray@I@@` +`class NiTLargeArray >`: VTable [0x0000000003256C88, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@VBSFixedString@@V?$NiTNewInterface@VBSFixedString@@@@@@` +`class NiTLargeObjectArray`: VTable [0x0000000003256CA0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeObjectArray@VBSFixedString@@@@` +`class NiTMapBase,class NiObject const * __ptr64,unsigned int>`: VTable [0x0000000003256CB8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBVNiObject@@I@@` +`class NiTPointerMap`: VTable [0x0000000003256D08, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBVNiObject@@I@@` +`class NiStream`: VTable [0x0000000003256D58, 0x0000000000000000 offset, 24 functions] `.?AVNiStream@@` +`class NiTMapBase,char const * __ptr64,class NiObject * __ptr64 (__cdecl*)(void)>`: VTable [0x0000000003256E48, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBDP6APEAVNiObject@@XZ@@` +`class NiTPointerMap`: VTable [0x0000000003256E98, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBDP6APEAVNiObject@@XZ@@` +`class NiTStringTemplateMap,class NiObject * __ptr64 (__cdecl*)(void)>`: VTable [0x0000000003256EE8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTPointerMap@PEBDP6APEAVNiObject@@XZ@@P6APEAVNiObject@@XZ@@` +`class NiTStringPointerMap`: VTable [0x0000000003256F38, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringPointerMap@P6APEAVNiObject@@XZ@@` +`class NiTArray >`: VTable [0x0000000003256F88, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@P6AXAEAVNiStream@@PEAVNiObject@@@ZV?$NiTMallocInterface@P6AXAEAVNiStream@@PEAVNiObject@@@Z@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000003256FA0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@P6AXAEAVNiStream@@PEAVNiObject@@@Z@@` +`class NiTMapBase,char const * __ptr64,unsigned short>`: VTable [0x00000000032571F8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBDG@@` +`class NiTPointerMap`: VTable [0x0000000003257248, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBDG@@` +`class NiTStringTemplateMap,unsigned short>`: VTable [0x0000000003257298, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTPointerMap@PEBDG@@G@@` +`class NiTStringPointerMap`: VTable [0x00000000032572E8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringPointerMap@G@@` +`class BSResourceNiBinaryStream`: VTable [0x00000000032573F8, 0x0000000000000000 offset, 6 functions] `.?AVBSResourceNiBinaryStream@@` +`class NiCollisionObject`: VTable [0x0000000003257570, 0x0000000000000000 offset, 44 functions] `.?AVNiCollisionObject@@` +`class NiDirectionalLight`: VTable [0x00000000032577E0, 0x0000000000000000 offset, 55 functions] `.?AVNiDirectionalLight@@` +`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003257A48, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiRefObject@@@@V?$NiTNewInterface@V?$NiPointer@VNiRefObject@@@@@@@@` +`class NiTObjectArray >`: VTable [0x0000000003257A60, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiRefObject@@@@@@` +`class NiLight`: VTable [0x0000000003257C98, 0x0000000000000000 offset, 55 functions] `.?AVNiLight@@` +`class NiStringsExtraData`: VTable [0x0000000003257FF8, 0x0000000000000000 offset, 41 functions] `.?AVNiStringsExtraData@@` +`class BSFlattenedBoneTree`: VTable [0x00000000032584C8, 0x0000000000000000 offset, 64 functions] `.?AVBSFlattenedBoneTree@@` +`class NiStringExtraData`: VTable [0x0000000003258AC0, 0x0000000000000000 offset, 41 functions] `.?AVNiStringExtraData@@` +`class NiTimeController`: VTable [0x0000000003258D28, 0x0000000000000000 offset, 49 functions] `.?AVNiTimeController@@` +`class NiAVObjectPalette`: VTable [0x0000000003259310, 0x0000000000000000 offset, 42 functions] `.?AVNiAVObjectPalette@@` +`class NiDefaultAVObjectPalette`: VTable [0x00000000032594B0, 0x0000000000000000 offset, 44 functions] `.?AVNiDefaultAVObjectPalette@@` +`class NiTriShape`: VTable [0x00000000032598E8, 0x0000000000000000 offset, 62 functions] `.?AVNiTriShape@@` +`class NiShadeProperty`: VTable [0x0000000003259C90, 0x0000000000000000 offset, 44 functions] `.?AVNiShadeProperty@@` +`class NiGeometryData`: VTable [0x0000000003259F88, 0x0000000000000000 offset, 44 functions] `.?AVNiGeometryData@@` +`class NiTriStripsData`: VTable [0x000000000325A4D8, 0x0000000000000000 offset, 48 functions] `.?AVNiTriStripsData@@` +`class NiTriStrips`: VTable [0x000000000325A970, 0x0000000000000000 offset, 61 functions] `.?AVNiTriStrips@@` +`class NiPointLight`: VTable [0x000000000325ACA8, 0x0000000000000000 offset, 55 functions] `.?AVNiPointLight@@` +`class BSDynamicTriShape`: VTable [0x000000000325B090, 0x0000000000000000 offset, 58 functions] `.?AVBSDynamicTriShape@@` +`class NiGeometry`: VTable [0x000000000325B530, 0x0000000000000000 offset, 61 functions] `.?AVNiGeometry@@` +`class NiAmbientLight`: VTable [0x000000000325B848, 0x0000000000000000 offset, 55 functions] `.?AVNiAmbientLight@@` +`class NiExtraData`: VTable [0x000000000325BD00, 0x0000000000000000 offset, 41 functions] `.?AVNiExtraData@@` +`class NiCullingProcess`: VTable [0x000000000325BF00, 0x0000000000000000 offset, 25 functions] `.?AVNiCullingProcess@@` +`class BSGeometry`: VTable [0x000000000325C168, 0x0000000000000000 offset, 58 functions] `.?AVBSGeometry@@` +`class NiTriBasedGeom`: VTable [0x000000000325C540, 0x0000000000000000 offset, 61 functions] `.?AVNiTriBasedGeom@@` +`class NiVertWeightsExtraData`: VTable [0x000000000325CCC8, 0x0000000000000000 offset, 41 functions] `.?AVNiVertWeightsExtraData@@` +`class BSLines`: VTable [0x000000000325D168, 0x0000000000000000 offset, 58 functions] `.?AVBSLines@@` +`class NiSkinPartition`: VTable [0x000000000325D598, 0x0000000000000000 offset, 40 functions] `.?AVNiSkinPartition@@` +`class NiTriShapeData`: VTable [0x000000000325D898, 0x0000000000000000 offset, 48 functions] `.?AVNiTriShapeData@@` +`class NiTriBasedGeomData`: VTable [0x000000000325DB10, 0x0000000000000000 offset, 48 functions] `.?AVNiTriBasedGeomData@@` +`class NiSkinData`: VTable [0x000000000325DEA8, 0x0000000000000000 offset, 39 functions] `.?AVNiSkinData@@` +`class NiAlphaAccumulator`: VTable [0x000000000325E1C0, 0x0000000000000000 offset, 44 functions] `.?AVNiAlphaAccumulator@@` +`class NiBinaryExtraData`: VTable [0x000000000325E478, 0x0000000000000000 offset, 41 functions] `.?AVNiBinaryExtraData@@` +`class NiBooleanExtraData`: VTable [0x000000000325E6E8, 0x0000000000000000 offset, 41 functions] `.?AVNiBooleanExtraData@@` +`class NiBSPNode`: VTable [0x000000000325E998, 0x0000000000000000 offset, 64 functions] `.?AVNiBSPNode@@` +`class NiColorExtraData`: VTable [0x000000000325ECF0, 0x0000000000000000 offset, 41 functions] `.?AVNiColorExtraData@@` +`class NiFloatExtraData`: VTable [0x000000000325EF68, 0x0000000000000000 offset, 41 functions] `.?AVNiFloatExtraData@@` +`class NiFloatsExtraData`: VTable [0x000000000325F240, 0x0000000000000000 offset, 41 functions] `.?AVNiFloatsExtraData@@` +`class NiFogProperty`: VTable [0x000000000325F520, 0x0000000000000000 offset, 41 functions] `.?AVNiFogProperty@@` +`class NiIntegerExtraData`: VTable [0x000000000325F7F8, 0x0000000000000000 offset, 41 functions] `.?AVNiIntegerExtraData@@` +`class NiIntegersExtraData`: VTable [0x000000000325FAD8, 0x0000000000000000 offset, 41 functions] `.?AVNiIntegersExtraData@@` +`class NiTArray,class NiTNewInterface > >`: VTable [0x000000000325FCC8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiMetricsOutputModule@@@@V?$NiTNewInterface@V?$NiPointer@VNiMetricsOutputModule@@@@@@@@` +`class NiTObjectArray >`: VTable [0x000000000325FCE0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiMetricsOutputModule@@@@@@` +`class NiParticlesData`: VTable [0x0000000003260168, 0x0000000000000000 offset, 43 functions] `.?AVNiParticlesData@@` +`class NiParticles`: VTable [0x0000000003260660, 0x0000000000000000 offset, 58 functions] `.?AVNiParticles@@` +`class NiParticleMeshesData`: VTable [0x00000000032609C8, 0x0000000000000000 offset, 43 functions] `.?AVNiParticleMeshesData@@` +`class NiParticleMeshes`: VTable [0x0000000003260C00, 0x0000000000000000 offset, 58 functions] `.?AVNiParticleMeshes@@` +`class NiSpotLight`: VTable [0x0000000003260F08, 0x0000000000000000 offset, 55 functions] `.?AVNiSpotLight@@` +`class NiSwitchStringExtraData`: VTable [0x00000000032612A0, 0x0000000000000000 offset, 41 functions] `.?AVNiSwitchStringExtraData@@` +`class NiVectorExtraData`: VTable [0x0000000003261518, 0x0000000000000000 offset, 41 functions] `.?AVNiVectorExtraData@@` +`class NiTArray >`: VTable [0x00000000032618B8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEADV?$NiTMallocInterface@PEAD@@@@` +`class NiTPrimitiveArray`: VTable [0x00000000032618D0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAD@@` +`class BSLODTriShape`: VTable [0x00000000032619C0, 0x0000000000000000 offset, 62 functions] `.?AVBSLODTriShape@@` +`class NiAdditionalGeometryData`: VTable [0x0000000003261DC0, 0x0000000000000000 offset, 39 functions] `.?AVNiAdditionalGeometryData@@` +`class BSSegmentedTriShape`: VTable [0x0000000003262658, 0x0000000000000000 offset, 62 functions] `.?AVBSSegmentedTriShape@@` +`class NiBackToFrontAccumulator`: VTable [0x0000000003262AD8, 0x0000000000000000 offset, 44 functions] `.?AVNiBackToFrontAccumulator@@` +`class NiAccumulator`: VTable [0x0000000003262CE8, 0x0000000000000000 offset, 44 functions] `.?AVNiAccumulator@@` +`class NiTArray >`: VTable [0x0000000003262FE8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVRecord@NiPick@@V?$NiTScrapHeapInterface@PEAVRecord@NiPick@@@@@@` +`class NiTScrapArray`: VTable [0x0000000003263000, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTScrapArray@PEAVRecord@NiPick@@@@` +`class NiPick::Results`: VTable [0x0000000003263018, 0x0000000000000000 offset, 1 functions] `.?AVResults@NiPick@@` +`class NiCollisionTraversals::IFindIntersections`: VTable [0x0000000003263270, 0x0000000000000000 offset, 3 functions] `.?AVIFindIntersections@NiCollisionTraversals@@` +`class NiCollisionData`: VTable [0x0000000003263460, 0x0000000000000000 offset, 45 functions] `.?AVNiCollisionData@@` +`class NiBoundingVolume`: VTable [0x0000000003263878, 0x0000000000000000 offset, 12 functions] `.?AVNiBoundingVolume@@` +`class NiBoxBV`: VTable [0x00000000032638F8, 0x0000000000000000 offset, 12 functions] `.?AVNiBoxBV@@` +`class NiCapsuleBV`: VTable [0x0000000003263A18, 0x0000000000000000 offset, 12 functions] `.?AVNiCapsuleBV@@` +`class NiHalfSpaceBV`: VTable [0x0000000003263B70, 0x0000000000000000 offset, 12 functions] `.?AVNiHalfSpaceBV@@` +`class NiSphereBV`: VTable [0x0000000003263C38, 0x0000000000000000 offset, 12 functions] `.?AVNiSphereBV@@` +`class NiTArray >`: VTable [0x0000000003263ED8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVNiBoundingVolume@@V?$NiTMallocInterface@PEAVNiBoundingVolume@@@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000003263EF0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVNiBoundingVolume@@@@` +`class NiUnionBV`: VTable [0x0000000003263F08, 0x0000000000000000 offset, 12 functions] `.?AVNiUnionBV@@` +`class NiOBBRoot`: VTable [0x0000000003264038, 0x0000000000000000 offset, 4 functions] `.?AVNiOBBRoot@@` +`class NiIntersector`: VTable [0x0000000003264068, 0x0000000000000000 offset, 5 functions] `.?AVNiIntersector@@` +`class NiBoxSphereIntersector`: VTable [0x00000000032640A8, 0x0000000000000000 offset, 5 functions] `.?AVNiBoxSphereIntersector@@` +`class NiBoxCapsuleIntersector`: VTable [0x00000000032640E8, 0x0000000000000000 offset, 5 functions] `.?AVNiBoxCapsuleIntersector@@` +`class NiCapsuleCapsuleIntersector`: VTable [0x0000000003264128, 0x0000000000000000 offset, 5 functions] `.?AVNiCapsuleCapsuleIntersector@@` +`class NiCapsuleSphereIntersector`: VTable [0x0000000003264168, 0x0000000000000000 offset, 5 functions] `.?AVNiCapsuleSphereIntersector@@` +`class NiCapsuleTriIntersector`: VTable [0x00000000032641A8, 0x0000000000000000 offset, 5 functions] `.?AVNiCapsuleTriIntersector@@` +`class NiSphereTriIntersector`: VTable [0x00000000032641E8, 0x0000000000000000 offset, 5 functions] `.?AVNiSphereTriIntersector@@` +`class NiOBBNode`: VTable [0x0000000003264288, 0x0000000000000000 offset, 5 functions] `.?AVNiOBBNode@@` +`class NiOBBLeaf`: VTable [0x0000000003264328, 0x0000000000000000 offset, 5 functions] `.?AVNiOBBLeaf@@` +`class NiControllerSequence`: VTable [0x0000000003264C08, 0x0000000000000000 offset, 40 functions] `.?AVNiControllerSequence@@` +`class NiMultiTargetTransformController`: VTable [0x0000000003264DB8, 0x0000000000000000 offset, 62 functions] `.?AVNiMultiTargetTransformController@@` +`class NiTextKeyMatch`: VTable [0x0000000003265018, 0x0000000000000000 offset, 3 functions] `.?AVNiTextKeyMatch@@` +`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003265E08, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiControllerSequence@@@@V?$NiTNewInterface@V?$NiPointer@VNiControllerSequence@@@@@@@@` +`class NiTObjectArray >`: VTable [0x0000000003265E20, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiControllerSequence@@@@@@` +`class NiControllerManager`: VTable [0x0000000003265E38, 0x0000000000000000 offset, 50 functions] `.?AVNiControllerManager@@` +`class NiBlendInterpolator`: VTable [0x00000000032669B0, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendInterpolator@@` +`class BSMultiTargetTreadTransfController`: VTable [0x0000000003267120, 0x0000000000000000 offset, 62 functions] `.?AVBSMultiTargetTreadTransfController@@` +`class NiInterpController`: VTable [0x00000000032674B8, 0x0000000000000000 offset, 62 functions] `.?AVNiInterpController@@` +`class NiKeyBasedInterpolator`: VTable [0x0000000003267800, 0x0000000000000000 offset, 66 functions] `.?AVNiKeyBasedInterpolator@@` +`class NiFloatInterpolator`: VTable [0x0000000003267C88, 0x0000000000000000 offset, 66 functions] `.?AVNiFloatInterpolator@@` +`class NiColorInterpolator`: VTable [0x0000000003268170, 0x0000000000000000 offset, 66 functions] `.?AVNiColorInterpolator@@` +`class NiTransformController`: VTable [0x0000000003268588, 0x0000000000000000 offset, 63 functions] `.?AVNiTransformController@@` +`class NiBlendAccumTransformInterpolator`: VTable [0x00000000032687F0, 0x0000000000000000 offset, 64 functions] `.?AVNiBlendAccumTransformInterpolator@@` +`class NiTArray >`: VTable [0x0000000003268B78, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAUBSAnimReceiverType@BSAnimNoteListener@@V?$NiTMallocInterface@PEAUBSAnimReceiverType@BSAnimNoteListener@@@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000003268B90, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAUBSAnimReceiverType@BSAnimNoteListener@@@@` +`class NiPosData`: VTable [0x0000000003268DB8, 0x0000000000000000 offset, 39 functions] `.?AVNiPosData@@` +`class NiBlendBoolInterpolator`: VTable [0x0000000003268FC8, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendBoolInterpolator@@` +`class NiBlendColorInterpolator`: VTable [0x0000000003269328, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendColorInterpolator@@` +`class NiBlendFloatInterpolator`: VTable [0x0000000003269678, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendFloatInterpolator@@` +`class NiBlendPoint3Interpolator`: VTable [0x00000000032699C8, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendPoint3Interpolator@@` +`class NiBlendQuaternionInterpolator`: VTable [0x0000000003269D38, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendQuaternionInterpolator@@` +`class NiBlendTransformInterpolator`: VTable [0x000000000326A0A8, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendTransformInterpolator@@` +`class NiBoolData`: VTable [0x000000000326A490, 0x0000000000000000 offset, 39 functions] `.?AVNiBoolData@@` +`class NiBoolInterpolator`: VTable [0x000000000326A740, 0x0000000000000000 offset, 66 functions] `.?AVNiBoolInterpolator@@` +`class NiBoolTimelineInterpolator`: VTable [0x000000000326AAE8, 0x0000000000000000 offset, 66 functions] `.?AVNiBoolTimelineInterpolator@@` +`class NiBSplineBasisData`: VTable [0x000000000326AE60, 0x0000000000000000 offset, 39 functions] `.?AVNiBSplineBasisData@@` +`class NiBSplineData`: VTable [0x000000000326B0F0, 0x0000000000000000 offset, 39 functions] `.?AVNiBSplineData@@` +`class NiBSplineColorInterpolator`: VTable [0x000000000326B390, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineColorInterpolator@@` +`class NiBSplineCompColorInterpolator`: VTable [0x000000000326B728, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineCompColorInterpolator@@` +`class NiBSplineCompFloatInterpolator`: VTable [0x000000000326BAB0, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineCompFloatInterpolator@@` +`class NiBSplineCompPoint3Interpolator`: VTable [0x000000000326BE30, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineCompPoint3Interpolator@@` +`class NiBSplineCompTransformInterpolator`: VTable [0x000000000326C1B0, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineCompTransformInterpolator@@` +`class NiBSplineFloatInterpolator`: VTable [0x000000000326C540, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineFloatInterpolator@@` +`class NiBSplinePoint3Interpolator`: VTable [0x000000000326C8D8, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplinePoint3Interpolator@@` +`class NiBSplineTransformInterpolator`: VTable [0x000000000326CC78, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineTransformInterpolator@@` +`class NiColorExtraDataController`: VTable [0x000000000326D0A8, 0x0000000000000000 offset, 63 functions] `.?AVNiColorExtraDataController@@` +`class NiFloatExtraDataController`: VTable [0x000000000326D460, 0x0000000000000000 offset, 63 functions] `.?AVNiFloatExtraDataController@@` +`class NiFloatsExtraDataController`: VTable [0x000000000326D8A0, 0x0000000000000000 offset, 63 functions] `.?AVNiFloatsExtraDataController@@` +`class NiFloatsExtraDataPoint3Controller`: VTable [0x000000000326DCB0, 0x0000000000000000 offset, 63 functions] `.?AVNiFloatsExtraDataPoint3Controller@@` +`class NiTMapBase,char const * __ptr64,class NiPointer >`: VTable [0x000000000326E1E8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBDV?$NiPointer@VNiSequence@@@@@@` +`class NiTPointerMap >`: VTable [0x000000000326E238, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBDV?$NiPointer@VNiSequence@@@@@@` +`class NiTStringTemplateMap >,class NiPointer >`: VTable [0x000000000326E288, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTPointerMap@PEBDV?$NiPointer@VNiSequence@@@@@@V?$NiPointer@VNiSequence@@@@@@` +`class NiTStringPointerMap >`: VTable [0x000000000326E2D8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringPointerMap@V?$NiPointer@VNiSequence@@@@@@` +`class NiKeyframeManager`: VTable [0x000000000326E328, 0x0000000000000000 offset, 49 functions] `.?AVNiKeyframeManager@@` +`class NiLightColorController`: VTable [0x000000000326E678, 0x0000000000000000 offset, 64 functions] `.?AVNiLightColorController@@` +`class NiLightDimmerController`: VTable [0x000000000326EA28, 0x0000000000000000 offset, 64 functions] `.?AVNiLightDimmerController@@` +`class NiLookAtController`: VTable [0x000000000326ED78, 0x0000000000000000 offset, 49 functions] `.?AVNiLookAtController@@` +`class NiLookAtInterpolator`: VTable [0x000000000326F0F8, 0x0000000000000000 offset, 59 functions] `.?AVNiLookAtInterpolator@@` +`class NiMorphData`: VTable [0x000000000326F550, 0x0000000000000000 offset, 39 functions] `.?AVNiMorphData@@` +`class NiPathController`: VTable [0x000000000326F908, 0x0000000000000000 offset, 49 functions] `.?AVNiPathController@@` +`class NiPathInterpolator`: VTable [0x000000000326FCE0, 0x0000000000000000 offset, 66 functions] `.?AVNiPathInterpolator@@` +`class NiPoint3Interpolator`: VTable [0x00000000032700A8, 0x0000000000000000 offset, 66 functions] `.?AVNiPoint3Interpolator@@` +`class NiQuaternionInterpolator`: VTable [0x00000000032705B8, 0x0000000000000000 offset, 66 functions] `.?AVNiQuaternionInterpolator@@` +`class NiFloatController`: VTable [0x0000000003270940, 0x0000000000000000 offset, 49 functions] `.?AVNiFloatController@@` +`class NiRollController`: VTable [0x0000000003270B20, 0x0000000000000000 offset, 49 functions] `.?AVNiRollController@@` +`class NiRotData`: VTable [0x0000000003270E38, 0x0000000000000000 offset, 39 functions] `.?AVNiRotData@@` +`class NiTArray,class NiTNewInterface > >`: VTable [0x00000000032712F8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiTransformController@@@@V?$NiTNewInterface@V?$NiPointer@VNiTransformController@@@@@@@@` +`class NiTObjectArray >`: VTable [0x0000000003271310, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiTransformController@@@@@@` +`class NiSequence`: VTable [0x0000000003271328, 0x0000000000000000 offset, 39 functions] `.?AVNiSequence@@` +`class NiSequenceStreamHelper`: VTable [0x0000000003271548, 0x0000000000000000 offset, 39 functions] `.?AVNiSequenceStreamHelper@@` +`class NiStringPalette`: VTable [0x00000000032717A8, 0x0000000000000000 offset, 39 functions] `.?AVNiStringPalette@@` +`class NiTextKeyExtraData`: VTable [0x0000000003271AF0, 0x0000000000000000 offset, 41 functions] `.?AVNiTextKeyExtraData@@` +`class NiTransformData`: VTable [0x0000000003271E08, 0x0000000000000000 offset, 39 functions] `.?AVNiTransformData@@` +`class NiTransformInterpolator`: VTable [0x0000000003272150, 0x0000000000000000 offset, 66 functions] `.?AVNiTransformInterpolator@@` +`class NiUVData`: VTable [0x00000000032724E8, 0x0000000000000000 offset, 39 functions] `.?AVNiUVData@@` +`class NiVisController`: VTable [0x00000000032727C8, 0x0000000000000000 offset, 64 functions] `.?AVNiVisController@@` +`class BSAnimNotes`: VTable [0x0000000003272B50, 0x0000000000000000 offset, 39 functions] `.?AVBSAnimNotes@@` +`class BSAnimNote`: VTable [0x0000000003272E00, 0x0000000000000000 offset, 40 functions] `.?AVBSAnimNote@@` +`class BSGrabIKNote`: VTable [0x0000000003272F90, 0x0000000000000000 offset, 40 functions] `.?AVBSGrabIKNote@@` +`class BSLookIKNote`: VTable [0x0000000003273230, 0x0000000000000000 offset, 40 functions] `.?AVBSLookIKNote@@` +`class BSRotAccumTransfInterpolator`: VTable [0x0000000003273500, 0x0000000000000000 offset, 66 functions] `.?AVBSRotAccumTransfInterpolator@@` +`class BSTreadTransfInterpolator`: VTable [0x0000000003273960, 0x0000000000000000 offset, 66 functions] `.?AVBSTreadTransfInterpolator@@` +`class BSBlendTreadTransfInterpolator`: VTable [0x0000000003273CD0, 0x0000000000000000 offset, 63 functions] `.?AVBSBlendTreadTransfInterpolator@@` +`class BSFrustumFOVController`: VTable [0x00000000032740A8, 0x0000000000000000 offset, 64 functions] `.?AVBSFrustumFOVController@@` +`class NiInterpolator`: VTable [0x0000000003275200, 0x0000000000000000 offset, 59 functions] `.?AVNiInterpolator@@` +`class NiSingleInterpController`: VTable [0x0000000003275668, 0x0000000000000000 offset, 63 functions] `.?AVNiSingleInterpController@@` +`class NiBSplineInterpolator`: VTable [0x0000000003275950, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineInterpolator@@` +`class NiExtraDataController`: VTable [0x0000000003275DD0, 0x0000000000000000 offset, 63 functions] `.?AVNiExtraDataController@@` +`class NiPoint3InterpController`: VTable [0x0000000003276100, 0x0000000000000000 offset, 64 functions] `.?AVNiPoint3InterpController@@` +`class NiFloatInterpController`: VTable [0x0000000003276420, 0x0000000000000000 offset, 64 functions] `.?AVNiFloatInterpController@@` +`class NiBoolInterpController`: VTable [0x00000000032767E8, 0x0000000000000000 offset, 64 functions] `.?AVNiBoolInterpController@@` +`class NiParticleSystem`: VTable [0x00000000032772C0, 0x0000000000000000 offset, 60 functions] `.?AVNiParticleSystem@@` +`class NiPSysData`: VTable [0x0000000003277748, 0x0000000000000000 offset, 45 functions] `.?AVNiPSysData@@` +`class NiPSysGravityModifier`: VTable [0x0000000003277A68, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysGravityModifier@@` +`class NiMeshParticleSystem`: VTable [0x0000000003277DD0, 0x0000000000000000 offset, 60 functions] `.?AVNiMeshParticleSystem@@` +`class NiTArray > * __ptr64,class NiTMallocInterface > * __ptr64> >`: VTable [0x0000000003278310, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAV?$NiTObjectArray@V?$NiPointer@VNiAVObject@@@@@@V?$NiTMallocInterface@PEAV?$NiTObjectArray@V?$NiPointer@VNiAVObject@@@@@@@@@@` +`class NiTPrimitiveArray > * __ptr64>`: VTable [0x0000000003278328, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAV?$NiTObjectArray@V?$NiPointer@VNiAVObject@@@@@@@@` +`class NiMeshPSysData`: VTable [0x0000000003278340, 0x0000000000000000 offset, 45 functions] `.?AVNiMeshPSysData@@` +`class NiPSysAirFieldAirFrictionCtlr`: VTable [0x00000000032785D8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysAirFieldAirFrictionCtlr@@` +`class NiPSysAirFieldInheritVelocityCtlr`: VTable [0x0000000003278950, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysAirFieldInheritVelocityCtlr@@` +`class NiPSysAirFieldModifier`: VTable [0x0000000003278CC8, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysAirFieldModifier@@` +`class NiPSysAirFieldSpreadCtlr`: VTable [0x0000000003278FE0, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysAirFieldSpreadCtlr@@` +`class NiPSysAgeDeathModifier`: VTable [0x0000000003279378, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysAgeDeathModifier@@` +`class NiPSysBombModifier`: VTable [0x0000000003279668, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysBombModifier@@` +`class NiPSysBoundUpdateModifier`: VTable [0x0000000003279A38, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysBoundUpdateModifier@@` +`class NiPSysBoxEmitter`: VTable [0x0000000003279CD8, 0x0000000000000000 offset, 48 functions] `.?AVNiPSysBoxEmitter@@` +`class NiPSysColliderManager`: VTable [0x0000000003279FF0, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysColliderManager@@` +`class NiPSysColorModifier`: VTable [0x000000000327A2E0, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysColorModifier@@` +`class NiPSysCylinderEmitter`: VTable [0x000000000327A570, 0x0000000000000000 offset, 48 functions] `.?AVNiPSysCylinderEmitter@@` +`class NiPSysDragFieldModifier`: VTable [0x000000000327A828, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysDragFieldModifier@@` +`class NiPSysDragModifier`: VTable [0x000000000327AAF8, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysDragModifier@@` +`class NiPSysEmitterCtlr`: VTable [0x000000000327AF78, 0x0000000000000000 offset, 65 functions] `.?AVNiPSysEmitterCtlr@@` +`class NiPSysEmitterCtlrData`: VTable [0x000000000327B308, 0x0000000000000000 offset, 39 functions] `.?AVNiPSysEmitterCtlrData@@` +`class NiPSysEmitterDeclinationCtlr`: VTable [0x000000000327B5D0, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterDeclinationCtlr@@` +`class NiPSysEmitterDeclinationVarCtlr`: VTable [0x000000000327B940, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterDeclinationVarCtlr@@` +`class NiPSysEmitterInitialRadiusCtlr`: VTable [0x000000000327BCB0, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterInitialRadiusCtlr@@` +`class NiPSysEmitterLifeSpanCtlr`: VTable [0x000000000327C020, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterLifeSpanCtlr@@` +`class NiPSysEmitterPlanarAngleCtlr`: VTable [0x000000000327C388, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterPlanarAngleCtlr@@` +`class NiPSysEmitterPlanarAngleVarCtlr`: VTable [0x000000000327C700, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterPlanarAngleVarCtlr@@` +`class NiPSysEmitterSpeedCtlr`: VTable [0x000000000327CA70, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterSpeedCtlr@@` +`class NiPSysFieldAttenuationCtlr`: VTable [0x000000000327CDD8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysFieldAttenuationCtlr@@` +`class NiPSysFieldMagnitudeCtlr`: VTable [0x000000000327D150, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysFieldMagnitudeCtlr@@` +`class NiPSysFieldMaxDistanceCtlr`: VTable [0x000000000327D4B8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysFieldMaxDistanceCtlr@@` +`class NiPSysGravityFieldModifier`: VTable [0x000000000327D830, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysGravityFieldModifier@@` +`class NiPSysGravityStrengthCtlr`: VTable [0x000000000327DAD0, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysGravityStrengthCtlr@@` +`class NiPSysGrowFadeModifier`: VTable [0x000000000327DE68, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysGrowFadeModifier@@` +`class NiPSysInitialRotAngleCtlr`: VTable [0x000000000327E158, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysInitialRotAngleCtlr@@` +`class NiPSysInitialRotAngleVarCtlr`: VTable [0x000000000327E4C8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysInitialRotAngleVarCtlr@@` +`class NiPSysInitialRotSpeedCtlr`: VTable [0x000000000327E840, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysInitialRotSpeedCtlr@@` +`class NiPSysInitialRotSpeedVarCtlr`: VTable [0x000000000327EBA8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysInitialRotSpeedVarCtlr@@` +`class NiTArray,class NiTNewInterface > >`: VTable [0x000000000327F370, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VBSTriShape@@@@V?$NiTNewInterface@V?$NiPointer@VBSTriShape@@@@@@@@` +`class NiTObjectArray >`: VTable [0x000000000327F388, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VBSTriShape@@@@@@` +`class NiTArray,class NiTNewInterface > >`: VTable [0x000000000327F3A0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiGeometry@@@@V?$NiTNewInterface@V?$NiPointer@VNiGeometry@@@@@@@@` +`class NiTObjectArray >`: VTable [0x000000000327F3B8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiGeometry@@@@@@` +`class NiPSysMeshEmitter`: VTable [0x000000000327F3D0, 0x0000000000000000 offset, 46 functions] `.?AVNiPSysMeshEmitter@@` +`class NiPSysMeshUpdateModifier`: VTable [0x000000000327F988, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysMeshUpdateModifier@@` +`class NiPSysModifierActiveCtlr`: VTable [0x000000000327FC18, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysModifierActiveCtlr@@` +`class NiPSysPlanarCollider`: VTable [0x0000000003280018, 0x0000000000000000 offset, 42 functions] `.?AVNiPSysPlanarCollider@@` +`class NiPSysPositionModifier`: VTable [0x00000000032802F0, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysPositionModifier@@` +`class NiPSysRadialFieldModifier`: VTable [0x0000000003280588, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysRadialFieldModifier@@` +`class NiPSysResetOnLoopCtlr`: VTable [0x0000000003280828, 0x0000000000000000 offset, 49 functions] `.?AVNiPSysResetOnLoopCtlr@@` +`class NiPSysRotationModifier`: VTable [0x0000000003280B18, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysRotationModifier@@` +`class NiPSysSpawnModifier`: VTable [0x0000000003280EB8, 0x0000000000000000 offset, 45 functions] `.?AVNiPSysSpawnModifier@@` +`class NiPSysSphereEmitter`: VTable [0x0000000003281218, 0x0000000000000000 offset, 48 functions] `.?AVNiPSysSphereEmitter@@` +`class NiPSysSphericalCollider`: VTable [0x0000000003281500, 0x0000000000000000 offset, 42 functions] `.?AVNiPSysSphericalCollider@@` +`class NiPSysTurbulenceFieldModifier`: VTable [0x0000000003281788, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysTurbulenceFieldModifier@@` +`class NiPSysUpdateCtlr`: VTable [0x0000000003281A30, 0x0000000000000000 offset, 49 functions] `.?AVNiPSysUpdateCtlr@@` +`class NiPSysVortexFieldModifier`: VTable [0x0000000003281CE8, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysVortexFieldModifier@@` +`class BSStripParticleSystem`: VTable [0x0000000003281F78, 0x0000000000000000 offset, 60 functions] `.?AVBSStripParticleSystem@@` +`class BSStripPSysData`: VTable [0x0000000003282308, 0x0000000000000000 offset, 45 functions] `.?AVBSStripPSysData@@` +`class BSPSysHavokUpdateModifier`: VTable [0x00000000032826C0, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysHavokUpdateModifier@@` +`class BSPSysRecycleBoundModifier`: VTable [0x0000000003282A30, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysRecycleBoundModifier@@` +`class BSPSysInheritVelocityModifier`: VTable [0x0000000003282CD0, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysInheritVelocityModifier@@` +`class NiPSysModifierCtlr`: VTable [0x0000000003282F88, 0x0000000000000000 offset, 64 functions] `.?AVNiPSysModifierCtlr@@` +`class NiPSysModifier`: VTable [0x0000000003283260, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysModifier@@` +`class NiPSysModifierFloatCtlr`: VTable [0x00000000032834F8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysModifierFloatCtlr@@` +`class NiPSysFieldModifier`: VTable [0x00000000032837C8, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysFieldModifier@@` +`class NiPSysVolumeEmitter`: VTable [0x00000000032839D8, 0x0000000000000000 offset, 48 functions] `.?AVNiPSysVolumeEmitter@@` +`class NiPSysEmitter`: VTable [0x0000000003283BF0, 0x0000000000000000 offset, 46 functions] `.?AVNiPSysEmitter@@` +`class NiPSysModifierBoolCtlr`: VTable [0x0000000003283F50, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysModifierBoolCtlr@@` +`class NiPSysCollider`: VTable [0x0000000003284220, 0x0000000000000000 offset, 42 functions] `.?AVNiPSysCollider@@` +`class IOManager`: VTable [0x0000000003284A98, 0x0000000000000000 offset, 25 functions] `.?AVIOManager@@` +`struct BSResource::IEntryDB::NotifyLoadDone`: VTable [0x0000000003284B98, 0x0000000000000000 offset, 2 functions] `.?AUNotifyLoadDone@IEntryDB@BSResource@@` +`class SynchronizedMap<__int64,class NiPointer >::SynchronizedMapIterator`: VTable [0x0000000003284CB0, 0x0000000000000000 offset, 2 functions] `.?AVSynchronizedMapIterator@?$SynchronizedMap@_JV?$NiPointer@VBSTask@@@@@@` +`struct `private: virtual void __cdecl IOManager::DoOnPreRunTask(class BSTaskThread * __ptr64) __ptr64'::`2'::Pauser`: VTable [0x0000000003284CD0, 0x0000000000000000 offset, 2 functions] `.?AUPauser@?1??DoOnPreRunTask@IOManager@@EEAAXPEAVBSTaskThread@@@Z@` +`class MessageHandler`: VTable [0x0000000003284FE0, 0x0000000000000000 offset, 11 functions] `.?AVMessageHandler@@` +`class `anonymous namespace'::LogWriteThread`: VTable [0x0000000003285518, 0x0000000000000000 offset, 3 functions] `.?AVLogWriteThread@?A0x3565b104@@` +`class QueuedFile`: VTable [0x0000000003285700, 0x0000000000000000 offset, 13 functions] `.?AVQueuedFile@@` +`class QueuedNamedFile`: VTable [0x0000000003285788, 0x0000000000000000 offset, 13 functions] `.?AVQueuedNamedFile@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000003285980, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0CI@@@@@` +`class BSQueuedResourceCollectionBase`: VTable [0x0000000003285A10, 0x0000000000000000 offset, 19 functions] `.?AVBSQueuedResourceCollectionBase@@` +`class BSQueuedResourceCollectionBase`: VTable [0x0000000003285AD0, 0x0000000000000038 offset, 3 functions] `.?AVBSQueuedResourceCollectionBase@@` +`class BSResource::EntryDB`: VTable [0x0000000003286160, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@` +`class BSInstanceTriShape`: VTable [0x00000000032867A8, 0x0000000000000000 offset, 64 functions] `.?AVBSInstanceTriShape@@` +`class BSMultiStreamInstanceTriShape`: VTable [0x0000000003286A18, 0x0000000000000000 offset, 64 functions] `.?AVBSMultiStreamInstanceTriShape@@` +`class BSTIOStream::TIStream`: VTable [0x0000000003287128, 0x0000000000000000 offset, 1 functions] `.?AV?$TIStream@UBSIOStreamTraits@@@BSTIOStream@@` +`class BSIStream`: VTable [0x0000000003287140, 0x0000000000000000 offset, 1 functions] `.?AVBSIStream@@` +`class BSTIOStream::TOStream`: VTable [0x0000000003287158, 0x0000000000000000 offset, 1 functions] `.?AV?$TOStream@UBSIOStreamTraits@@@BSTIOStream@@` +`class BSOStream`: VTable [0x0000000003287170, 0x0000000000000000 offset, 1 functions] `.?AVBSOStream@@` +`class BSPortalGraphEntry`: VTable [0x0000000003287638, 0x0000000000000000 offset, 2 functions] `.?AVBSPortalGraphEntry@@` +`class BSPortalGraph`: VTable [0x0000000003287658, 0x0000000000000000 offset, 2 functions] `.?AVBSPortalGraph@@` +`class ITextureDB`: VTable [0x00000000032881F0, 0x0000000000000000 offset, 4 functions] `.?AVITextureDB@@` +`class BSResource::EntryDB`: VTable [0x00000000032882D8, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BSTextureDB@@@BSResource@@` +`class BSQueuedResourceCollection,2>`: VTable [0x0000000003288320, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSTextureDB@@@BSResource@@$01@@` +`class BSQueuedResourceCollection,2>`: VTable [0x00000000032883F0, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSTextureDB@@@BSResource@@$01@@` +`class BSTextureDB::QueuedHandles`: VTable [0x0000000003288418, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHandles@BSTextureDB@@` +`class BSTextureDB::QueuedHandles`: VTable [0x00000000032884E8, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHandles@BSTextureDB@@` +`class BSTextureDB::`anonymous namespace'::NiTextureDBForwarded`: VTable [0x0000000003288510, 0x0000000000000000 offset, 4 functions] `.?AVNiTextureDBForwarded@?A0xe4433364@BSTextureDB@@` +`class BSMasterParticleSystem`: VTable [0x0000000003288918, 0x0000000000000000 offset, 64 functions] `.?AVBSMasterParticleSystem@@` +`class BSWindModifier`: VTable [0x0000000003288CA0, 0x0000000000000000 offset, 44 functions] `.?AVBSWindModifier@@` +`class BSCullingProcess`: VTable [0x00000000032892A0, 0x0000000000000000 offset, 29 functions] `.?AVBSCullingProcess@@` +`class BSParticleSystemManager`: VTable [0x0000000003289B68, 0x0000000000000000 offset, 64 functions] `.?AVBSParticleSystemManager@@` +`class BSMultiBoundNode`: VTable [0x000000000328A0E0, 0x0000000000000000 offset, 68 functions] `.?AVBSMultiBoundNode@@` +`class BSOrientedBoxConstructor`: VTable [0x000000000328A800, 0x0000000000000000 offset, 3 functions] `.?AVBSOrientedBoxConstructor@@` +`class BSSphereConstructor`: VTable [0x000000000328A828, 0x0000000000000000 offset, 3 functions] `.?AVBSSphereConstructor@@` +`class BSCylinderConstructor`: VTable [0x000000000328A850, 0x0000000000000000 offset, 3 functions] `.?AVBSCylinderConstructor@@` +`class BSCapsuleConstructor`: VTable [0x000000000328A878, 0x0000000000000000 offset, 3 functions] `.?AVBSCapsuleConstructor@@` +`class BSArrowConstructor`: VTable [0x000000000328A8A0, 0x0000000000000000 offset, 3 functions] `.?AVBSArrowConstructor@@` +`class BSCircleConstructor`: VTable [0x000000000328A8C8, 0x0000000000000000 offset, 3 functions] `.?AVBSCircleConstructor@@` +`class BSRingConstructor`: VTable [0x000000000328A8F0, 0x0000000000000000 offset, 3 functions] `.?AVBSRingConstructor@@` +`class BSFlatQuadConstructor`: VTable [0x000000000328A918, 0x0000000000000000 offset, 3 functions] `.?AVBSFlatQuadConstructor@@` +`class BSDiskConstructor`: VTable [0x000000000328A940, 0x0000000000000000 offset, 3 functions] `.?AVBSDiskConstructor@@` +`class BSReference`: VTable [0x000000000328AD88, 0x0000000000000000 offset, 39 functions] `.?AVBSReference@@` +`class BSNodeReferences`: VTable [0x000000000328AF08, 0x0000000000000000 offset, 39 functions] `.?AVBSNodeReferences@@` +`class BSXFlags`: VTable [0x000000000328B558, 0x0000000000000000 offset, 41 functions] `.?AVBSXFlags@@` +`class BSFurnitureMarkerNode`: VTable [0x000000000328B910, 0x0000000000000000 offset, 41 functions] `.?AVBSFurnitureMarkerNode@@` +`class BSTaskThread`: VTable [0x000000000328BE80, 0x0000000000000000 offset, 3 functions] `.?AVBSTaskThread@@` +`class SynchronizedMap<__int64,class NiPointer >`: VTable [0x000000000328BEA8, 0x0000000000000000 offset, 17 functions] `.?AV?$SynchronizedMap@_JV?$NiPointer@VBSTask@@@@@@` +`class BSTaskManager`: VTable [0x000000000328BF58, 0x0000000000000000 offset, 24 functions] `.?AVBSTaskManager@@` +`class BSTaskManagerThread`: VTable [0x000000000328C088, 0x0000000000000000 offset, 3 functions] `.?AVBSTaskManagerThread@@` +`class BSMultiBound`: VTable [0x000000000328C260, 0x0000000000000000 offset, 41 functions] `.?AVBSMultiBound@@` +`class BSMultiBoundRoom`: VTable [0x000000000328C500, 0x0000000000000000 offset, 68 functions] `.?AVBSMultiBoundRoom@@` +`class BSValueNode`: VTable [0x000000000328CA50, 0x0000000000000000 offset, 65 functions] `.?AVBSValueNode@@` +`class BSOcclusionShape`: VTable [0x000000000328CE70, 0x0000000000000000 offset, 44 functions] `.?AVBSOcclusionShape@@` +`struct BSAttachTechniques::AttachTechniqueInput`: VTable [0x000000000328D090, 0x0000000000000000 offset, 2 functions] `.?AUAttachTechniqueInput@BSAttachTechniques@@` +`class PArrayPoint`: VTable [0x000000000328D458, 0x0000000000000000 offset, 41 functions] `.?AVPArrayPoint@@` +`class NiTArray,class NiTMallocInterface > >`: VTable [0x000000000328D5F0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiAVObject@@@@V?$NiTMallocInterface@V?$NiPointer@VNiAVObject@@@@@@@@` +`class NiTPrimitiveArray >`: VTable [0x000000000328D608, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@V?$NiPointer@VNiAVObject@@@@@@` +`class BSPSysArrayEmitter`: VTable [0x000000000328D620, 0x0000000000000000 offset, 48 functions] `.?AVBSPSysArrayEmitter@@` +`class BSMultiBoundShape`: VTable [0x000000000328D868, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundShape@@` +`class BSOcclusionBox`: VTable [0x000000000328DD90, 0x0000000000000000 offset, 44 functions] `.?AVBSOcclusionBox@@` +`class BSOcclusionPlane`: VTable [0x000000000328E070, 0x0000000000000000 offset, 44 functions] `.?AVBSOcclusionPlane@@` +`class BSPortalSharedNode`: VTable [0x000000000328E338, 0x0000000000000000 offset, 64 functions] `.?AVBSPortalSharedNode@@` +`class BSBodyMorphOffsetsExtraData`: VTable [0x000000000328E780, 0x0000000000000000 offset, 41 functions] `.?AVBSBodyMorphOffsetsExtraData@@` +`class BSBehaviorGraphExtraData`: VTable [0x000000000328EBE8, 0x0000000000000000 offset, 41 functions] `.?AVBSBehaviorGraphExtraData@@` +`class NiTArray * __ptr64,class NiTMallocInterface * __ptr64> >`: VTable [0x000000000328F248, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAV?$NiTPrimitiveSet@PEAVNiNode@@@@V?$NiTMallocInterface@PEAV?$NiTPrimitiveSet@PEAVNiNode@@@@@@@@` +`class NiTPrimitiveArray * __ptr64>`: VTable [0x000000000328F260, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAV?$NiTPrimitiveSet@PEAVNiNode@@@@@@` +`class NiBSBoneLODController`: VTable [0x000000000328F278, 0x0000000000000000 offset, 50 functions] `.?AVNiBSBoneLODController@@` +`class NiTMapBase,class NiNode * __ptr64,unsigned int>`: VTable [0x000000000328F480, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEAVNiNode@@I@@` +`class NiTPointerMap`: VTable [0x000000000328F4D0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEAVNiNode@@I@@` +`class NiTMapBase,unsigned int,bool>`: VTable [0x000000000328F520, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@I_N@@` +`class NiTPointerMap`: VTable [0x000000000328F570, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@I_N@@` +`class BSBoneMap`: VTable [0x000000000328FB60, 0x0000000000000000 offset, 41 functions] `.?AVBSBoneMap@@` +`class BSHEAttribute`: VTable [0x0000000003290820, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@PEBVHalfEdge@BSHEMesh@@@@` +`class BSHEAttribute`: VTable [0x0000000003290BF8, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@PEBD@@` +`class BSHEAttribute`: VTable [0x0000000003290D20, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@_N@@` +`class BSHEAttribute`: VTable [0x0000000003291480, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@VNiColorA@@@@` +`class BSSubIndexTriShape`: VTable [0x0000000003291BD0, 0x0000000000000000 offset, 58 functions] `.?AVBSSubIndexTriShape@@` +`class BSDistantObjectLargeRefExtraData`: VTable [0x0000000003291F18, 0x0000000000000000 offset, 41 functions] `.?AVBSDistantObjectLargeRefExtraData@@` +`class BSBoneLODExtraData`: VTable [0x0000000003292ED8, 0x0000000000000000 offset, 41 functions] `.?AVBSBoneLODExtraData@@` +`class BSPSysMultiTargetEmitterCtlr`: VTable [0x0000000003293688, 0x0000000000000000 offset, 65 functions] `.?AVBSPSysMultiTargetEmitterCtlr@@` +`class BSAVObjectEventSource`: VTable [0x0000000003293A80, 0x0000000000000000 offset, 1 functions] `.?AVBSAVObjectEventSource@@` +`class BSNiNode`: VTable [0x0000000003293B08, 0x0000000000000000 offset, 64 functions] `.?AVBSNiNode@@` +`class BSDecalPlacementVectorExtraData`: VTable [0x0000000003294200, 0x0000000000000000 offset, 41 functions] `.?AVBSDecalPlacementVectorExtraData@@` +`class BSParentVelocityModifier`: VTable [0x0000000003294480, 0x0000000000000000 offset, 44 functions] `.?AVBSParentVelocityModifier@@` +`class BSAnimInteractionMarker`: VTable [0x00000000032946C8, 0x0000000000000000 offset, 41 functions] `.?AVBSAnimInteractionMarker@@` +`class BSInvMarker`: VTable [0x00000000032948F0, 0x0000000000000000 offset, 41 functions] `.?AVBSInvMarker@@` +`class BSWArray`: VTable [0x0000000003294C18, 0x0000000000000000 offset, 41 functions] `.?AVBSWArray@@` +`class BSDamageStage`: VTable [0x0000000003294E40, 0x0000000000000000 offset, 65 functions] `.?AVBSDamageStage@@` +`class BSBlastNode`: VTable [0x0000000003295150, 0x0000000000000000 offset, 65 functions] `.?AVBSBlastNode@@` +`class BSMultiBoundCapsule`: VTable [0x0000000003295460, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundCapsule@@` +`class BSDebrisNode`: VTable [0x00000000032957A8, 0x0000000000000000 offset, 65 functions] `.?AVBSDebrisNode@@` +`class BSPSysStripUpdateModifier`: VTable [0x0000000003295AE8, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysStripUpdateModifier@@` +`class BSPSysSubTexModifier`: VTable [0x0000000003295DF0, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysSubTexModifier@@` +`class BSPSysScaleModifier`: VTable [0x00000000032961D0, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysScaleModifier@@` +`class BSProceduralLightningController`: VTable [0x0000000003296800, 0x0000000000000000 offset, 62 functions] `.?AVBSProceduralLightningController@@` +`class BSProceduralLightningTasklet`: VTable [0x0000000003296A60, 0x0000000000000000 offset, 4 functions] `.?AVBSProceduralLightningTasklet@@` +`class BSLagBoneController`: VTable [0x0000000003296C78, 0x0000000000000000 offset, 49 functions] `.?AVBSLagBoneController@@` +`class BSNonUniformScaleExtraData`: VTable [0x0000000003296F58, 0x0000000000000000 offset, 41 functions] `.?AVBSNonUniformScaleExtraData@@` +`class BSHEMeshDebuggerAction`: VTable [0x0000000003297390, 0x0000000000000000 offset, 1 functions] `.?AVBSHEMeshDebuggerAction@@` +`class BSHEMeshDebuggerActionCollapse`: VTable [0x00000000032973A8, 0x0000000000000000 offset, 1 functions] `.?AVBSHEMeshDebuggerActionCollapse@@` +`class BSHEMeshDebuggerActionAdd`: VTable [0x00000000032973C0, 0x0000000000000000 offset, 1 functions] `.?AVBSHEMeshDebuggerActionAdd@@` +`class BSHEMeshDebuggerActionRemove`: VTable [0x00000000032973D8, 0x0000000000000000 offset, 1 functions] `.?AVBSHEMeshDebuggerActionRemove@@` +`class BSRangeNode`: VTable [0x00000000032974F8, 0x0000000000000000 offset, 65 functions] `.?AVBSRangeNode@@` +`class BSTableCurve`: VTable [0x0000000003297820, 0x0000000000000000 offset, 2 functions] `.?AVBSTableCurve@@` +`class BSNavmesh`: VTable [0x0000000003298A80, 0x0000000000000000 offset, 2 functions] `.?AVBSNavmesh@@` +`struct ITrianglePathSplitter`: VTable [0x000000000329AF38, 0x0000000000000000 offset, 3 functions] `.?AUITrianglePathSplitter@@` +`struct FindTriangleForLocationWaterFilter`: VTable [0x000000000329AF60, 0x0000000000000000 offset, 2 functions] `.?AUFindTriangleForLocationWaterFilter@@` +`struct BSPathing::EdgeFoundVisitor`: VTable [0x000000000329AF80, 0x0000000000000000 offset, 2 functions] `.?AUEdgeFoundVisitor@BSPathing@@` +`class BSPathing`: VTable [0x000000000329AFA0, 0x0000000000000000 offset, 9 functions] `.?AVBSPathing@@` +`struct TrianglePathWaterAndLedgeSplitter`: VTable [0x000000000329B000, 0x0000000000000000 offset, 3 functions] `.?AUTrianglePathWaterAndLedgeSplitter@@` +`struct IPathSmootherRayCast`: VTable [0x000000000329B078, 0x0000000000000000 offset, 2 functions] `.?AUIPathSmootherRayCast@@` +`struct `anonymous namespace'::FindClosestOpenEdgeFunctor`: VTable [0x000000000329B160, 0x0000000000000000 offset, 2 functions] `.?AUFindClosestOpenEdgeFunctor@?A0xcab6d00e@@` +`struct `anonymous namespace'::SortIntersectingEdgesFunctor`: VTable [0x000000000329B180, 0x0000000000000000 offset, 2 functions] `.?AUSortIntersectingEdgesFunctor@?A0xcab6d00e@@` +`struct `anonymous namespace'::CheckSphereVisitor`: VTable [0x000000000329B388, 0x0000000000000000 offset, 2 functions] `.?AUCheckSphereVisitor@?A0xcab6d00e@@` +`struct `anonymous namespace'::PathSmootherRayCastBuildNodesForLargeZDelta`: VTable [0x000000000329B598, 0x0000000000000000 offset, 2 functions] `.?AUPathSmootherRayCastBuildNodesForLargeZDelta@?A0xcab6d00e@@` +`struct IBSTCreator`: VTable [0x000000000329B958, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSPathingSolution@@@@` +`struct BSTDerivedCreator`: VTable [0x000000000329B980, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBSPathingSolution@@V1@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x000000000329B9A8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBSPathingSolution@@V1@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingSolution@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x000000000329B9D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBSPathingSolution@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingSolution@@$0EA@@@@@` +`struct AutoRegisterPathing >`: VTable [0x000000000329B9F8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VBSPathingSolution@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingSolution@@$0EA@@@@@` +`class BSPathingLOSGridMap`: VTable [0x000000000329C7A0, 0x0000000000000000 offset, 3 functions] `.?AVBSPathingLOSGridMap@@` +`class BSPathingLOSGrid`: VTable [0x000000000329C7C8, 0x0000000000000000 offset, 3 functions] `.?AVBSPathingLOSGrid@@` +`class BSPathingLOSGridCell`: VTable [0x000000000329C7F0, 0x0000000000000000 offset, 3 functions] `.?AVBSPathingLOSGridCell@@` +`struct BSTDerivedCreator`: VTable [0x000000000329C980, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBSPathingRequest@@V1@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x000000000329C9A8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBSPathingRequest@@V1@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x000000000329C9D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBSPathingRequest@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`struct AutoRegisterPathing >`: VTable [0x000000000329C9F8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VBSPathingRequest@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` +`class BSPathingRequest`: VTable [0x000000000329CBC0, 0x0000000000000000 offset, 7 functions] `.?AVBSPathingRequest@@` +`class IPathBuilderTracker`: VTable [0x000000000329CC10, 0x0000000000000000 offset, 3 functions] `.?AVIPathBuilderTracker@@` +`class NullPathBuilderTracker`: VTable [0x000000000329CC38, 0x0000000000000000 offset, 3 functions] `.?AVNullPathBuilderTracker@@` +`class AutoRegisterPathBuilderFactory`: VTable [0x000000000329CDB0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VBSPathingRequest@@VPathBuilderBSPathingRequest@?A0xdbca0f72@@@@` +`struct BSPathing::CheckLineOfSightFilter`: VTable [0x000000000329DA40, 0x0000000000000000 offset, 2 functions] `.?AUCheckLineOfSightFilter@BSPathing@@` +`class IPathBuilder`: VTable [0x000000000329DA60, 0x0000000000000000 offset, 2 functions] `.?AVIPathBuilder@@` +`class BSPathBuilder`: VTable [0x000000000329DA80, 0x0000000000000000 offset, 2 functions] `.?AVBSPathBuilder@@` +`struct `anonymous namespace'::CheckLineOfSightTriangleFlagFiltersAdapter`: VTable [0x000000000329E938, 0x0000000000000000 offset, 2 functions] `.?AUCheckLineOfSightTriangleFlagFiltersAdapter@?A0xdbca0f72@@` +`struct IMovementControllerFunctor`: VTable [0x000000000329F658, 0x0000000000000000 offset, 2 functions] `.?AUIMovementControllerFunctor@@` +`class BSFlatArrowConstructor`: VTable [0x000000000329F678, 0x0000000000000000 offset, 3 functions] `.?AVBSFlatArrowConstructor@@` +`class BSPathConstructor`: VTable [0x000000000329F6A0, 0x0000000000000000 offset, 3 functions] `.?AVBSPathConstructor@@` +`struct SetDebugRenderingFunctor`: VTable [0x000000000329F6C8, 0x0000000000000000 offset, 2 functions] `.?AUSetDebugRenderingFunctor@@` +`class MovementArbitrationScheme`: VTable [0x00000000032A0290, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationScheme@M@@` +`class MovementArbitrationAverage`: VTable [0x00000000032A02B0, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationAverage@M@@` +`class MovementArbitrationAverageFloat`: VTable [0x00000000032A02D0, 0x0000000000000000 offset, 2 functions] `.?AVMovementArbitrationAverageFloat@@` +`class MovementArbitrationScheme >`: VTable [0x00000000032A02F0, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationScheme@V?$BSTSmartPointer@VIMovementParameters@@UBSTSmartPointerIntrusiveRefCount@@@@@@` +`class MovementArbitrationMaxWeight >`: VTable [0x00000000032A0310, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationMaxWeight@V?$BSTSmartPointer@VIMovementParameters@@UBSTSmartPointerIntrusiveRefCount@@@@@@` +`class MovementArbitrationMaxWeightParameters`: VTable [0x00000000032A0330, 0x0000000000000000 offset, 2 functions] `.?AVMovementArbitrationMaxWeightParameters@@` +`class MovementArbitrationScheme`: VTable [0x00000000032A0350, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationScheme@VNiPoint3@@@@` +`class MovementArbitrationMaxWeight`: VTable [0x00000000032A0370, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationMaxWeight@VNiPoint3@@@@` +`class MovementArbitrationMaxWeightPoint`: VTable [0x00000000032A0390, 0x0000000000000000 offset, 2 functions] `.?AVMovementArbitrationMaxWeightPoint@@` +`class IMovementPlayIdleResult`: VTable [0x00000000032A03B0, 0x0000000000000000 offset, 4 functions] `.?AVIMovementPlayIdleResult@@` +`class NullMovementSelectIdleResult`: VTable [0x00000000032A03E0, 0x0000000000000000 offset, 4 functions] `.?AVNullMovementSelectIdleResult@@` +`class AStarSearch,22>`: VTable [0x00000000032A0AE0, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@PEBVBSNavmeshInfo@@V?$BSTSmartPointer@VBSPathingDoor@@UBSTSmartPointerIntrusiveRefCount@@@@$0BG@@@` +`class BSNavmeshInfoSearch`: VTable [0x00000000032A0B08, 0x0000000000000000 offset, 3 functions] `.?AVBSNavmeshInfoSearch@@` +`class BSPrecomputedNavmeshInfoSearch`: VTable [0x00000000032A0B30, 0x0000000000000000 offset, 3 functions] `.?AVBSPrecomputedNavmeshInfoSearch@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000032A0DF0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0LA@@@@@` +`struct BSNavmeshInfoMap::IRecursiveVisitor`: VTable [0x00000000032A15A8, 0x0000000000000000 offset, 3 functions] `.?AUIRecursiveVisitor@BSNavmeshInfoMap@@` +`class BSNavmeshInfoMap`: VTable [0x00000000032A15D0, 0x0000000000000000 offset, 6 functions] `.?AVBSNavmeshInfoMap@@` +`struct `anonymous namespace'::FindPreferredConnectedNavmeshInfosWithinRadiusVisitor`: VTable [0x00000000032A17D8, 0x0000000000000000 offset, 3 functions] `.?AUFindPreferredConnectedNavmeshInfosWithinRadiusVisitor@?A0xdaaffc64@@` +`struct BSPrecomputedNavmeshInfoPathMap::INavmeshInfoVisitor`: VTable [0x00000000032A1AB0, 0x0000000000000000 offset, 2 functions] `.?AUINavmeshInfoVisitor@BSPrecomputedNavmeshInfoPathMap@@` +`class BSNavmeshObstacleData`: VTable [0x00000000032A2198, 0x0000000000000000 offset, 2 functions] `.?AVBSNavmeshObstacleData@@` +`struct BSPathManager::IPendingRequestVisitor`: VTable [0x00000000032A34B0, 0x0000000000000000 offset, 2 functions] `.?AUIPendingRequestVisitor@BSPathManager@@` +`class PathingTaskData`: VTable [0x00000000032A34D0, 0x0000000000000000 offset, 4 functions] `.?AVPathingTaskData@@` +`class BSTMessageQueue >`: VTable [0x00000000032A3500, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@V?$NiPointer@VNiAVObject@@@@@@` +`class BSTCommonMessageQueue >`: VTable [0x00000000032A3540, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@V?$NiPointer@VNiAVObject@@@@@@` +`class BSTCommonStaticMessageQueue,256>`: VTable [0x00000000032A3590, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonStaticMessageQueue@V?$NiPointer@VNiAVObject@@@@$0BAA@@@` +`struct INavmeshSearchFilterSet`: VTable [0x00000000032A3F38, 0x0000000000000000 offset, 2 functions] `.?AUINavmeshSearchFilterSet@@` +`struct BSNavmeshSearchFilters`: VTable [0x00000000032A3F58, 0x0000000000000000 offset, 2 functions] `.?AUBSNavmeshSearchFilters@@` +`class BSNavmeshSearch`: VTable [0x00000000032A4150, 0x0000000000000000 offset, 3 functions] `.?AVBSNavmeshSearch@@` +`struct PathSmootherRayCastUsePreferredTris`: VTable [0x00000000032A4420, 0x0000000000000000 offset, 2 functions] `.?AUPathSmootherRayCastUsePreferredTris@@` +`struct PathSmootherRayCastUseTrianglePath`: VTable [0x00000000032A4440, 0x0000000000000000 offset, 2 functions] `.?AUPathSmootherRayCastUseTrianglePath@@` +`struct VelocityObstacle::Utilities::BuildOpenEdgeListsVisitor`: VTable [0x00000000032A4A80, 0x0000000000000000 offset, 2 functions] `.?AUBuildOpenEdgeListsVisitor@Utilities@VelocityObstacle@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000032A4B20, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0HI@@@@@` +`class BSNavmeshObstacleUndoData`: VTable [0x00000000032A51B0, 0x0000000000000000 offset, 2 functions] `.?AVBSNavmeshObstacleUndoData@@` +`struct ISmoothingRayValidator`: VTable [0x00000000032A5888, 0x0000000000000000 offset, 3 functions] `.?AUISmoothingRayValidator@@` +`struct GroundPathRayValidator`: VTable [0x00000000032A58B0, 0x0000000000000000 offset, 3 functions] `.?AUGroundPathRayValidator@@` +`struct WaterPathRayValidator`: VTable [0x00000000032A58D8, 0x0000000000000000 offset, 3 functions] `.?AUWaterPathRayValidator@@` +`struct IPathingNodeGenerator`: VTable [0x00000000032A5900, 0x0000000000000000 offset, 4 functions] `.?AUIPathingNodeGenerator@@` +`struct GroundPathPathingNodeGenerator`: VTable [0x00000000032A5930, 0x0000000000000000 offset, 4 functions] `.?AUGroundPathPathingNodeGenerator@@` +`struct WaterPathPathingNodeGenerator`: VTable [0x00000000032A5960, 0x0000000000000000 offset, 4 functions] `.?AUWaterPathPathingNodeGenerator@@` +`class AStarSearch`: VTable [0x00000000032A6098, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@UBSPathSmootherPOVNode@@UBSPathSmootherPOVLink@@$0M@@@` +`class BSPathSmootherPOVSearch`: VTable [0x00000000032A60C0, 0x0000000000000000 offset, 3 functions] `.?AVBSPathSmootherPOVSearch@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000032A6330, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0GA@@@@@` +`struct IBSTCreator`: VTable [0x00000000032A6368, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VMovementMessage@@@@` +`struct BSTDerivedCreator`: VTable [0x00000000032A6390, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageJump@@VMovementMessage@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000032A63B8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageJump@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032A63E0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageJump@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterPathing >`: VTable [0x00000000032A6408, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageJump@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`class MovementMessage`: VTable [0x00000000032A6490, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessage@@` +`struct IPathFollowerAction`: VTable [0x00000000032A64D8, 0x0000000000000000 offset, 4 functions] `.?AUIPathFollowerAction@@` +`class MovementMessageJump`: VTable [0x00000000032A6508, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageJump@@` +`class MovementMessageJump`: VTable [0x00000000032A6550, 0x0000000000000010 offset, 4 functions] `.?AVMovementMessageJump@@` +`class BSPathingSearchRayCast`: VTable [0x00000000032A6A40, 0x0000000000000000 offset, 1 functions] `.?AVBSPathingSearchRayCast@@` +`class MovementArbitrationScheme`: VTable [0x00000000032A6CA8, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationScheme@VMovementVector@@@@` +`class MovementArbitrationVectorAdd`: VTable [0x00000000032A6CC8, 0x0000000000000000 offset, 2 functions] `.?AVMovementArbitrationVectorAdd@@` +`struct BSTDerivedCreator`: VTable [0x00000000032A6CE8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageBlocked@@VMovementMessage@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000032A6D10, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageBlocked@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032A6D38, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageBlocked@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterPathing >`: VTable [0x00000000032A6D60, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageBlocked@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`class MovementMessageBlocked`: VTable [0x00000000032A6DB8, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageBlocked@@` +`struct ISelectIdleFilter`: VTable [0x00000000032A70C0, 0x0000000000000000 offset, 2 functions] `.?AUISelectIdleFilter@@` +`struct MovementSelectIdleUtils::SelectFirstIdleFilter`: VTable [0x00000000032A70E0, 0x0000000000000000 offset, 2 functions] `.?AUSelectFirstIdleFilter@MovementSelectIdleUtils@@` +`struct MovementSelectIdleUtils::SelectClosestIdleToPath`: VTable [0x00000000032A71D0, 0x0000000000000000 offset, 2 functions] `.?AUSelectClosestIdleToPath@MovementSelectIdleUtils@@` +`struct BSTDerivedCreator`: VTable [0x00000000032A7200, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageActivateDoor@@VMovementMessage@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000032A7228, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageActivateDoor@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032A7250, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageActivateDoor@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterPathing >`: VTable [0x00000000032A7278, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageActivateDoor@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`class MovementMessageDoor`: VTable [0x00000000032A7360, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageDoor@@` +`class MovementMessageApproachingDoor`: VTable [0x00000000032A73A8, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageApproachingDoor@@` +`class MovementMessageActivateDoor`: VTable [0x00000000032A73F0, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageActivateDoor@@` +`class MovementMessageActivateDoor`: VTable [0x00000000032A7438, 0x0000000000000018 offset, 4 functions] `.?AVMovementMessageActivateDoor@@` +`struct BSTDerivedCreator`: VTable [0x00000000032A74B8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageNewPath@@VMovementMessage@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000032A74E0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageNewPath@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032A7508, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageNewPath@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterPathing >`: VTable [0x00000000032A7530, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageNewPath@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct BSTDerivedCreator`: VTable [0x00000000032A7558, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessagePathComplete@@VMovementMessage@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000032A7580, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessagePathComplete@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032A75A8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessagePathComplete@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterPathing >`: VTable [0x00000000032A75D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessagePathComplete@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct BSTDerivedCreator`: VTable [0x00000000032A75F8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessagePathFailed@@VMovementMessage@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000032A7620, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessagePathFailed@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032A7648, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessagePathFailed@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterPathing >`: VTable [0x00000000032A7670, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessagePathFailed@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`class MovementMessageNewPath`: VTable [0x00000000032A7698, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageNewPath@@` +`class MovementMessagePathEvent`: VTable [0x00000000032A7838, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessagePathEvent@@` +`class MovementMessagePathComplete`: VTable [0x00000000032A7880, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessagePathComplete@@` +`class MovementMessagePathFailed`: VTable [0x00000000032A78C8, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessagePathFailed@@` +`class MovementMessagePathCleared`: VTable [0x00000000032A7910, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessagePathCleared@@` +`struct IBSTCreator`: VTable [0x00000000032A7B70, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VMovementAgent@@@@` +`struct BSTDerivedCreator`: VTable [0x00000000032A7B98, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementAgentPathFollowerStandard@@VMovementAgent@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000032A7BC0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementAgentPathFollowerStandard@@VMovementAgent@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032A7BE8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementAgentPathFollowerStandard@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` +`struct AutoRegisterMovementAgentCreator`: VTable [0x00000000032A7C10, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementAgentCreator@VMovementAgentPathFollowerStandard@@@@` +`struct IPipelineStageInterface`: VTable [0x00000000032A89E8, 0x0000000000000000 offset, 1 functions] `.?AUIPipelineStageInterface@@` +`struct IMovementPlannerAgent`: VTable [0x00000000032A8A00, 0x0000000000000000 offset, 4 functions] `.?AUIMovementPlannerAgent@@` +`struct IMovementPathManagerAgent`: VTable [0x00000000032A8A30, 0x0000000000000000 offset, 7 functions] `.?AUIMovementPathManagerAgent@@` +`struct IMovementInterface`: VTable [0x00000000032A8A80, 0x0000000000000000 offset, 1 functions] `.?AUIMovementInterface@@` +`struct IMovementQueryPathFollowing::INodeVisitor`: VTable [0x00000000032A8A98, 0x0000000000000000 offset, 2 functions] `.?AUINodeVisitor@IMovementQueryPathFollowing@@` +`class IMovementQueryPathFollowing`: VTable [0x00000000032A8AB8, 0x0000000000000000 offset, 21 functions] `.?AVIMovementQueryPathFollowing@@` +`class IMovementSetPathFollowing`: VTable [0x00000000032A8B90, 0x0000000000000000 offset, 2 functions] `.?AVIMovementSetPathFollowing@@` +`class IMovementDebugRenderingInterface`: VTable [0x00000000032A8BB0, 0x0000000000000000 offset, 3 functions] `.?AVIMovementDebugRenderingInterface@@` +`class IMovementSelectIdle`: VTable [0x00000000032A8BD8, 0x0000000000000000 offset, 6 functions] `.?AVIMovementSelectIdle@@` +`struct ICheckEndReachedFunctorMapper`: VTable [0x00000000032A8C20, 0x0000000000000000 offset, 3 functions] `.?AUICheckEndReachedFunctorMapper@@` +`struct IMovementHandlerAgent`: VTable [0x00000000032A8C48, 0x0000000000000000 offset, 4 functions] `.?AUIMovementHandlerAgent@@` +`struct CheckParameterReachedFunctor`: VTable [0x00000000032A8C78, 0x0000000000000000 offset, 4 functions] `.?AUCheckParameterReachedFunctor@@` +`struct CheckGoalReachedFunctor`: VTable [0x00000000032A8CA8, 0x0000000000000000 offset, 4 functions] `.?AUCheckGoalReachedFunctor@@` +`struct CheckStoppedMovingFunctor`: VTable [0x00000000032A8CD8, 0x0000000000000000 offset, 4 functions] `.?AUCheckStoppedMovingFunctor@@` +`class MovementAgentPathFollowerStandard`: VTable [0x00000000032A8D08, 0x0000000000000000 offset, 13 functions] `.?AVMovementAgentPathFollowerStandard@@` +`class MovementAgentPathFollowerStandard`: VTable [0x00000000032A8D90, 0x0000000000000018 offset, 4 functions] `.?AVMovementAgentPathFollowerStandard@@` +`class MovementAgentPathFollowerStandard`: VTable [0x00000000032A8DC0, 0x0000000000000020 offset, 7 functions] `.?AVMovementAgentPathFollowerStandard@@` +`class MovementAgentPathFollowerStandard`: VTable [0x00000000032A8E10, 0x0000000000000028 offset, 21 functions] `.?AVMovementAgentPathFollowerStandard@@` +`class MovementAgentPathFollowerStandard`: VTable [0x00000000032A8EE8, 0x0000000000000030 offset, 2 functions] `.?AVMovementAgentPathFollowerStandard@@` +`class MovementAgentPathFollowerStandard`: VTable [0x00000000032A8F08, 0x0000000000000038 offset, 3 functions] `.?AVMovementAgentPathFollowerStandard@@` +`class MovementAgentPathFollowerStandard`: VTable [0x00000000032A8F30, 0x0000000000000040 offset, 4 functions] `.?AVMovementAgentPathFollowerStandard@@` +`class MovementAgentPathFollowerStandard`: VTable [0x00000000032A8F60, 0x0000000000000048 offset, 4 functions] `.?AVMovementAgentPathFollowerStandard@@` +`struct `anonymous namespace'::CheckEndReachedFunctorMapper`: VTable [0x00000000032A9468, 0x0000000000000000 offset, 3 functions] `.?AUCheckEndReachedFunctorMapper@?A0xd3cd8051@@` +`class IMovementParameters`: VTable [0x00000000032A9720, 0x0000000000000000 offset, 9 functions] `.?AVIMovementParameters@@` +`class MovementParameters`: VTable [0x00000000032A9780, 0x0000000000000000 offset, 9 functions] `.?AVMovementParameters@@` +`class IMovementControllerRegisterInterface`: VTable [0x00000000032AA1F8, 0x0000000000000000 offset, 5 functions] `.?AVIMovementControllerRegisterInterface@@` +`class MovementControllerAI`: VTable [0x00000000032AA238, 0x0000000000000000 offset, 11 functions] `.?AVMovementControllerAI@@` +`struct IMovementState`: VTable [0x00000000032AA2B0, 0x0000000000000000 offset, 20 functions] `.?AUIMovementState@@` +`struct NullMovementState`: VTable [0x00000000032AA380, 0x0000000000000000 offset, 20 functions] `.?AUNullMovementState@@` +`class BSPathingStreamSimpleBufferRead`: VTable [0x00000000032AA450, 0x0000000000000000 offset, 20 functions] `.?AVBSPathingStreamSimpleBufferRead@@` +`class IMovementControllerDataTracker`: VTable [0x00000000032AA520, 0x0000000000000000 offset, 2 functions] `.?AVIMovementControllerDataTracker@@` +`class MovementControllerNullDataTracker`: VTable [0x00000000032AA540, 0x0000000000000000 offset, 2 functions] `.?AVMovementControllerNullDataTracker@@` +`class MovementAgent`: VTable [0x00000000032AA9F0, 0x0000000000000000 offset, 13 functions] `.?AVMovementAgent@@` +`struct IBSTCreator`: VTable [0x00000000032AAB80, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VMovementArbiter@@@@` +`struct BSTDerivedCreator`: VTable [0x00000000032AABA8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementPathManagerArbiter@@VMovementArbiter@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000032AABD0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementPathManagerArbiter@@VMovementArbiter@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032AABF8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementPathManagerArbiter@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` +`struct AutoRegisterMovementArbiterCreator`: VTable [0x00000000032AAC20, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementArbiterCreator@VMovementPathManagerArbiter@@@@` +`class MovementPathManagerAgent`: VTable [0x00000000032AB578, 0x0000000000000000 offset, 13 functions] `.?AVMovementPathManagerAgent@@` +`class MovementPathManagerAgent`: VTable [0x00000000032AB600, 0x0000000000000018 offset, 7 functions] `.?AVMovementPathManagerAgent@@` +`class IMovementSetGoal`: VTable [0x00000000032AB650, 0x0000000000000000 offset, 5 functions] `.?AVIMovementSetGoal@@` +`class IMovementQueryPathingState`: VTable [0x00000000032AB690, 0x0000000000000000 offset, 14 functions] `.?AVIMovementQueryPathingState@@` +`class MovementPathManagerArbiter`: VTable [0x00000000032AB720, 0x0000000000000000 offset, 18 functions] `.?AVMovementPathManagerArbiter@@` +`class MovementPathManagerArbiter`: VTable [0x00000000032AB7D8, 0x0000000000000018 offset, 5 functions] `.?AVMovementPathManagerArbiter@@` +`class MovementPathManagerArbiter`: VTable [0x00000000032AB818, 0x0000000000000020 offset, 14 functions] `.?AVMovementPathManagerArbiter@@` +`class MovementPathManagerArbiter`: VTable [0x00000000032AB8A8, 0x0000000000000028 offset, 3 functions] `.?AVMovementPathManagerArbiter@@` +`class IMovementAgentDataTracker`: VTable [0x00000000032AB8D0, 0x0000000000000000 offset, 2 functions] `.?AV?$IMovementAgentDataTracker@UIMovementPathManagerAgent@@W4AGENT_RESULT@MovementPathManagerAgentReturnData@@@@` +`class IMovementPathManagerDataTracker`: VTable [0x00000000032AB8F0, 0x0000000000000000 offset, 4 functions] `.?AVIMovementPathManagerDataTracker@@` +`class MovementPathManagerNullTracker`: VTable [0x00000000032AB920, 0x0000000000000000 offset, 4 functions] `.?AVMovementPathManagerNullTracker@@` +`class IStaticAvoidNodeManager`: VTable [0x00000000032AB950, 0x0000000000000000 offset, 3 functions] `.?AVIStaticAvoidNodeManager@@` +`class IPathFollowerState`: VTable [0x00000000032AC0D0, 0x0000000000000000 offset, 4 functions] `.?AVIPathFollowerState@@` +`struct ICheckEndReachedFunctor`: VTable [0x00000000032AC100, 0x0000000000000000 offset, 4 functions] `.?AUICheckEndReachedFunctor@@` +`class PathFollowerStatePlayIdle`: VTable [0x00000000032AC1F0, 0x0000000000000000 offset, 4 functions] `.?AVPathFollowerStatePlayIdle@@` +`class PathFollowerStateFollowPathToParameter`: VTable [0x00000000032AC408, 0x0000000000000000 offset, 4 functions] `.?AVPathFollowerStateFollowPathToParameter@@` +`class PathFollowerStateTurnToAngle`: VTable [0x00000000032AC620, 0x0000000000000000 offset, 4 functions] `.?AVPathFollowerStateTurnToAngle@@` +`class PathFollowerStateKeepLastDirection`: VTable [0x00000000032AC6F0, 0x0000000000000000 offset, 4 functions] `.?AVPathFollowerStateKeepLastDirection@@` +`struct BSTDerivedCreator`: VTable [0x00000000032AC7F8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementPlannerArbiter@@VMovementArbiter@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000032AC820, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementPlannerArbiter@@VMovementArbiter@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032AC848, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementPlannerArbiter@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` +`struct AutoRegisterMovementArbiterCreator`: VTable [0x00000000032AC870, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementArbiterCreator@VMovementPlannerArbiter@@@@` +`class IMovementPlannerSetArbitration`: VTable [0x00000000032ACE38, 0x0000000000000000 offset, 7 functions] `.?AVIMovementPlannerSetArbitration@@` +`class MovementPlannerArbiter`: VTable [0x00000000032ACE88, 0x0000000000000000 offset, 18 functions] `.?AVMovementPlannerArbiter@@` +`class MovementPlannerArbiter`: VTable [0x00000000032ACF40, 0x0000000000000018 offset, 7 functions] `.?AVMovementPlannerArbiter@@` +`class MovementPlannerArbiter`: VTable [0x00000000032ACF90, 0x0000000000000020 offset, 3 functions] `.?AVMovementPlannerArbiter@@` +`class MovementPlannerAgent`: VTable [0x00000000032ACFB8, 0x0000000000000000 offset, 13 functions] `.?AVMovementPlannerAgent@@` +`class MovementPlannerAgent`: VTable [0x00000000032AD040, 0x0000000000000018 offset, 4 functions] `.?AVMovementPlannerAgent@@` +`class IMovementAgentDataTracker`: VTable [0x00000000032AD098, 0x0000000000000000 offset, 2 functions] `.?AV?$IMovementAgentDataTracker@UIMovementPlannerAgent@@VMovementPlannerAgentReturnDataSmallDelta@@@@` +`class MovementAgentNullTracker`: VTable [0x00000000032AD0B8, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementAgentNullTracker@UIMovementPlannerAgent@@VMovementPlannerAgentReturnDataSmallDelta@@@@` +`class WeightedModifierVisitor >`: VTable [0x00000000032AD270, 0x0000000000000000 offset, 3 functions] `.?AV?$WeightedModifierVisitor@V?$BSTSmartPointer@VIMovementParameters@@UBSTSmartPointerIntrusiveRefCount@@@@@@` +`class VisitReturnData,class BSScrapArrayAllocator>`: VTable [0x00000000032AD298, 0x0000000000000000 offset, 3 functions] `.?AV?$VisitReturnData@V?$BSTSmartPointer@VIMovementParameters@@UBSTSmartPointerIntrusiveRefCount@@@@VBSScrapArrayAllocator@@@@` +`class WeightedModifierVisitor`: VTable [0x00000000032AD2C0, 0x0000000000000000 offset, 3 functions] `.?AV?$WeightedModifierVisitor@VMovementVector@@@@` +`class VisitReturnData`: VTable [0x00000000032AD2E8, 0x0000000000000000 offset, 3 functions] `.?AV?$VisitReturnData@VMovementVector@@VBSScrapArrayAllocator@@@@` +`class WeightedModifierVisitor`: VTable [0x00000000032AD310, 0x0000000000000000 offset, 3 functions] `.?AV?$WeightedModifierVisitor@VNiPoint3@@@@` +`class VisitReturnData`: VTable [0x00000000032AD338, 0x0000000000000000 offset, 3 functions] `.?AV?$VisitReturnData@VNiPoint3@@VBSScrapArrayAllocator@@@@` +`struct BSTDerivedCreator`: VTable [0x00000000032AD698, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementHandlerArbiter@@VMovementArbiter@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000032AD6C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementHandlerArbiter@@VMovementArbiter@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032AD6E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementHandlerArbiter@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` +`struct AutoRegisterMovementArbiterCreator`: VTable [0x00000000032AD710, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementArbiterCreator@VMovementHandlerArbiter@@@@` +`class MovementHandlerArbiter`: VTable [0x00000000032AD948, 0x0000000000000000 offset, 18 functions] `.?AVMovementHandlerArbiter@@` +`class MovementHandlerArbiter`: VTable [0x00000000032ADA00, 0x0000000000000018 offset, 3 functions] `.?AVMovementHandlerArbiter@@` +`class MovementHandlerAgent`: VTable [0x00000000032ADA28, 0x0000000000000000 offset, 13 functions] `.?AVMovementHandlerAgent@@` +`class MovementHandlerAgent`: VTable [0x00000000032ADAB0, 0x0000000000000018 offset, 4 functions] `.?AVMovementHandlerAgent@@` +`class IMovementAgentDataTracker`: VTable [0x00000000032ADAE0, 0x0000000000000000 offset, 2 functions] `.?AV?$IMovementAgentDataTracker@UIMovementHandlerAgent@@UMovementHandlerUpdateDataSmallDelta@@@@` +`class MovementAgentNullTracker`: VTable [0x00000000032ADB00, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementAgentNullTracker@UIMovementHandlerAgent@@UMovementHandlerUpdateDataSmallDelta@@@@` +`class IMovementAgentDataTracker`: VTable [0x00000000032ADB20, 0x0000000000000000 offset, 2 functions] `.?AV?$IMovementAgentDataTracker@UIMovementHandlerAgent@@UMovementHandlerOutputDataSmallDelta@@@@` +`class MovementAgentNullTracker`: VTable [0x00000000032ADB40, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementAgentNullTracker@UIMovementHandlerAgent@@UMovementHandlerOutputDataSmallDelta@@@@` +`struct BSTDerivedCreator`: VTable [0x00000000032ADDF0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementAgentActorState@@VMovementAgent@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000032ADE18, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementAgentActorState@@VMovementAgent@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032ADE40, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementAgentActorState@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` +`struct AutoRegisterMovementAgentCreator`: VTable [0x00000000032ADE68, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementAgentCreator@VMovementAgentActorState@@@@` +`class IMovementSetState`: VTable [0x00000000032AE070, 0x0000000000000000 offset, 3 functions] `.?AVIMovementSetState@@` +`class IMovementQueryState`: VTable [0x00000000032AE098, 0x0000000000000000 offset, 3 functions] `.?AVIMovementQueryState@@` +`class MovementAgentActorState`: VTable [0x00000000032AE0C0, 0x0000000000000000 offset, 13 functions] `.?AVMovementAgentActorState@@` +`class MovementAgentActorState`: VTable [0x00000000032AE148, 0x0000000000000018 offset, 4 functions] `.?AVMovementAgentActorState@@` +`class MovementAgentActorState`: VTable [0x00000000032AE178, 0x0000000000000020 offset, 3 functions] `.?AVMovementAgentActorState@@` +`class MovementAgentActorState`: VTable [0x00000000032AE1A0, 0x0000000000000028 offset, 3 functions] `.?AVMovementAgentActorState@@` +`struct BSTDerivedCreator`: VTable [0x00000000032AE3B8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementAgentActorAvoider@@VMovementAgent@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000032AE3E0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementAgentActorAvoider@@VMovementAgent@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032AE408, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementAgentActorAvoider@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` +`struct AutoRegisterMovementAgentCreator`: VTable [0x00000000032AE430, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementAgentCreator@VMovementAgentActorAvoider@@@@` +`class IMovementQueryActorAvoidance`: VTable [0x00000000032AEC18, 0x0000000000000000 offset, 3 functions] `.?AVIMovementQueryActorAvoidance@@` +`class MovementAgentActorAvoider`: VTable [0x00000000032AEC40, 0x0000000000000000 offset, 13 functions] `.?AVMovementAgentActorAvoider@@` +`class MovementAgentActorAvoider`: VTable [0x00000000032AECC8, 0x0000000000000018 offset, 4 functions] `.?AVMovementAgentActorAvoider@@` +`class MovementAgentActorAvoider`: VTable [0x00000000032AECF8, 0x0000000000000020 offset, 7 functions] `.?AVMovementAgentActorAvoider@@` +`class MovementAgentActorAvoider`: VTable [0x00000000032AED48, 0x0000000000000028 offset, 3 functions] `.?AVMovementAgentActorAvoider@@` +`class MovementAgentActorAvoider`: VTable [0x00000000032AED70, 0x0000000000000030 offset, 3 functions] `.?AVMovementAgentActorAvoider@@` +`struct BSTDerivedCreator`: VTable [0x00000000032AEF28, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementHandlerAgentStrafing@@VMovementAgent@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000032AEF50, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementHandlerAgentStrafing@@VMovementAgent@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032AEF78, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementHandlerAgentStrafing@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` +`struct AutoRegisterMovementAgentCreator`: VTable [0x00000000032AEFA0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementAgentCreator@VMovementHandlerAgentStrafing@@@@` +`class MovementHandlerAgentStrafing`: VTable [0x00000000032AF0B8, 0x0000000000000000 offset, 13 functions] `.?AVMovementHandlerAgentStrafing@@` +`class MovementHandlerAgentStrafing`: VTable [0x00000000032AF140, 0x0000000000000018 offset, 4 functions] `.?AVMovementHandlerAgentStrafing@@` +`class MovementArbiter`: VTable [0x00000000032AF248, 0x0000000000000000 offset, 18 functions] `.?AVMovementArbiter@@` +`struct BSTDerivedCreator`: VTable [0x00000000032AF3B8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageSetStaticPath@@VMovementMessage@@@@` +`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000032AF3E0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageSetStaticPath@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032AF408, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageSetStaticPath@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`struct AutoRegisterPathing >`: VTable [0x00000000032AF430, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageSetStaticPath@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` +`class MovementMessageSetStaticPath`: VTable [0x00000000032AF488, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageSetStaticPath@@` +`struct BSTDerivedCreator`: VTable [0x00000000032AF4F8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementPostUpdateArbiter@@VMovementArbiter@@@@` +`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000032AF520, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementPostUpdateArbiter@@VMovementArbiter@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` +`struct AutoRegisterCreator >`: VTable [0x00000000032AF548, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementPostUpdateArbiter@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` +`struct AutoRegisterMovementArbiterCreator`: VTable [0x00000000032AF570, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementArbiterCreator@VMovementPostUpdateArbiter@@@@` +`class IMovementQueryDeltas`: VTable [0x00000000032AF6A8, 0x0000000000000000 offset, 5 functions] `.?AVIMovementQueryDeltas@@` +`class MovementPostUpdateArbiter`: VTable [0x00000000032AF6E8, 0x0000000000000000 offset, 18 functions] `.?AVMovementPostUpdateArbiter@@` +`class MovementPostUpdateArbiter`: VTable [0x00000000032AF7A0, 0x0000000000000018 offset, 5 functions] `.?AVMovementPostUpdateArbiter@@` +`struct BSPerforce::IKeyValuePairFunctor`: VTable [0x00000000032AFD18, 0x0000000000000000 offset, 1 functions] `.?AUIKeyValuePairFunctor@BSPerforce@@` +`class BSPerforce::`anonymous namespace'::FileInfoConvertFunctor`: VTable [0x00000000032AFD50, 0x0000000000000000 offset, 1 functions] `.?AVFileInfoConvertFunctor@?A0xc7feb1ef@BSPerforce@@` +`class BSPerforce::Connection`: VTable [0x00000000032B07B8, 0x0000000000000000 offset, 14 functions] `.?AVConnection@BSPerforce@@` +`class BSPerforce::`anonymous namespace'::Connection_Win32COM`: VTable [0x00000000032B0848, 0x0000000000000000 offset, 14 functions] `.?AVConnection_Win32COM@?A0xc29cbb82@BSPerforce@@` +`class bnet_std::detail::FunctionImpl::ICallableBase`: VTable [0x00000000032B1F88, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXAEBULogParams@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl::ICopyableCallable`: VTable [0x00000000032B1FA8, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXAEBULogParams@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl::ICallableBase`: VTable [0x00000000032B1FD8, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXAEBUErrorParams@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl::ICopyableCallable`: VTable [0x00000000032B1FF8, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXAEBUErrorParams@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl::ICallableBase`: VTable [0x00000000032B2028, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXXZ@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl::ICopyableCallable`: VTable [0x00000000032B2048, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXXZ@detail@bnet_std@@` +`class BSPlatform::BSBethesdaPlatform`: VTable [0x00000000032B22F0, 0x0000000000000000 offset, 1 functions] `.?AVBSBethesdaPlatform@BSPlatform@@` +`class bnet_std::detail::FunctionImpl::CallableBase::ICopyableCallable,void (__cdecl*)(struct bnet::LogParams const & __ptr64)>`: VTable [0x00000000032B2560, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXAEBULogParams@bnet@@@Z@detail@bnet_std@@P6AXAEBULogParams@bnet@@@Z@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXAEBULogParams@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl::CopyableCallable`: VTable [0x00000000032B2590, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@P6AXAEBULogParams@bnet@@@Z@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXAEBULogParams@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl::CallableBase::ICopyableCallable,class >`: VTable [0x00000000032B25C0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXAEBUErrorParams@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXAEBUErrorParams@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl::CopyableCallable >`: VTable [0x00000000032B25F0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXAEBUErrorParams@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl::CallableBase::ICopyableCallable,class >`: VTable [0x00000000032B2620, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXXZ@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXXZ@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl::CopyableCallable >`: VTable [0x00000000032B2650, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AXXZ@detail@bnet_std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,bool>`: VTable [0x00000000032B2680, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K_N@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSPlatform::BSUserContent const & __ptr64>`: VTable [0x00000000032B26C8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBVBSUserContent@3@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSPlatform::BSUserContent const & __ptr64>`: VTable [0x00000000032B2710, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBVBSUserContent@3@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032B2758, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032B27A0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032B27E8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class bnet::BaseCallback`: VTable [0x00000000032B54A0, 0x0000000000000000 offset, 3 functions] `.?AVBaseCallback@bnet@@` +`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000032B5588, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_K@Z@std@@@BSPlatform@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032B55B0, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VReleaseNote@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032B55D0, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VReleaseNote@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032B5600, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VReleaseNote@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032B5628, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VReleaseNote@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::ICallableBase`: VTable [0x00000000032B56B8, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::ICopyableCallable`: VTable [0x00000000032B56D8, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,struct bnet_std::void_t,class bnet::HttpResponseInfo>`: VTable [0x00000000032B5708, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@detail@bnet@@` +`class bnet::Callback`: VTable [0x00000000032B5730, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@` +`class std::_Ref_count`: VTable [0x00000000032B5798, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count@VBSReleaseNote@BSPlatform@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032B57C8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032B5810, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032B5858, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VReleaseNote@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VReleaseNote@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032B5888, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VReleaseNote@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032B58B8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VReleaseNote@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VReleaseNote@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032B58E8, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VReleaseNote@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032B5918, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032B5948, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032B7808, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032B7828, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class std::shared_ptr,class bnet::HttpResponseInfo>`: VTable [0x00000000032B7858, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032B7880, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@` +`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000032B78C0, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KPEBD@Z@std@@@BSPlatform@@` +`class BSPlatform::BSBNETFile::download`: VTable [0x00000000032B78E8, 0x0000000000000000 offset, 8 functions] `.?AVdownload@BSBNETFile@BSPlatform@@` +`class BSPlatform::BSBNETFile::marketplaceDownload::marketplaceModDownload::marketplaceDownloadRequest`: VTable [0x00000000032B7940, 0x0000000000000000 offset, 3 functions] `.?AVmarketplaceDownloadRequest@marketplaceModDownload@marketplaceDownload@BSBNETFile@BSPlatform@@` +`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000032B7968, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KW4BNetStreamStatus@2@PEAE1@Z@std@@@BSPlatform@@` +`class BSPlatform::BSBNETFile::marketplaceDownload::marketplaceModStream::marketplaceStreamRequest`: VTable [0x00000000032B7990, 0x0000000000000000 offset, 3 functions] `.?AVmarketplaceStreamRequest@marketplaceModStream@marketplaceDownload@BSBNETFile@BSPlatform@@` +`class BSPlatform::BSBNETFile::marketplaceDownload`: VTable [0x00000000032B79B8, 0x0000000000000000 offset, 8 functions] `.?AVmarketplaceDownload@BSBNETFile@BSPlatform@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032B7A88, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032B7AD0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64>`: VTable [0x00000000032B7B18, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KPEBD@std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032B7B60, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032B7B90, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032B7BC0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032B7BF0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032B8A60, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VSearchCuratedListsResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032B8A80, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VSearchCuratedListsResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032B8AB0, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VSearchCuratedListsResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032B8AD8, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VSearchCuratedListsResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000032B8B48, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032B8B70, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VGetCuratedListResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032B8B90, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VGetCuratedListResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032B8BC0, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VGetCuratedListResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032B8BE8, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VGetCuratedListResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032B8C60, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VSearchCuratedListsResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VSearchCuratedListsResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032B8C90, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VSearchCuratedListsResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032B8CC0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VGetCuratedListResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VGetCuratedListResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032B8CF0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VGetCuratedListResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032B8D20, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VGetCuratedListResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VGetCuratedListResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032B8D50, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VGetCuratedListResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::Account::AuthenticationStatus> && __ptr64)>::ICallableBase`: VTable [0x00000000032BAD90, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::Account::AuthenticationStatus> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032BADB0, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::Account::AuthenticationStatus>`: VTable [0x00000000032BADE0, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@detail@bnet@@` +`class bnet::Callback,class bnet::Account::AuthenticationStatus>`: VTable [0x00000000032BAE08, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@` +`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000032BAFD0, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KPEBD2@Z@std@@@BSPlatform@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032BAFF8, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VExternalAccountInfoResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032BB018, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VExternalAccountInfoResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032BB048, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VExternalAccountInfoResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032BB070, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VExternalAccountInfoResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::ICallableBase`: VTable [0x00000000032BB100, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@_NVHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::ICopyableCallable`: VTable [0x00000000032BB120, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@_NVHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,bool,class bnet::HttpResponseInfo>`: VTable [0x00000000032BB150, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00_NVHttpResponseInfo@bnet@@@detail@bnet@@` +`class bnet::Callback`: VTable [0x00000000032BB178, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@_NVHttpResponseInfo@bnet@@@bnet@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032BB1E0, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VLinkingResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032BB200, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VLinkingResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032BB230, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VLinkingResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032BB258, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VLinkingResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032BB2B8, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocument@Legal@bnet@@$04$00V?$StdAllocator@VDocument@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032BB2D8, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocument@Legal@bnet@@$04$00V?$StdAllocator@VDocument@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr > >,class bnet::HttpResponseInfo>`: VTable [0x00000000032BB308, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@V?$FixedVector@VDocument@Legal@bnet@@$04$00V?$StdAllocator@VDocument@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000032BB330, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@V?$FixedVector@VDocument@Legal@bnet@@$04$00V?$StdAllocator@VDocument@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000032BB370, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSLegalDocument@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` +`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000032BB3F8, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KH@Z@std@@@BSPlatform@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::Legal::AcceptDocumentsStatus> && __ptr64)>::ICallableBase`: VTable [0x00000000032BB420, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocumentResult@Legal@bnet@@$04$00V?$StdAllocator@VDocumentResult@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VAcceptDocumentsStatus@Legal@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::Legal::AcceptDocumentsStatus> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032BB440, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocumentResult@Legal@bnet@@$04$00V?$StdAllocator@VDocumentResult@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VAcceptDocumentsStatus@Legal@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr > >,class bnet::Legal::AcceptDocumentsStatus>`: VTable [0x00000000032BB470, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@V?$FixedVector@VDocumentResult@Legal@bnet@@$04$00V?$StdAllocator@VDocumentResult@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VAcceptDocumentsStatus@Legal@2@@detail@bnet@@` +`class bnet::Callback > >,class bnet::Legal::AcceptDocumentsStatus>`: VTable [0x00000000032BB498, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@V?$FixedVector@VDocumentResult@Legal@bnet@@$04$00V?$StdAllocator@VDocumentResult@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VAcceptDocumentsStatus@Legal@2@@bnet@@` +`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000032BB500, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSEntitlement@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032BB528, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$vector@VItem@Entitlements@bnet@@V?$StdAllocator@VItem@Entitlements@bnet@@@impl@3@@std@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032BB548, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$vector@VItem@Entitlements@bnet@@V?$StdAllocator@VItem@Entitlements@bnet@@@impl@3@@std@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr > >,class bnet::HttpResponseInfo>`: VTable [0x00000000032BB578, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@V?$vector@VItem@Entitlements@bnet@@V?$StdAllocator@VItem@Entitlements@bnet@@@impl@3@@std@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000032BB5A0, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@V?$vector@VItem@Entitlements@bnet@@V?$StdAllocator@VItem@Entitlements@bnet@@@impl@3@@std@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032BB6E0, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VBalance@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032BB700, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VBalance@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032BB730, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VBalance@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032BB758, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VBalance@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class std::_Ref_count_obj`: VTable [0x00000000032BB7C0, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@VSteamExternalAuthInfo@Account@bnet@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032BB7F0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032BB838, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032BB880, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032BB8C8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64,char const * __ptr64>`: VTable [0x00000000032BB910, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KPEBDPEBD@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032BB958, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032BB9A0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032BB9E8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032BBA30, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032BBA78, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSLegalDocument@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032BBAC0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSLegalDocument@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,int>`: VTable [0x00000000032BBB08, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KH@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032BBB50, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSEntitlement@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032BBB98, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032BBBE0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,int>`: VTable [0x00000000032BBC28, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KH@std@@` +`class bnet_std::detail::FunctionImpl,class bnet::Account::AuthenticationStatus> && __ptr64)>::CallableBase,class bnet::Account::AuthenticationStatus> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BBC70, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::Account::AuthenticationStatus> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BBCA0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::Account::AuthenticationStatus> && __ptr64)>::CallableBase,class bnet::Account::AuthenticationStatus> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BBCD0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::Account::AuthenticationStatus> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BBD00, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::Account::AuthenticationStatus> && __ptr64)>::CallableBase,class bnet::Account::AuthenticationStatus> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BBD30, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::Account::AuthenticationStatus> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BBD60, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BBD90, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VExternalAccountInfoResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VExternalAccountInfoResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BBDC0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VExternalAccountInfoResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::Account::AuthenticationStatus> && __ptr64)>::CallableBase,class bnet::Account::AuthenticationStatus> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BBDF0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::Account::AuthenticationStatus> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BBE20, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VAuthResult@Account@bnet@@@bnet@@VAuthenticationStatus@Account@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BBE50, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@_NVHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@_NVHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BBE80, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@_NVHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BBEB0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VLinkingResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VLinkingResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BBEE0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VLinkingResult@Account@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BBF10, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@_NVHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@_NVHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BBF40, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@_NVHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase > >,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BBF70, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocument@Legal@bnet@@$04$00V?$StdAllocator@VDocument@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocument@Legal@bnet@@$04$00V?$StdAllocator@VDocument@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BBFA0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocument@Legal@bnet@@$04$00V?$StdAllocator@VDocument@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase > >,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BBFD0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocument@Legal@bnet@@$04$00V?$StdAllocator@VDocument@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocument@Legal@bnet@@$04$00V?$StdAllocator@VDocument@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BC000, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocument@Legal@bnet@@$04$00V?$StdAllocator@VDocument@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::Legal::AcceptDocumentsStatus> && __ptr64)>::CallableBase > >,class bnet::Legal::AcceptDocumentsStatus> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BC030, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocumentResult@Legal@bnet@@$04$00V?$StdAllocator@VDocumentResult@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VAcceptDocumentsStatus@Legal@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocumentResult@Legal@bnet@@$04$00V?$StdAllocator@VDocumentResult@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VAcceptDocumentsStatus@Legal@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::Legal::AcceptDocumentsStatus> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BC060, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$FixedVector@VDocumentResult@Legal@bnet@@$04$00V?$StdAllocator@VDocumentResult@Legal@bnet@@@impl@3@@impl@bnet@@@bnet@@VAcceptDocumentsStatus@Legal@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase > >,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BC090, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$vector@VItem@Entitlements@bnet@@V?$StdAllocator@VItem@Entitlements@bnet@@@impl@3@@std@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$vector@VItem@Entitlements@bnet@@V?$StdAllocator@VItem@Entitlements@bnet@@@impl@3@@std@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl > >,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BC0C0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@V?$vector@VItem@Entitlements@bnet@@V?$StdAllocator@VItem@Entitlements@bnet@@@impl@3@@std@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BC0F0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BC120, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BC150, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VBalance@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VBalance@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BC180, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VBalance@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::CustomData::Value`: VTable [0x00000000032BDD68, 0x0000000000000000 offset, 6 functions] `.?AVValue@CustomData@bnet@@` +`class bnet::CustomData::StringValue`: VTable [0x00000000032BDDB0, 0x0000000000000000 offset, 8 functions] `.?AVStringValue@CustomData@bnet@@` +`class bnet::CustomData::FixedStringValue<128>`: VTable [0x00000000032BDE08, 0x0000000000000000 offset, 8 functions] `.?AV?$FixedStringValue@$0IA@@CustomData@bnet@@` +`class bnet::CustomData::ElementalValue<3>`: VTable [0x00000000032BDE60, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$02@CustomData@bnet@@` +`class bnet::CustomData::NumericValue<3>`: VTable [0x00000000032BDEA8, 0x0000000000000000 offset, 6 functions] `.?AV?$NumericValue@$02@CustomData@bnet@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032BDFD0, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VDownloadData@TitleStorage@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032BDFF0, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VDownloadData@TitleStorage@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032BE020, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VDownloadData@TitleStorage@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032BE048, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VDownloadData@TitleStorage@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032BE088, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VMessages@MOTD@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032BE0A8, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VMessages@MOTD@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032BE0D8, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VMessages@MOTD@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032BE100, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VMessages@MOTD@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000032BE300, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@UContentIdResolution@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032BE328, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032BE348, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032BE378, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032BE3A0, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class std::_Ref_count_obj`: VTable [0x00000000032BE408, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@UtitleStorageDownload@BSPlatform@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,class std::shared_ptr >`: VTable [0x00000000032BE438, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@V?$shared_ptr@E@std@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,class std::shared_ptr >`: VTable [0x00000000032BE480, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@V?$shared_ptr@E@std@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,class std::shared_ptr >`: VTable [0x00000000032BE4C8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@V?$shared_ptr@E@std@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64>`: VTable [0x00000000032BE510, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KPEBD@std@@` +`class std::_Ref_count_resource >`: VTable [0x00000000032BE558, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_resource@PEAEV@@@std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BE588, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VMessages@MOTD@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VMessages@MOTD@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BE5B8, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VMessages@MOTD@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BE5E8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VDownloadData@TitleStorage@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VDownloadData@TitleStorage@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BE618, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VDownloadData@TitleStorage@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BE648, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BE678, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BE6A8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BE6D8, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032BE708, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032BE738, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::impl::AsyncOperation`: VTable [0x00000000032BEC18, 0x0000000000000000 offset, 4 functions] `.?AVAsyncOperation@impl@bnet@@` +`class bnet::AsyncOperationProxy`: VTable [0x00000000032BEC48, 0x0000000000000000 offset, 4 functions] `.?AVAsyncOperationProxy@bnet@@` +`class BSPlatform::BSAsyncRequestBase`: VTable [0x00000000032BEC78, 0x0000000000000000 offset, 3 functions] `.?AVBSAsyncRequestBase@BSPlatform@@` +`class BSPlatform::BSUploadRequest`: VTable [0x00000000032BECA0, 0x0000000000000000 offset, 3 functions] `.?AVBSUploadRequest@BSPlatform@@` +`class BSPlatform::BSDownloadRequest`: VTable [0x00000000032BECC8, 0x0000000000000000 offset, 3 functions] `.?AVBSDownloadRequest@BSPlatform@@` +`class BSPlatform::BSUploadWithProgressRequest`: VTable [0x00000000032BECF0, 0x0000000000000000 offset, 3 functions] `.?AVBSUploadWithProgressRequest@BSPlatform@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C37E0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C3810, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::ICallableBase`: VTable [0x00000000032C40B0, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@VVerifiedCreatorCheckResponse@Mods@bnet@@VHttpResponseInfo@3@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::ICopyableCallable`: VTable [0x00000000032C40D0, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@VVerifiedCreatorCheckResponse@Mods@bnet@@VHttpResponseInfo@3@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::Mods::VerifiedCreatorCheckResponse,class bnet::HttpResponseInfo>`: VTable [0x00000000032C4100, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00VVerifiedCreatorCheckResponse@Mods@bnet@@VHttpResponseInfo@3@@detail@bnet@@` +`class bnet::Callback`: VTable [0x00000000032C4128, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@VVerifiedCreatorCheckResponse@Mods@bnet@@VHttpResponseInfo@3@@bnet@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C4408, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@VVerifiedCreatorCheckResponse@Mods@bnet@@VHttpResponseInfo@3@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@VVerifiedCreatorCheckResponse@Mods@bnet@@VHttpResponseInfo@3@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C4438, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@VVerifiedCreatorCheckResponse@Mods@bnet@@VHttpResponseInfo@3@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C4468, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C4498, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C44C8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C44F8, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C4528, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C4558, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C4588, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C45B8, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C45E8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C4618, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C4648, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C4678, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C46A8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C46D8, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class std::_Ref_count_obj`: VTable [0x00000000032C5070, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@VsearchResultHandler@BSPlatform@@@std@@` +`class std::_Ref_count_obj`: VTable [0x00000000032C50A0, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@VcontentFetchHandler@BSPlatform@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C50D0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C5118, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C5160, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C51A8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C51F0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C5238, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C5280, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C52C8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C5310, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C5358, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C53A0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C53E8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C5430, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSPlatform::BSUserContent const & __ptr64>`: VTable [0x00000000032C5478, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBVBSUserContent@3@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032C54C0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C5508, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C5538, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`struct bnet::Mods::BaseUpdatePreferenceInfo`: VTable [0x00000000032C69A8, 0x0000000000000000 offset, 3 functions] `.?AUBaseUpdatePreferenceInfo@Mods@bnet@@` +`struct bnet::Mods::UpdateContentPreferenceInfo`: VTable [0x00000000032C69D0, 0x0000000000000000 offset, 3 functions] `.?AUUpdateContentPreferenceInfo@Mods@bnet@@` +`class BSPlatform::BSUserContentOperations`: VTable [0x00000000032C6A08, 0x0000000000000000 offset, 1 functions] `.?AVBSUserContentOperations@BSPlatform@@` +`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000032C6A70, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KVBSContentId@2@@Z@std@@@BSPlatform@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032C6A98, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032C6AB8, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032C6AE8, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032C6B10, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000032C6B70, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBVBSUserContentCollection@2@@Z@std@@@BSPlatform@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032C6B98, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032C6BB8, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032C6BE8, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032C6C10, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032C6D78, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VPurchaseResult@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032C6D98, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VPurchaseResult@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032C6DC8, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VPurchaseResult@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032C6DF0, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VPurchaseResult@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032C6E50, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032C6E98, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032C6EE0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032C6F28, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSPlatform::BSContentId>`: VTable [0x00000000032C6F70, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KVBSContentId@3@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032C6FB8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032C7000, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000032C7048, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C7090, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C70C0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C70F0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C7120, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C7150, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C7180, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C71B0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C71E0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C7210, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C7240, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C7270, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C72A0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C72D0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C7300, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C7330, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C7360, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C7390, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C73C0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C73F0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C7420, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C7450, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C7480, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C74B0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C74E0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C7510, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C7540, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C7570, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C75A0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C75D0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C7600, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C7630, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VPurchaseResult@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VPurchaseResult@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C7660, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VPurchaseResult@Wallet@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032C7D88, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListCategoriesResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032C7DA8, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListCategoriesResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032C7DD8, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VListCategoriesResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032C7E00, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VListCategoriesResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,class std::shared_ptr >`: VTable [0x00000000032C7E60, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@V?$shared_ptr@E@std@@@std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C7EA8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListCategoriesResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListCategoriesResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C7ED8, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListCategoriesResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032C8958, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VChunkUploadedResult@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032C8978, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VChunkUploadedResult@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class std::shared_ptr,class bnet::HttpResponseInfo>`: VTable [0x00000000032C89A8, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$shared_ptr@VChunkUploadedResult@bnet@@@std@@VHttpResponseInfo@bnet@@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032C89D0, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$shared_ptr@VChunkUploadedResult@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@` +`class BSPlatform::BSMarketplaceUploader`: VTable [0x00000000032C8A10, 0x0000000000000000 offset, 1 functions] `.?AVBSMarketplaceUploader@BSPlatform@@` +`class bnet_std::detail::FunctionImpl >,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032C8A28, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$FixedString@$0IAA@$00$00V?$StdAllocator@D@impl@bnet@@@impl@bnet@@VHttpResponseInfo@3@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl >,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032C8A48, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$FixedString@$0IAA@$00$00V?$StdAllocator@D@impl@bnet@@@impl@bnet@@VHttpResponseInfo@3@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::impl::FixedString<2048,1,1,class bnet::impl::StdAllocator >,class bnet::HttpResponseInfo>`: VTable [0x00000000032C8A78, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$FixedString@$0IAA@$00$00V?$StdAllocator@D@impl@bnet@@@impl@bnet@@VHttpResponseInfo@3@@detail@bnet@@` +`class bnet::Callback >,class bnet::HttpResponseInfo>`: VTable [0x00000000032C8AA0, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$FixedString@$0IAA@$00$00V?$StdAllocator@D@impl@bnet@@@impl@bnet@@VHttpResponseInfo@3@@bnet@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032C8AE0, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VMultipartUploadSession@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032C8B00, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VMultipartUploadSession@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032C8B30, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VMultipartUploadSession@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032C8B58, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VMultipartUploadSession@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C8BC0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C8BF0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CallableBase && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C8C20, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C8C50, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C8C80, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VChunkUploadedResult@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VChunkUploadedResult@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C8CB0, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VChunkUploadedResult@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl >,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase >,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C8CE0, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$FixedString@$0IAA@$00$00V?$StdAllocator@D@impl@bnet@@@impl@bnet@@VHttpResponseInfo@3@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$FixedString@$0IAA@$00$00V?$StdAllocator@D@impl@bnet@@@impl@bnet@@VHttpResponseInfo@3@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl >,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C8D10, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$FixedString@$0IAA@$00$00V?$StdAllocator@D@impl@bnet@@@impl@bnet@@VHttpResponseInfo@3@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032C8D40, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VMultipartUploadSession@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VMultipartUploadSession@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032C8D70, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VMultipartUploadSession@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class BSPlatform::BSBNETImage`: VTable [0x00000000032CB070, 0x0000000000000000 offset, 7 functions] `.?AVBSBNETImage@BSPlatform@@` +`class BSPlatform::BSMarketplaceImage`: VTable [0x00000000032CB0C0, 0x0000000000000000 offset, 7 functions] `.?AVBSMarketplaceImage@BSPlatform@@` +`class BSPlatform::BSAsyncRequest,unsigned __int64)> >`: VTable [0x00000000032CB140, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KV?$shared_ptr@X@std@@1@Z@std@@@BSPlatform@@` +`class std::_Ref_count_obj`: VTable [0x00000000032CB178, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@VBSMarketplaceImage@BSPlatform@@@std@@` +`class std::_Ref_count_resource >`: VTable [0x00000000032CB1A8, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_resource@PEAEV@@@std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032CB1D8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032CB208, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032CB238, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032CB268, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$shared_ptr@VFileChunk@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@Z@detail@bnet_std@@` +`class BSPlatform::BSUserContentCollection`: VTable [0x00000000032D77C0, 0x0000000000000000 offset, 1 functions] `.?AVBSUserContentCollection@BSPlatform@@` +`class BSPlatform::BSUserContentSearcherAgent`: VTable [0x00000000032D77D8, 0x0000000000000000 offset, 13 functions] `.?AVBSUserContentSearcherAgent@BSPlatform@@` +`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000032D78D8, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@_KVBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032D7900, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VItem@Catalog@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032D7920, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VItem@Catalog@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032D7950, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VItem@Catalog@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032D7978, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VItem@Catalog@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000032D79E0, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBVBSUserContent@2@@Z@std@@@BSPlatform@@` +`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000032D7A28, 0x0000000000000000 offset, 3 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContentCollection@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICallableBase`: VTable [0x00000000032D7A50, 0x0000000000000000 offset, 2 functions] `.?AVICallableBase@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListCollectionResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable`: VTable [0x00000000032D7A70, 0x0000000000000000 offset, 4 functions] `.?AVICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListCollectionResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet::detail::CallbackImpl<1,class bnet::UniquePtr,class bnet::HttpResponseInfo>`: VTable [0x00000000032D7AA0, 0x0000000000000000 offset, 3 functions] `.?AV?$CallbackImpl@$00V?$UniquePtr@VListCollectionResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@detail@bnet@@` +`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032D7AC8, 0x0000000000000000 offset, 5 functions] `.?AV?$Callback@V?$UniquePtr@VListCollectionResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` +`class std::_Ref_count_obj`: VTable [0x00000000032D7B58, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@UpagedAuthorContentSearch@BSPlatform@@@std@@` +`class std::_Ref_count_obj`: VTable [0x00000000032D7B88, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@UpagedPlayerContentSearch@BSPlatform@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032D7BB8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032D7C00, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032D7C48, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032D7C90, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032D7CD8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032D7D20, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032D7D68, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@_KVBSTArrayHeapAllocator@@@@@std@@` +`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000032D7DB0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContentCollection@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D7DF8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D7E28, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D7E58, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D7E88, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D7EB8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D7EE8, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D7F18, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D7F48, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D7F78, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D7FA8, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D7FD8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D8008, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D8038, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D8068, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D8098, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D80C8, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D80F8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VItem@Catalog@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VItem@Catalog@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D8128, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VItem@Catalog@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D8158, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D8188, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D81B8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D81E8, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VContent@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D8218, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D8248, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D8278, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D82A8, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListContentResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D82D8, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListCollectionResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListCollectionResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D8308, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VListCollectionResponse@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CallableBase,class bnet::HttpResponseInfo> && __ptr64)>::ICopyableCallable,class >`: VTable [0x00000000032D8338, 0x0000000000000000 offset, 4 functions] `.?AV?$CallableBase@VICopyableCallable@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`class bnet_std::detail::FunctionImpl,class bnet::HttpResponseInfo> && __ptr64)>::CopyableCallable >`: VTable [0x00000000032D8368, 0x0000000000000000 offset, 4 functions] `.?AV?$CopyableCallable@V@@@?$FunctionImpl@UCopyable@attrib@detail@bnet_std@@$$A6AX$$QEAU?$CallbackParams@V?$UniquePtr@VCollection@Mods@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@Z@detail@bnet_std@@` +`struct BSScript::IVMObjectBindInterface`: VTable [0x000000000330E9E8, 0x0000000000000000 offset, 11 functions] `.?AUIVMObjectBindInterface@BSScript@@` +`class BSScript::IFunctionArguments`: VTable [0x000000000330ECC0, 0x0000000000000000 offset, 2 functions] `.?AVIFunctionArguments@BSScript@@` +`class BSScript::IForEachScriptObjectFunctor`: VTable [0x000000000330ECE0, 0x0000000000000000 offset, 2 functions] `.?AVIForEachScriptObjectFunctor@BSScript@@` +`class BSScript::IVMSaveLoadInterface`: VTable [0x000000000330ED00, 0x0000000000000000 offset, 23 functions] `.?AVIVMSaveLoadInterface@BSScript@@` +`class BSScript::IVMDebugInterface`: VTable [0x000000000330EDE8, 0x0000000000000000 offset, 2 functions] `.?AVIVMDebugInterface@BSScript@@` +`class BSScript::IVirtualMachine`: VTable [0x000000000330EE08, 0x0000000000000000 offset, 54 functions] `.?AVIVirtualMachine@BSScript@@` +`class BSScript::ErrorLogger`: VTable [0x00000000033112E8, 0x0000000000000000 offset, 3 functions] `.?AVErrorLogger@BSScript@@` +`struct BSScript::IMemoryPagePolicy`: VTable [0x00000000033115F8, 0x0000000000000000 offset, 5 functions] `.?AUIMemoryPagePolicy@BSScript@@` +`class BSScript::SimpleAllocMemoryPagePolicy`: VTable [0x0000000003311638, 0x0000000000000000 offset, 5 functions] `.?AVSimpleAllocMemoryPagePolicy@BSScript@@` +`class BSScript::CompiledScriptLoader`: VTable [0x0000000003311DF8, 0x0000000000000000 offset, 4 functions] `.?AVCompiledScriptLoader@BSScript@@` +`class BSScript::Internal::IFuncCallQuery`: VTable [0x0000000003316098, 0x0000000000000000 offset, 2 functions] `.?AVIFuncCallQuery@Internal@BSScript@@` +`class BSScript::Internal::RawFuncCallQuery`: VTable [0x00000000033160B8, 0x0000000000000000 offset, 2 functions] `.?AVRawFuncCallQuery@Internal@BSScript@@` +`class BSScript::IObjectProcessor`: VTable [0x00000000033161F8, 0x0000000000000000 offset, 4 functions] `.?AVIObjectProcessor@BSScript@@` +`class BSTFreeList`: VTable [0x0000000003316228, 0x0000000000000000 offset, 1 functions] `.?AV?$BSTFreeList@UFunctionMessage@Internal@BSScript@@@@` +`class BSTStaticFreeList`: VTable [0x0000000003316240, 0x0000000000000000 offset, 1 functions] `.?AV?$BSTStaticFreeList@UFunctionMessage@Internal@BSScript@@$0EAA@@@` +`class BSTMessageQueue`: VTable [0x0000000003316258, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@UFunctionMessage@Internal@BSScript@@@@` +`class BSTCommonMessageQueue`: VTable [0x0000000003316298, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@UFunctionMessage@Internal@BSScript@@@@` +`class BSTCommonLLMessageQueue`: VTable [0x00000000033162E8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonLLMessageQueue@UFunctionMessage@Internal@BSScript@@@@` +`class BSTMessageQueue`: VTable [0x0000000003316338, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@USuspendedStack@Internal@BSScript@@@@` +`class BSTCommonMessageQueue`: VTable [0x0000000003316378, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@USuspendedStack@Internal@BSScript@@@@` +`class BSTCommonStaticMessageQueue`: VTable [0x00000000033163C8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonStaticMessageQueue@USuspendedStack@Internal@BSScript@@$0IA@@@` +`class BSScript::Internal::VirtualMachine`: VTable [0x0000000003316418, 0x0000000000000000 offset, 54 functions] `.?AVVirtualMachine@Internal@BSScript@@` +`class BSScript::Internal::VirtualMachine`: VTable [0x0000000003316628, 0x0000000000000010 offset, 11 functions] `.?AVVirtualMachine@Internal@BSScript@@` +`class BSScript::Internal::VirtualMachine`: VTable [0x00000000033166A0, 0x0000000000000018 offset, 23 functions] `.?AVVirtualMachine@Internal@BSScript@@` +`class BSScript::Internal::VirtualMachine`: VTable [0x0000000003316788, 0x0000000000000020 offset, 2 functions] `.?AVVirtualMachine@Internal@BSScript@@` +`class BSScript::Internal::`anonymous namespace'::ZeroArguments`: VTable [0x00000000033168A8, 0x0000000000000000 offset, 2 functions] `.?AVZeroArguments@?A0x799c2e5f@Internal@BSScript@@` +`class BSScript::Internal::`anonymous namespace'::OneVariableArgument`: VTable [0x00000000033168C8, 0x0000000000000000 offset, 2 functions] `.?AVOneVariableArgument@?A0x799c2e5f@Internal@BSScript@@` +`class BSScript::IStackCallbackFunctor`: VTable [0x0000000003319168, 0x0000000000000000 offset, 4 functions] `.?AVIStackCallbackFunctor@BSScript@@` +`class BSScript::IProfilePolicy`: VTable [0x0000000003319198, 0x0000000000000000 offset, 5 functions] `.?AVIProfilePolicy@BSScript@@` +`class BSScript::UnlinkedTypes::Function::ConvertTypeFunctor`: VTable [0x00000000033191D8, 0x0000000000000000 offset, 2 functions] `.?AVConvertTypeFunctor@Function@UnlinkedTypes@BSScript@@` +`class BSScript::`anonymous namespace'::VMTypeResolveFunctor`: VTable [0x00000000033193C0, 0x0000000000000000 offset, 2 functions] `.?AVVMTypeResolveFunctor@?A0xb6f922bc@BSScript@@` +`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000003319E00, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0DA@@@@@` +`class BSScript::ByteCode::PackedInstructionStream::InstructionFunctor`: VTable [0x000000000331A7C8, 0x0000000000000000 offset, 3 functions] `.?AVInstructionFunctor@PackedInstructionStream@ByteCode@BSScript@@` +`class BSScript::IFunction`: VTable [0x000000000331B3E8, 0x0000000000000000 offset, 21 functions] `.?AVIFunction@BSScript@@` +`class BSScript::Internal::NativeFunctionStub`: VTable [0x000000000331B528, 0x0000000000000000 offset, 21 functions] `.?AVNativeFunctionStub@Internal@BSScript@@` +`class BSScript::UnlinkedTypes::InstructionStream::InstructionFunctor`: VTable [0x000000000331B600, 0x0000000000000000 offset, 3 functions] `.?AVInstructionFunctor@InstructionStream@UnlinkedTypes@BSScript@@` +`class BSScript::UnlinkedTypes::`anonymous namespace'::CountInstructionInfo`: VTable [0x000000000331B6A8, 0x0000000000000000 offset, 3 functions] `.?AVCountInstructionInfo@?A0x05656118@UnlinkedTypes@BSScript@@` +`class BSScript::UnlinkedTypes::`anonymous namespace'::WriteInstructionsFunctor`: VTable [0x000000000331B6D0, 0x0000000000000000 offset, 3 functions] `.?AVWriteInstructionsFunctor@?A0x05656118@UnlinkedTypes@BSScript@@` +`class BSScript::UnlinkedTypes::`anonymous namespace'::BuildInstructionOffsetMapFunctor`: VTable [0x000000000331B6F8, 0x0000000000000000 offset, 3 functions] `.?AVBuildInstructionOffsetMapFunctor@?A0x05656118@UnlinkedTypes@BSScript@@` +`class BSScript::UnlinkedTypes::`anonymous namespace'::UnpackInstructionsFunctor`: VTable [0x000000000331B720, 0x0000000000000000 offset, 3 functions] `.?AVUnpackInstructionsFunctor@?A0x05656118@UnlinkedTypes@BSScript@@` +`class BSScript::UnlinkedTypes::`anonymous namespace'::CollectStringsFunctor`: VTable [0x000000000331B7C8, 0x0000000000000000 offset, 3 functions] `.?AVCollectStringsFunctor@?A0x05656118@UnlinkedTypes@BSScript@@` +`class BSScript::Internal::CodeTasklet`: VTable [0x000000000331CBE0, 0x0000000000000000 offset, 2 functions] `.?AVCodeTasklet@Internal@BSScript@@` +`class BSScript::Internal::AutoPropGetFunction`: VTable [0x000000000331DAC0, 0x0000000000000000 offset, 21 functions] `.?AVAutoPropGetFunction@Internal@BSScript@@` +`class BSScript::Internal::AutoPropSetFunction`: VTable [0x000000000331DB98, 0x0000000000000000 offset, 21 functions] `.?AVAutoPropSetFunction@Internal@BSScript@@` +`class BSScript::LinkerProcessor`: VTable [0x000000000331E4B0, 0x0000000000000000 offset, 4 functions] `.?AVLinkerProcessor@BSScript@@` +`class BSScript::`anonymous namespace'::LinkerConvertTypeFunctor`: VTable [0x000000000331E4E0, 0x0000000000000000 offset, 2 functions] `.?AVLinkerConvertTypeFunctor@?A0x68c6bb72@BSScript@@` +`class BSScript::Internal::ScriptFunction`: VTable [0x000000000331F318, 0x0000000000000000 offset, 21 functions] `.?AVScriptFunction@Internal@BSScript@@` +`class BSGraphics::Include`: VTable [0x00000000033221F8, 0x0000000000000000 offset, 2 functions] `.?AVInclude@BSGraphics@@` +`class BSImagespaceShaderLensFlare`: VTable [0x000000000332AE00, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderLensFlare@@` +`class BSImagespaceShaderLensFlare`: VTable [0x000000000332AEB8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderLensFlare@@` +`class BSImagespaceShaderLensFlare`: VTable [0x000000000332AED8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderLensFlare@@` +`class BSImagespaceShaderLensFlare`: VTable [0x000000000332AEF0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderLensFlare@@` +`class BSImagespaceShaderLensFlareVisibility`: VTable [0x000000000332AF68, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderLensFlareVisibility@@` +`class BSImagespaceShaderLensFlareVisibility`: VTable [0x000000000332B020, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderLensFlareVisibility@@` +`class BSImagespaceShaderLensFlareVisibility`: VTable [0x000000000332B040, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderLensFlareVisibility@@` +`class BSImagespaceShaderLensFlareVisibility`: VTable [0x000000000332B058, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderLensFlareVisibility@@` +`class BSShaderProperty`: VTable [0x000000000332D1E0, 0x0000000000000000 offset, 65 functions] `.?AVBSShaderProperty@@` +`class BSGrassShaderProperty`: VTable [0x000000000332DCF8, 0x0000000000000000 offset, 67 functions] `.?AVBSGrassShaderProperty@@` +`class BSLightingShaderProperty`: VTable [0x00000000033309E0, 0x0000000000000000 offset, 65 functions] `.?AVBSLightingShaderProperty@@` +`class BSGrassShader`: VTable [0x0000000003331678, 0x0000000000000000 offset, 12 functions] `.?AVBSGrassShader@@` +`class BSGrassShader`: VTable [0x00000000033316F8, 0x0000000000000010 offset, 2 functions] `.?AVBSGrassShader@@` +`class BSGrassShader`: VTable [0x0000000003331718, 0x0000000000000018 offset, 1 functions] `.?AVBSGrassShader@@` +`class BSFadeNode`: VTable [0x0000000003332000, 0x0000000000000000 offset, 66 functions] `.?AVBSFadeNode@@` +`class BSEffectShaderProperty`: VTable [0x0000000003332710, 0x0000000000000000 offset, 65 functions] `.?AVBSEffectShaderProperty@@` +`class BSFogProperty`: VTable [0x0000000003332B98, 0x0000000000000000 offset, 41 functions] `.?AVBSFogProperty@@` +`class NiTArray >`: VTable [0x00000000033344D0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVImageSpaceEffect@@V?$NiTMallocInterface@PEAVImageSpaceEffect@@@@@@` +`class NiTPrimitiveArray`: VTable [0x00000000033344E8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVImageSpaceEffect@@@@` +`class BSImagespaceShaderAlphaBlend`: VTable [0x0000000003334500, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderAlphaBlend@@` +`class BSImagespaceShaderAlphaBlend`: VTable [0x00000000033345B8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderAlphaBlend@@` +`class BSImagespaceShaderAlphaBlend`: VTable [0x00000000033345D8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderAlphaBlend@@` +`class BSImagespaceShaderAlphaBlend`: VTable [0x00000000033345F0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderAlphaBlend@@` +`class BSImagespaceShaderBlur3`: VTable [0x0000000003334890, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur3@@` +`class BSImagespaceShaderBlur3`: VTable [0x0000000003334948, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur3@@` +`class BSImagespaceShaderBlur3`: VTable [0x0000000003334968, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur3@@` +`class BSImagespaceShaderBlur3`: VTable [0x0000000003334980, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur3@@` +`class BSImagespaceShaderBlur5`: VTable [0x0000000003334A98, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur5@@` +`class BSImagespaceShaderBlur5`: VTable [0x0000000003334B50, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur5@@` +`class BSImagespaceShaderBlur5`: VTable [0x0000000003334B70, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur5@@` +`class BSImagespaceShaderBlur5`: VTable [0x0000000003334B88, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur5@@` +`class BSImagespaceShaderBlur7`: VTable [0x0000000003334C60, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur7@@` +`class BSImagespaceShaderBlur7`: VTable [0x0000000003334D18, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur7@@` +`class BSImagespaceShaderBlur7`: VTable [0x0000000003334D38, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur7@@` +`class BSImagespaceShaderBlur7`: VTable [0x0000000003334D50, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur7@@` +`class BSImagespaceShaderBlur9`: VTable [0x0000000003334E28, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur9@@` +`class BSImagespaceShaderBlur9`: VTable [0x0000000003334EE0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur9@@` +`class BSImagespaceShaderBlur9`: VTable [0x0000000003334F00, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur9@@` +`class BSImagespaceShaderBlur9`: VTable [0x0000000003334F18, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur9@@` +`class BSImagespaceShaderBlur11`: VTable [0x0000000003334FF0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur11@@` +`class BSImagespaceShaderBlur11`: VTable [0x00000000033350A8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur11@@` +`class BSImagespaceShaderBlur11`: VTable [0x00000000033350C8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur11@@` +`class BSImagespaceShaderBlur11`: VTable [0x00000000033350E0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur11@@` +`class BSImagespaceShaderBlur13`: VTable [0x00000000033351B8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur13@@` +`class BSImagespaceShaderBlur13`: VTable [0x0000000003335270, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur13@@` +`class BSImagespaceShaderBlur13`: VTable [0x0000000003335290, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur13@@` +`class BSImagespaceShaderBlur13`: VTable [0x00000000033352A8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur13@@` +`class BSImagespaceShaderBlur15`: VTable [0x0000000003335380, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur15@@` +`class BSImagespaceShaderBlur15`: VTable [0x0000000003335438, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur15@@` +`class BSImagespaceShaderBlur15`: VTable [0x0000000003335458, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur15@@` +`class BSImagespaceShaderBlur15`: VTable [0x0000000003335470, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur15@@` +`class BSImagespaceShaderNonHDRBlur3`: VTable [0x0000000003335548, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur3@@` +`class BSImagespaceShaderNonHDRBlur3`: VTable [0x0000000003335600, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur3@@` +`class BSImagespaceShaderNonHDRBlur3`: VTable [0x0000000003335620, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur3@@` +`class BSImagespaceShaderNonHDRBlur3`: VTable [0x0000000003335638, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur3@@` +`class BSImagespaceShaderNonHDRBlur5`: VTable [0x00000000033356E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur5@@` +`class BSImagespaceShaderNonHDRBlur5`: VTable [0x00000000033357A0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur5@@` +`class BSImagespaceShaderNonHDRBlur5`: VTable [0x00000000033357C0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur5@@` +`class BSImagespaceShaderNonHDRBlur5`: VTable [0x00000000033357D8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur5@@` +`class BSImagespaceShaderNonHDRBlur7`: VTable [0x0000000003335888, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur7@@` +`class BSImagespaceShaderNonHDRBlur7`: VTable [0x0000000003335940, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur7@@` +`class BSImagespaceShaderNonHDRBlur7`: VTable [0x0000000003335960, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur7@@` +`class BSImagespaceShaderNonHDRBlur7`: VTable [0x0000000003335978, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur7@@` +`class BSImagespaceShaderNonHDRBlur9`: VTable [0x0000000003335A28, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur9@@` +`class BSImagespaceShaderNonHDRBlur9`: VTable [0x0000000003335AE0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur9@@` +`class BSImagespaceShaderNonHDRBlur9`: VTable [0x0000000003335B00, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur9@@` +`class BSImagespaceShaderNonHDRBlur9`: VTable [0x0000000003335B18, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur9@@` +`class BSImagespaceShaderNonHDRBlur11`: VTable [0x0000000003335BC8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur11@@` +`class BSImagespaceShaderNonHDRBlur11`: VTable [0x0000000003335C80, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur11@@` +`class BSImagespaceShaderNonHDRBlur11`: VTable [0x0000000003335CA0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur11@@` +`class BSImagespaceShaderNonHDRBlur11`: VTable [0x0000000003335CB8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur11@@` +`class BSImagespaceShaderNonHDRBlur13`: VTable [0x0000000003335D70, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur13@@` +`class BSImagespaceShaderNonHDRBlur13`: VTable [0x0000000003335E28, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur13@@` +`class BSImagespaceShaderNonHDRBlur13`: VTable [0x0000000003335E48, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur13@@` +`class BSImagespaceShaderNonHDRBlur13`: VTable [0x0000000003335E60, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur13@@` +`class BSImagespaceShaderNonHDRBlur15`: VTable [0x0000000003335F18, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur15@@` +`class BSImagespaceShaderNonHDRBlur15`: VTable [0x0000000003335FD0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur15@@` +`class BSImagespaceShaderNonHDRBlur15`: VTable [0x0000000003335FF0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur15@@` +`class BSImagespaceShaderNonHDRBlur15`: VTable [0x0000000003336008, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur15@@` +`class BSImagespaceShaderBrightPassBlur3`: VTable [0x00000000033360C0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur3@@` +`class BSImagespaceShaderBrightPassBlur3`: VTable [0x0000000003336178, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur3@@` +`class BSImagespaceShaderBrightPassBlur3`: VTable [0x0000000003336198, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur3@@` +`class BSImagespaceShaderBrightPassBlur3`: VTable [0x00000000033361B0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur3@@` +`class BSImagespaceShaderBrightPassBlur5`: VTable [0x0000000003336298, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur5@@` +`class BSImagespaceShaderBrightPassBlur5`: VTable [0x0000000003336350, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur5@@` +`class BSImagespaceShaderBrightPassBlur5`: VTable [0x0000000003336370, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur5@@` +`class BSImagespaceShaderBrightPassBlur5`: VTable [0x0000000003336388, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur5@@` +`class BSImagespaceShaderBrightPassBlur7`: VTable [0x0000000003336440, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur7@@` +`class BSImagespaceShaderBrightPassBlur7`: VTable [0x00000000033364F8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur7@@` +`class BSImagespaceShaderBrightPassBlur7`: VTable [0x0000000003336518, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur7@@` +`class BSImagespaceShaderBrightPassBlur7`: VTable [0x0000000003336530, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur7@@` +`class BSImagespaceShaderBrightPassBlur9`: VTable [0x00000000033365E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur9@@` +`class BSImagespaceShaderBrightPassBlur9`: VTable [0x00000000033366A0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur9@@` +`class BSImagespaceShaderBrightPassBlur9`: VTable [0x00000000033366C0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur9@@` +`class BSImagespaceShaderBrightPassBlur9`: VTable [0x00000000033366D8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur9@@` +`class BSImagespaceShaderBrightPassBlur11`: VTable [0x0000000003336790, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur11@@` +`class BSImagespaceShaderBrightPassBlur11`: VTable [0x0000000003336848, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur11@@` +`class BSImagespaceShaderBrightPassBlur11`: VTable [0x0000000003336868, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur11@@` +`class BSImagespaceShaderBrightPassBlur11`: VTable [0x0000000003336880, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur11@@` +`class BSImagespaceShaderBrightPassBlur13`: VTable [0x0000000003336940, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur13@@` +`class BSImagespaceShaderBrightPassBlur13`: VTable [0x00000000033369F8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur13@@` +`class BSImagespaceShaderBrightPassBlur13`: VTable [0x0000000003336A18, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur13@@` +`class BSImagespaceShaderBrightPassBlur13`: VTable [0x0000000003336A30, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur13@@` +`class BSImagespaceShaderBrightPassBlur15`: VTable [0x0000000003336AF0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur15@@` +`class BSImagespaceShaderBrightPassBlur15`: VTable [0x0000000003336BA8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur15@@` +`class BSImagespaceShaderBrightPassBlur15`: VTable [0x0000000003336BC8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur15@@` +`class BSImagespaceShaderBrightPassBlur15`: VTable [0x0000000003336BE0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur15@@` +`class BSImagespaceShaderCopy`: VTable [0x0000000003336CA0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderCopy@@` +`class BSImagespaceShaderCopy`: VTable [0x0000000003336D58, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderCopy@@` +`class BSImagespaceShaderCopy`: VTable [0x0000000003336D78, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderCopy@@` +`class BSImagespaceShaderCopy`: VTable [0x0000000003336D90, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderCopy@@` +`class BSImagespaceShaderCopyDynamicFetchDisabled`: VTable [0x0000000003336E30, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderCopyDynamicFetchDisabled@@` +`class BSImagespaceShaderCopyDynamicFetchDisabled`: VTable [0x0000000003336EE8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderCopyDynamicFetchDisabled@@` +`class BSImagespaceShaderCopyDynamicFetchDisabled`: VTable [0x0000000003336F08, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderCopyDynamicFetchDisabled@@` +`class BSImagespaceShaderCopyDynamicFetchDisabled`: VTable [0x0000000003336F20, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderCopyDynamicFetchDisabled@@` +`class BSImagespaceShaderCopyScaleBias`: VTable [0x0000000003337008, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderCopyScaleBias@@` +`class BSImagespaceShaderCopyScaleBias`: VTable [0x00000000033370C0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderCopyScaleBias@@` +`class BSImagespaceShaderCopyScaleBias`: VTable [0x00000000033370E0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderCopyScaleBias@@` +`class BSImagespaceShaderCopyScaleBias`: VTable [0x00000000033370F8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderCopyScaleBias@@` +`class BSImagespaceShaderTextureMask`: VTable [0x00000000033371D0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderTextureMask@@` +`class BSImagespaceShaderTextureMask`: VTable [0x0000000003337288, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderTextureMask@@` +`class BSImagespaceShaderTextureMask`: VTable [0x00000000033372A8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderTextureMask@@` +`class BSImagespaceShaderTextureMask`: VTable [0x00000000033372C0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderTextureMask@@` +`class BSImagespaceShaderGreyScale`: VTable [0x0000000003337398, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderGreyScale@@` +`class BSImagespaceShaderGreyScale`: VTable [0x0000000003337450, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderGreyScale@@` +`class BSImagespaceShaderGreyScale`: VTable [0x0000000003337470, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderGreyScale@@` +`class BSImagespaceShaderGreyScale`: VTable [0x0000000003337488, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderGreyScale@@` +`class BSImagespaceShaderCopyCustomViewport`: VTable [0x0000000003337560, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderCopyCustomViewport@@` +`class BSImagespaceShaderCopyCustomViewport`: VTable [0x0000000003337618, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderCopyCustomViewport@@` +`class BSImagespaceShaderCopyCustomViewport`: VTable [0x0000000003337638, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderCopyCustomViewport@@` +`class BSImagespaceShaderCopyCustomViewport`: VTable [0x0000000003337650, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderCopyCustomViewport@@` +`class BSImagespaceShaderDepthOfField`: VTable [0x0000000003337718, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDepthOfField@@` +`class BSImagespaceShaderDepthOfField`: VTable [0x00000000033377D0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDepthOfField@@` +`class BSImagespaceShaderDepthOfField`: VTable [0x00000000033377F0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDepthOfField@@` +`class BSImagespaceShaderDepthOfField`: VTable [0x0000000003337808, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDepthOfField@@` +`class BSImagespaceShaderDepthOfFieldFogged`: VTable [0x0000000003337918, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDepthOfFieldFogged@@` +`class BSImagespaceShaderDepthOfFieldFogged`: VTable [0x00000000033379D0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDepthOfFieldFogged@@` +`class BSImagespaceShaderDepthOfFieldFogged`: VTable [0x00000000033379F0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDepthOfFieldFogged@@` +`class BSImagespaceShaderDepthOfFieldFogged`: VTable [0x0000000003337A08, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDepthOfFieldFogged@@` +`class BSImagespaceShaderDepthOfFieldMaskedFogged`: VTable [0x0000000003337AF8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDepthOfFieldMaskedFogged@@` +`class BSImagespaceShaderDepthOfFieldMaskedFogged`: VTable [0x0000000003337BB0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDepthOfFieldMaskedFogged@@` +`class BSImagespaceShaderDepthOfFieldMaskedFogged`: VTable [0x0000000003337BD0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDepthOfFieldMaskedFogged@@` +`class BSImagespaceShaderDepthOfFieldMaskedFogged`: VTable [0x0000000003337BE8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDepthOfFieldMaskedFogged@@` +`class BSImagespaceShaderDistantBlur`: VTable [0x0000000003337CE8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDistantBlur@@` +`class BSImagespaceShaderDistantBlur`: VTable [0x0000000003337DA0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDistantBlur@@` +`class BSImagespaceShaderDistantBlur`: VTable [0x0000000003337DC0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDistantBlur@@` +`class BSImagespaceShaderDistantBlur`: VTable [0x0000000003337DD8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDistantBlur@@` +`class BSImagespaceShaderDistantBlurFogged`: VTable [0x0000000003337E98, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDistantBlurFogged@@` +`class BSImagespaceShaderDistantBlurFogged`: VTable [0x0000000003337F50, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDistantBlurFogged@@` +`class BSImagespaceShaderDistantBlurFogged`: VTable [0x0000000003337F70, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDistantBlurFogged@@` +`class BSImagespaceShaderDistantBlurFogged`: VTable [0x0000000003337F88, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDistantBlurFogged@@` +`class BSImagespaceShaderDistantBlurMaskedFogged`: VTable [0x0000000003338048, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDistantBlurMaskedFogged@@` +`class BSImagespaceShaderDistantBlurMaskedFogged`: VTable [0x0000000003338100, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDistantBlurMaskedFogged@@` +`class BSImagespaceShaderDistantBlurMaskedFogged`: VTable [0x0000000003338120, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDistantBlurMaskedFogged@@` +`class BSImagespaceShaderDistantBlurMaskedFogged`: VTable [0x0000000003338138, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDistantBlurMaskedFogged@@` +`class BSImagespaceShaderDoubleVision`: VTable [0x0000000003338208, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDoubleVision@@` +`class BSImagespaceShaderDoubleVision`: VTable [0x00000000033382C0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDoubleVision@@` +`class BSImagespaceShaderDoubleVision`: VTable [0x00000000033382E0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDoubleVision@@` +`class BSImagespaceShaderDoubleVision`: VTable [0x00000000033382F8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDoubleVision@@` +`class BSImagespaceShaderFXAA`: VTable [0x00000000033383E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderFXAA@@` +`class BSImagespaceShaderFXAA`: VTable [0x00000000033384A0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderFXAA@@` +`class BSImagespaceShaderFXAA`: VTable [0x00000000033384C0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderFXAA@@` +`class BSImagespaceShaderFXAA`: VTable [0x00000000033384D8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderFXAA@@` +`class BSImagespaceShaderHDRDownSample4`: VTable [0x00000000033385E0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample4@@` +`class BSImagespaceShaderHDRDownSample4`: VTable [0x0000000003338698, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample4@@` +`class BSImagespaceShaderHDRDownSample4`: VTable [0x00000000033386B8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample4@@` +`class BSImagespaceShaderHDRDownSample4`: VTable [0x00000000033386D0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample4@@` +`class BSImagespaceShaderHDRDownSample16Lum`: VTable [0x00000000033387A0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample16Lum@@` +`class BSImagespaceShaderHDRDownSample16Lum`: VTable [0x0000000003338858, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample16Lum@@` +`class BSImagespaceShaderHDRDownSample16Lum`: VTable [0x0000000003338878, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample16Lum@@` +`class BSImagespaceShaderHDRDownSample16Lum`: VTable [0x0000000003338890, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample16Lum@@` +`class BSImagespaceShaderHDRDownSample4RGB2Lum`: VTable [0x0000000003338970, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample4RGB2Lum@@` +`class BSImagespaceShaderHDRDownSample4RGB2Lum`: VTable [0x0000000003338A28, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample4RGB2Lum@@` +`class BSImagespaceShaderHDRDownSample4RGB2Lum`: VTable [0x0000000003338A48, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample4RGB2Lum@@` +`class BSImagespaceShaderHDRDownSample4RGB2Lum`: VTable [0x0000000003338A60, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample4RGB2Lum@@` +`class BSImagespaceShaderHDRDownSample16`: VTable [0x0000000003338B38, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample16@@` +`class BSImagespaceShaderHDRDownSample16`: VTable [0x0000000003338BF0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample16@@` +`class BSImagespaceShaderHDRDownSample16`: VTable [0x0000000003338C10, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample16@@` +`class BSImagespaceShaderHDRDownSample16`: VTable [0x0000000003338C28, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample16@@` +`class BSImagespaceShaderHDRDownSample4LumClamp`: VTable [0x0000000003338CE0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample4LumClamp@@` +`class BSImagespaceShaderHDRDownSample4LumClamp`: VTable [0x0000000003338D98, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample4LumClamp@@` +`class BSImagespaceShaderHDRDownSample4LumClamp`: VTable [0x0000000003338DB8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample4LumClamp@@` +`class BSImagespaceShaderHDRDownSample4LumClamp`: VTable [0x0000000003338DD0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample4LumClamp@@` +`class BSImagespaceShaderHDRDownSample16LumClamp`: VTable [0x0000000003338EB8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample16LumClamp@@` +`class BSImagespaceShaderHDRDownSample16LumClamp`: VTable [0x0000000003338F70, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample16LumClamp@@` +`class BSImagespaceShaderHDRDownSample16LumClamp`: VTable [0x0000000003338F90, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample16LumClamp@@` +`class BSImagespaceShaderHDRDownSample16LumClamp`: VTable [0x0000000003338FA8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample16LumClamp@@` +`class BSImagespaceShaderHDRDownSample4LightAdapt`: VTable [0x0000000003339078, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample4LightAdapt@@` +`class BSImagespaceShaderHDRDownSample4LightAdapt`: VTable [0x0000000003339130, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample4LightAdapt@@` +`class BSImagespaceShaderHDRDownSample4LightAdapt`: VTable [0x0000000003339150, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample4LightAdapt@@` +`class BSImagespaceShaderHDRDownSample4LightAdapt`: VTable [0x0000000003339168, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample4LightAdapt@@` +`class BSImagespaceShaderHDRDownSample16LightAdapt`: VTable [0x0000000003339260, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample16LightAdapt@@` +`class BSImagespaceShaderHDRDownSample16LightAdapt`: VTable [0x0000000003339318, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample16LightAdapt@@` +`class BSImagespaceShaderHDRDownSample16LightAdapt`: VTable [0x0000000003339338, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample16LightAdapt@@` +`class BSImagespaceShaderHDRDownSample16LightAdapt`: VTable [0x0000000003339350, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample16LightAdapt@@` +`class BSImagespaceShaderHDRTonemapBlendCinematic`: VTable [0x0000000003339428, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematic@@` +`class BSImagespaceShaderHDRTonemapBlendCinematic`: VTable [0x00000000033394E0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematic@@` +`class BSImagespaceShaderHDRTonemapBlendCinematic`: VTable [0x0000000003339500, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematic@@` +`class BSImagespaceShaderHDRTonemapBlendCinematic`: VTable [0x0000000003339518, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematic@@` +`class BSImagespaceShaderHDRTonemapBlendCinematicFade`: VTable [0x0000000003339608, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematicFade@@` +`class BSImagespaceShaderHDRTonemapBlendCinematicFade`: VTable [0x00000000033396C0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematicFade@@` +`class BSImagespaceShaderHDRTonemapBlendCinematicFade`: VTable [0x00000000033396E0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematicFade@@` +`class BSImagespaceShaderHDRTonemapBlendCinematicFade`: VTable [0x00000000033396F8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematicFade@@` +`class BSImagespaceShaderLocalMap`: VTable [0x00000000033397E0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderLocalMap@@` +`class BSImagespaceShaderLocalMap`: VTable [0x0000000003339898, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderLocalMap@@` +`class BSImagespaceShaderLocalMap`: VTable [0x00000000033398B8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderLocalMap@@` +`class BSImagespaceShaderLocalMap`: VTable [0x00000000033398D0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderLocalMap@@` +`class BSImagespaceShaderMap`: VTable [0x0000000003339988, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderMap@@` +`class BSImagespaceShaderMap`: VTable [0x0000000003339A40, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderMap@@` +`class BSImagespaceShaderMap`: VTable [0x0000000003339A60, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderMap@@` +`class BSImagespaceShaderMap`: VTable [0x0000000003339A78, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderMap@@` +`class BSImagespaceShaderWorldMap`: VTable [0x0000000003339B28, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWorldMap@@` +`class BSImagespaceShaderWorldMap`: VTable [0x0000000003339BE0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWorldMap@@` +`class BSImagespaceShaderWorldMap`: VTable [0x0000000003339C00, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWorldMap@@` +`class BSImagespaceShaderWorldMap`: VTable [0x0000000003339C18, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWorldMap@@` +`class BSImagespaceShaderWorldMapNoSkyBlur`: VTable [0x0000000003339CF0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWorldMapNoSkyBlur@@` +`class BSImagespaceShaderWorldMapNoSkyBlur`: VTable [0x0000000003339DA8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWorldMapNoSkyBlur@@` +`class BSImagespaceShaderWorldMapNoSkyBlur`: VTable [0x0000000003339DC8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWorldMapNoSkyBlur@@` +`class BSImagespaceShaderWorldMapNoSkyBlur`: VTable [0x0000000003339DE0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWorldMapNoSkyBlur@@` +`class BSImagespaceShaderNoiseScrollAndBlend`: VTable [0x0000000003339EA8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNoiseScrollAndBlend@@` +`class BSImagespaceShaderNoiseScrollAndBlend`: VTable [0x0000000003339F60, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNoiseScrollAndBlend@@` +`class BSImagespaceShaderNoiseScrollAndBlend`: VTable [0x0000000003339F80, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNoiseScrollAndBlend@@` +`class BSImagespaceShaderNoiseScrollAndBlend`: VTable [0x0000000003339F98, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNoiseScrollAndBlend@@` +`class BSImagespaceShaderNoiseNormalmap`: VTable [0x000000000333A0F8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNoiseNormalmap@@` +`class BSImagespaceShaderNoiseNormalmap`: VTable [0x000000000333A1B0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNoiseNormalmap@@` +`class BSImagespaceShaderNoiseNormalmap`: VTable [0x000000000333A1D0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNoiseNormalmap@@` +`class BSImagespaceShaderNoiseNormalmap`: VTable [0x000000000333A1E8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNoiseNormalmap@@` +`class BSImagespaceShaderRadialBlur`: VTable [0x000000000333A2B0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderRadialBlur@@` +`class BSImagespaceShaderRadialBlur`: VTable [0x000000000333A368, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderRadialBlur@@` +`class BSImagespaceShaderRadialBlur`: VTable [0x000000000333A388, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderRadialBlur@@` +`class BSImagespaceShaderRadialBlur`: VTable [0x000000000333A3A0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderRadialBlur@@` +`class BSImagespaceShaderRadialBlurMedium`: VTable [0x000000000333A468, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderRadialBlurMedium@@` +`class BSImagespaceShaderRadialBlurMedium`: VTable [0x000000000333A520, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderRadialBlurMedium@@` +`class BSImagespaceShaderRadialBlurMedium`: VTable [0x000000000333A540, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderRadialBlurMedium@@` +`class BSImagespaceShaderRadialBlurMedium`: VTable [0x000000000333A558, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderRadialBlurMedium@@` +`class BSImagespaceShaderRadialBlurHigh`: VTable [0x000000000333A618, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderRadialBlurHigh@@` +`class BSImagespaceShaderRadialBlurHigh`: VTable [0x000000000333A6D0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderRadialBlurHigh@@` +`class BSImagespaceShaderRadialBlurHigh`: VTable [0x000000000333A6F0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderRadialBlurHigh@@` +`class BSImagespaceShaderRadialBlurHigh`: VTable [0x000000000333A708, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderRadialBlurHigh@@` +`class BSImagespaceShaderRefraction`: VTable [0x000000000333A7C0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderRefraction@@` +`class BSImagespaceShaderRefraction`: VTable [0x000000000333A878, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderRefraction@@` +`class BSImagespaceShaderRefraction`: VTable [0x000000000333A898, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderRefraction@@` +`class BSImagespaceShaderRefraction`: VTable [0x000000000333A8B0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderRefraction@@` +`class BSImagespaceShaderWaterDisplacementClearSimulation`: VTable [0x000000000333A960, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementClearSimulation@@` +`class BSImagespaceShaderWaterDisplacementClearSimulation`: VTable [0x000000000333AA18, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementClearSimulation@@` +`class BSImagespaceShaderWaterDisplacementClearSimulation`: VTable [0x000000000333AA38, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementClearSimulation@@` +`class BSImagespaceShaderWaterDisplacementClearSimulation`: VTable [0x000000000333AA50, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementClearSimulation@@` +`class BSImagespaceShaderWaterDisplacementTexOffset`: VTable [0x000000000333AB58, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementTexOffset@@` +`class BSImagespaceShaderWaterDisplacementTexOffset`: VTable [0x000000000333AC10, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementTexOffset@@` +`class BSImagespaceShaderWaterDisplacementTexOffset`: VTable [0x000000000333AC30, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementTexOffset@@` +`class BSImagespaceShaderWaterDisplacementTexOffset`: VTable [0x000000000333AC48, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementTexOffset@@` +`class BSImagespaceShaderWaterDisplacementWadingRipple`: VTable [0x000000000333AD88, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementWadingRipple@@` +`class BSImagespaceShaderWaterDisplacementWadingRipple`: VTable [0x000000000333AE40, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementWadingRipple@@` +`class BSImagespaceShaderWaterDisplacementWadingRipple`: VTable [0x000000000333AE60, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementWadingRipple@@` +`class BSImagespaceShaderWaterDisplacementWadingRipple`: VTable [0x000000000333AE78, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementWadingRipple@@` +`class BSImagespaceShaderWaterDisplacementRainRipple`: VTable [0x000000000333AF88, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementRainRipple@@` +`class BSImagespaceShaderWaterDisplacementRainRipple`: VTable [0x000000000333B040, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementRainRipple@@` +`class BSImagespaceShaderWaterDisplacementRainRipple`: VTable [0x000000000333B060, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementRainRipple@@` +`class BSImagespaceShaderWaterDisplacementRainRipple`: VTable [0x000000000333B078, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementRainRipple@@` +`class BSImagespaceShaderWaterWadingHeightmap`: VTable [0x000000000333B158, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterWadingHeightmap@@` +`class BSImagespaceShaderWaterWadingHeightmap`: VTable [0x000000000333B210, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterWadingHeightmap@@` +`class BSImagespaceShaderWaterWadingHeightmap`: VTable [0x000000000333B230, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterWadingHeightmap@@` +`class BSImagespaceShaderWaterWadingHeightmap`: VTable [0x000000000333B248, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterWadingHeightmap@@` +`class BSImagespaceShaderWaterRainHeightmap`: VTable [0x000000000333B328, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterRainHeightmap@@` +`class BSImagespaceShaderWaterRainHeightmap`: VTable [0x000000000333B3E0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterRainHeightmap@@` +`class BSImagespaceShaderWaterRainHeightmap`: VTable [0x000000000333B400, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterRainHeightmap@@` +`class BSImagespaceShaderWaterRainHeightmap`: VTable [0x000000000333B418, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterRainHeightmap@@` +`class BSImagespaceShaderWaterBlendHeightmaps`: VTable [0x000000000333B4E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterBlendHeightmaps@@` +`class BSImagespaceShaderWaterBlendHeightmaps`: VTable [0x000000000333B5A0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterBlendHeightmaps@@` +`class BSImagespaceShaderWaterBlendHeightmaps`: VTable [0x000000000333B5C0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterBlendHeightmaps@@` +`class BSImagespaceShaderWaterBlendHeightmaps`: VTable [0x000000000333B5D8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterBlendHeightmaps@@` +`class BSImagespaceShaderWaterSmoothHeightmap`: VTable [0x000000000333B6C8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterSmoothHeightmap@@` +`class BSImagespaceShaderWaterSmoothHeightmap`: VTable [0x000000000333B780, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterSmoothHeightmap@@` +`class BSImagespaceShaderWaterSmoothHeightmap`: VTable [0x000000000333B7A0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterSmoothHeightmap@@` +`class BSImagespaceShaderWaterSmoothHeightmap`: VTable [0x000000000333B7B8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterSmoothHeightmap@@` +`class BSImagespaceShaderWaterDisplacementNormals`: VTable [0x000000000333B888, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementNormals@@` +`class BSImagespaceShaderWaterDisplacementNormals`: VTable [0x000000000333B940, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementNormals@@` +`class BSImagespaceShaderWaterDisplacementNormals`: VTable [0x000000000333B960, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementNormals@@` +`class BSImagespaceShaderWaterDisplacementNormals`: VTable [0x000000000333B978, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementNormals@@` +`class BSImagespaceShaderVolumetricLighting`: VTable [0x000000000333BA58, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderVolumetricLighting@@` +`class BSImagespaceShaderVolumetricLighting`: VTable [0x000000000333BB10, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderVolumetricLighting@@` +`class BSImagespaceShaderVolumetricLighting`: VTable [0x000000000333BB30, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderVolumetricLighting@@` +`class BSImagespaceShaderVolumetricLighting`: VTable [0x000000000333BB48, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderVolumetricLighting@@` +`class BSImagespaceShaderWaterFlow`: VTable [0x000000000333BD78, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterFlow@@` +`class BSImagespaceShaderWaterFlow`: VTable [0x000000000333BE30, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterFlow@@` +`class BSImagespaceShaderWaterFlow`: VTable [0x000000000333BE50, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterFlow@@` +`class BSImagespaceShaderWaterFlow`: VTable [0x000000000333BE68, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterFlow@@` +`class BSImagespaceShaderApplyReflections`: VTable [0x000000000333BF88, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderApplyReflections@@` +`class BSImagespaceShaderApplyReflections`: VTable [0x000000000333C040, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderApplyReflections@@` +`class BSImagespaceShaderApplyReflections`: VTable [0x000000000333C060, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderApplyReflections@@` +`class BSImagespaceShaderApplyReflections`: VTable [0x000000000333C078, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderApplyReflections@@` +`class BSImagespaceShaderISApplyVolumetricLighting`: VTable [0x000000000333C190, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISApplyVolumetricLighting@@` +`class BSImagespaceShaderISApplyVolumetricLighting`: VTable [0x000000000333C248, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISApplyVolumetricLighting@@` +`class BSImagespaceShaderISApplyVolumetricLighting`: VTable [0x000000000333C268, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISApplyVolumetricLighting@@` +`class BSImagespaceShaderISApplyVolumetricLighting`: VTable [0x000000000333C280, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISApplyVolumetricLighting@@` +`class BSImagespaceShaderISBasicCopy`: VTable [0x000000000333C3B8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISBasicCopy@@` +`class BSImagespaceShaderISBasicCopy`: VTable [0x000000000333C470, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISBasicCopy@@` +`class BSImagespaceShaderISBasicCopy`: VTable [0x000000000333C490, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISBasicCopy@@` +`class BSImagespaceShaderISBasicCopy`: VTable [0x000000000333C4A8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISBasicCopy@@` +`class BSImagespaceShaderISBlur`: VTable [0x000000000333C558, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISBlur@@` +`class BSImagespaceShaderISBlur`: VTable [0x000000000333C610, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISBlur@@` +`class BSImagespaceShaderISBlur`: VTable [0x000000000333C630, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISBlur@@` +`class BSImagespaceShaderISBlur`: VTable [0x000000000333C648, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISBlur@@` +`class BSImagespaceShaderISVolumetricLightingBlurHCS`: VTable [0x000000000333C738, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurHCS@@` +`class BSImagespaceShaderISVolumetricLightingBlurHCS`: VTable [0x000000000333C7F0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurHCS@@` +`class BSImagespaceShaderISVolumetricLightingBlurHCS`: VTable [0x000000000333C810, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurHCS@@` +`class BSImagespaceShaderISVolumetricLightingBlurHCS`: VTable [0x000000000333C828, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurHCS@@` +`class BSImagespaceShaderISVolumetricLightingBlurVCS`: VTable [0x000000000333C9E0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurVCS@@` +`class BSImagespaceShaderISVolumetricLightingBlurVCS`: VTable [0x000000000333CA98, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurVCS@@` +`class BSImagespaceShaderISVolumetricLightingBlurVCS`: VTable [0x000000000333CAB8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurVCS@@` +`class BSImagespaceShaderISVolumetricLightingBlurVCS`: VTable [0x000000000333CAD0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurVCS@@` +`class BSImagespaceShaderReflectionBlurHCS`: VTable [0x000000000333CBC0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderReflectionBlurHCS@@` +`class BSImagespaceShaderReflectionBlurHCS`: VTable [0x000000000333CC78, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderReflectionBlurHCS@@` +`class BSImagespaceShaderReflectionBlurHCS`: VTable [0x000000000333CC98, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderReflectionBlurHCS@@` +`class BSImagespaceShaderReflectionBlurHCS`: VTable [0x000000000333CCB0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderReflectionBlurHCS@@` +`class BSImagespaceShaderReflectionBlurVCS`: VTable [0x000000000333CD70, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderReflectionBlurVCS@@` +`class BSImagespaceShaderReflectionBlurVCS`: VTable [0x000000000333CE28, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderReflectionBlurVCS@@` +`class BSImagespaceShaderReflectionBlurVCS`: VTable [0x000000000333CE48, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderReflectionBlurVCS@@` +`class BSImagespaceShaderReflectionBlurVCS`: VTable [0x000000000333CE60, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderReflectionBlurVCS@@` +`class BSImagespaceShaderISParallaxMaskBlurHCS`: VTable [0x000000000333CF20, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurHCS@@` +`class BSImagespaceShaderISParallaxMaskBlurHCS`: VTable [0x000000000333CFD8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurHCS@@` +`class BSImagespaceShaderISParallaxMaskBlurHCS`: VTable [0x000000000333CFF8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurHCS@@` +`class BSImagespaceShaderISParallaxMaskBlurHCS`: VTable [0x000000000333D010, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurHCS@@` +`class BSImagespaceShaderISParallaxMaskBlurVCS`: VTable [0x000000000333D0F8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurVCS@@` +`class BSImagespaceShaderISParallaxMaskBlurVCS`: VTable [0x000000000333D1B0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurVCS@@` +`class BSImagespaceShaderISParallaxMaskBlurVCS`: VTable [0x000000000333D1D0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurVCS@@` +`class BSImagespaceShaderISParallaxMaskBlurVCS`: VTable [0x000000000333D1E8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurVCS@@` +`class BSImagespaceShaderISDepthOfFieldBlurHCS`: VTable [0x000000000333D2B0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurHCS@@` +`class BSImagespaceShaderISDepthOfFieldBlurHCS`: VTable [0x000000000333D368, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurHCS@@` +`class BSImagespaceShaderISDepthOfFieldBlurHCS`: VTable [0x000000000333D388, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurHCS@@` +`class BSImagespaceShaderISDepthOfFieldBlurHCS`: VTable [0x000000000333D3A0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurHCS@@` +`class BSImagespaceShaderISDepthOfFieldBlurVCS`: VTable [0x000000000333D478, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurVCS@@` +`class BSImagespaceShaderISDepthOfFieldBlurVCS`: VTable [0x000000000333D530, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurVCS@@` +`class BSImagespaceShaderISDepthOfFieldBlurVCS`: VTable [0x000000000333D550, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurVCS@@` +`class BSImagespaceShaderISDepthOfFieldBlurVCS`: VTable [0x000000000333D568, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurVCS@@` +`class BSImagespaceShaderISCompositeVolumetricLighting`: VTable [0x000000000333D638, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISCompositeVolumetricLighting@@` +`class BSImagespaceShaderISCompositeVolumetricLighting`: VTable [0x000000000333D6F0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISCompositeVolumetricLighting@@` +`class BSImagespaceShaderISCompositeVolumetricLighting`: VTable [0x000000000333D710, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISCompositeVolumetricLighting@@` +`class BSImagespaceShaderISCompositeVolumetricLighting`: VTable [0x000000000333D728, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISCompositeVolumetricLighting@@` +`class BSImagespaceShaderISCompositeLensFlare`: VTable [0x000000000333D890, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISCompositeLensFlare@@` +`class BSImagespaceShaderISCompositeLensFlare`: VTable [0x000000000333D948, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISCompositeLensFlare@@` +`class BSImagespaceShaderISCompositeLensFlare`: VTable [0x000000000333D968, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISCompositeLensFlare@@` +`class BSImagespaceShaderISCompositeLensFlare`: VTable [0x000000000333D980, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISCompositeLensFlare@@` +`class BSImagespaceShaderISCompositeLensFlareVolumetricLighting`: VTable [0x000000000333DA58, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISCompositeLensFlareVolumetricLighting@@` +`class BSImagespaceShaderISCompositeLensFlareVolumetricLighting`: VTable [0x000000000333DB10, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISCompositeLensFlareVolumetricLighting@@` +`class BSImagespaceShaderISCompositeLensFlareVolumetricLighting`: VTable [0x000000000333DB30, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISCompositeLensFlareVolumetricLighting@@` +`class BSImagespaceShaderISCompositeLensFlareVolumetricLighting`: VTable [0x000000000333DB48, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISCompositeLensFlareVolumetricLighting@@` +`class BSImagespaceShaderISCopySubRegionCS`: VTable [0x000000000333DC08, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISCopySubRegionCS@@` +`class BSImagespaceShaderISCopySubRegionCS`: VTable [0x000000000333DCC0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISCopySubRegionCS@@` +`class BSImagespaceShaderISCopySubRegionCS`: VTable [0x000000000333DCE0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISCopySubRegionCS@@` +`class BSImagespaceShaderISCopySubRegionCS`: VTable [0x000000000333DCF8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISCopySubRegionCS@@` +`class BSImagespaceShaderISDebugSnow`: VTable [0x000000000333DDF8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDebugSnow@@` +`class BSImagespaceShaderISDebugSnow`: VTable [0x000000000333DEB0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDebugSnow@@` +`class BSImagespaceShaderISDebugSnow`: VTable [0x000000000333DED0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDebugSnow@@` +`class BSImagespaceShaderISDebugSnow`: VTable [0x000000000333DEE8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDebugSnow@@` +`class BSImagespaceShaderISDownsample`: VTable [0x000000000333DFB0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDownsample@@` +`class BSImagespaceShaderISDownsample`: VTable [0x000000000333E068, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDownsample@@` +`class BSImagespaceShaderISDownsample`: VTable [0x000000000333E088, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDownsample@@` +`class BSImagespaceShaderISDownsample`: VTable [0x000000000333E0A0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDownsample@@` +`class BSImagespaceShaderISDownsampleIgnoreBrightest`: VTable [0x000000000333E1E0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightest@@` +`class BSImagespaceShaderISDownsampleIgnoreBrightest`: VTable [0x000000000333E298, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightest@@` +`class BSImagespaceShaderISDownsampleIgnoreBrightest`: VTable [0x000000000333E2B8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightest@@` +`class BSImagespaceShaderISDownsampleIgnoreBrightest`: VTable [0x000000000333E2D0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightest@@` +`class BSImagespaceShaderISDownsampleCS`: VTable [0x000000000333E3C0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDownsampleCS@@` +`class BSImagespaceShaderISDownsampleCS`: VTable [0x000000000333E478, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDownsampleCS@@` +`class BSImagespaceShaderISDownsampleCS`: VTable [0x000000000333E498, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDownsampleCS@@` +`class BSImagespaceShaderISDownsampleCS`: VTable [0x000000000333E4B0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDownsampleCS@@` +`class BSImagespaceShaderISDownsampleIgnoreBrightestCS`: VTable [0x000000000333E5B8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightestCS@@` +`class BSImagespaceShaderISDownsampleIgnoreBrightestCS`: VTable [0x000000000333E670, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightestCS@@` +`class BSImagespaceShaderISDownsampleIgnoreBrightestCS`: VTable [0x000000000333E690, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightestCS@@` +`class BSImagespaceShaderISDownsampleIgnoreBrightestCS`: VTable [0x000000000333E6A8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightestCS@@` +`class BSImagespaceShaderISExp`: VTable [0x000000000333E788, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISExp@@` +`class BSImagespaceShaderISExp`: VTable [0x000000000333E840, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISExp@@` +`class BSImagespaceShaderISExp`: VTable [0x000000000333E860, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISExp@@` +`class BSImagespaceShaderISExp`: VTable [0x000000000333E878, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISExp@@` +`class BSImagespaceShaderISIBLensFlares`: VTable [0x000000000333E928, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISIBLensFlares@@` +`class BSImagespaceShaderISIBLensFlares`: VTable [0x000000000333E9E0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISIBLensFlares@@` +`class BSImagespaceShaderISIBLensFlares`: VTable [0x000000000333EA00, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISIBLensFlares@@` +`class BSImagespaceShaderISIBLensFlares`: VTable [0x000000000333EA18, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISIBLensFlares@@` +`class BSImagespaceShaderISLightingComposite`: VTable [0x000000000333EC50, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISLightingComposite@@` +`class BSImagespaceShaderISLightingComposite`: VTable [0x000000000333ED08, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISLightingComposite@@` +`class BSImagespaceShaderISLightingComposite`: VTable [0x000000000333ED28, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISLightingComposite@@` +`class BSImagespaceShaderISLightingComposite`: VTable [0x000000000333ED40, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISLightingComposite@@` +`class BSImagespaceShaderISLightingCompositeNoDirectionalLight`: VTable [0x000000000333EE78, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISLightingCompositeNoDirectionalLight@@` +`class BSImagespaceShaderISLightingCompositeNoDirectionalLight`: VTable [0x000000000333EF30, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISLightingCompositeNoDirectionalLight@@` +`class BSImagespaceShaderISLightingCompositeNoDirectionalLight`: VTable [0x000000000333EF50, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISLightingCompositeNoDirectionalLight@@` +`class BSImagespaceShaderISLightingCompositeNoDirectionalLight`: VTable [0x000000000333EF68, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISLightingCompositeNoDirectionalLight@@` +`class BSImagespaceShaderISLightingCompositeMenu`: VTable [0x000000000333F058, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISLightingCompositeMenu@@` +`class BSImagespaceShaderISLightingCompositeMenu`: VTable [0x000000000333F110, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISLightingCompositeMenu@@` +`class BSImagespaceShaderISLightingCompositeMenu`: VTable [0x000000000333F130, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISLightingCompositeMenu@@` +`class BSImagespaceShaderISLightingCompositeMenu`: VTable [0x000000000333F148, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISLightingCompositeMenu@@` +`class BSImagespaceShaderISPerlinNoiseCS`: VTable [0x000000000333F220, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISPerlinNoiseCS@@` +`class BSImagespaceShaderISPerlinNoiseCS`: VTable [0x000000000333F2D8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISPerlinNoiseCS@@` +`class BSImagespaceShaderISPerlinNoiseCS`: VTable [0x000000000333F2F8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISPerlinNoiseCS@@` +`class BSImagespaceShaderISPerlinNoiseCS`: VTable [0x000000000333F310, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISPerlinNoiseCS@@` +`class BSImagespaceShaderISPerlinNoise2DCS`: VTable [0x000000000333F3F0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISPerlinNoise2DCS@@` +`class BSImagespaceShaderISPerlinNoise2DCS`: VTable [0x000000000333F4A8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISPerlinNoise2DCS@@` +`class BSImagespaceShaderISPerlinNoise2DCS`: VTable [0x000000000333F4C8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISPerlinNoise2DCS@@` +`class BSImagespaceShaderISPerlinNoise2DCS`: VTable [0x000000000333F4E0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISPerlinNoise2DCS@@` +`class BSImagespaceShaderReflectionsRayTracing`: VTable [0x000000000333F5B0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderReflectionsRayTracing@@` +`class BSImagespaceShaderReflectionsRayTracing`: VTable [0x000000000333F668, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderReflectionsRayTracing@@` +`class BSImagespaceShaderReflectionsRayTracing`: VTable [0x000000000333F688, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderReflectionsRayTracing@@` +`class BSImagespaceShaderReflectionsRayTracing`: VTable [0x000000000333F6A0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderReflectionsRayTracing@@` +`class BSImagespaceShaderReflectionsDebugSpecMask`: VTable [0x000000000333F7C8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderReflectionsDebugSpecMask@@` +`class BSImagespaceShaderReflectionsDebugSpecMask`: VTable [0x000000000333F880, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderReflectionsDebugSpecMask@@` +`class BSImagespaceShaderReflectionsDebugSpecMask`: VTable [0x000000000333F8A0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderReflectionsDebugSpecMask@@` +`class BSImagespaceShaderReflectionsDebugSpecMask`: VTable [0x000000000333F8B8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderReflectionsDebugSpecMask@@` +`class BSImagespaceShaderISSAOBlurH`: VTable [0x000000000333F998, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOBlurH@@` +`class BSImagespaceShaderISSAOBlurH`: VTable [0x000000000333FA50, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOBlurH@@` +`class BSImagespaceShaderISSAOBlurH`: VTable [0x000000000333FA70, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOBlurH@@` +`class BSImagespaceShaderISSAOBlurH`: VTable [0x000000000333FA88, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOBlurH@@` +`class BSImagespaceShaderISSAOBlurV`: VTable [0x000000000333FB60, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOBlurV@@` +`class BSImagespaceShaderISSAOBlurV`: VTable [0x000000000333FC18, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOBlurV@@` +`class BSImagespaceShaderISSAOBlurV`: VTable [0x000000000333FC38, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOBlurV@@` +`class BSImagespaceShaderISSAOBlurV`: VTable [0x000000000333FC50, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOBlurV@@` +`class BSImagespaceShaderISSAOBlurHCS`: VTable [0x000000000333FD08, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOBlurHCS@@` +`class BSImagespaceShaderISSAOBlurHCS`: VTable [0x000000000333FDC0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOBlurHCS@@` +`class BSImagespaceShaderISSAOBlurHCS`: VTable [0x000000000333FDE0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOBlurHCS@@` +`class BSImagespaceShaderISSAOBlurHCS`: VTable [0x000000000333FDF8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOBlurHCS@@` +`class BSImagespaceShaderISSAOBlurVCS`: VTable [0x000000000333FED0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOBlurVCS@@` +`class BSImagespaceShaderISSAOBlurVCS`: VTable [0x000000000333FF88, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOBlurVCS@@` +`class BSImagespaceShaderISSAOBlurVCS`: VTable [0x000000000333FFA8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOBlurVCS@@` +`class BSImagespaceShaderISSAOBlurVCS`: VTable [0x000000000333FFC0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOBlurVCS@@` +`class BSImagespaceShaderISSAOCameraZ`: VTable [0x0000000003340078, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCameraZ@@` +`class BSImagespaceShaderISSAOCameraZ`: VTable [0x0000000003340130, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCameraZ@@` +`class BSImagespaceShaderISSAOCameraZ`: VTable [0x0000000003340150, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCameraZ@@` +`class BSImagespaceShaderISSAOCameraZ`: VTable [0x0000000003340168, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCameraZ@@` +`class BSImagespaceShaderISSAOCameraZAndMipsCS`: VTable [0x0000000003340228, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCameraZAndMipsCS@@` +`class BSImagespaceShaderISSAOCameraZAndMipsCS`: VTable [0x00000000033402E0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCameraZAndMipsCS@@` +`class BSImagespaceShaderISSAOCameraZAndMipsCS`: VTable [0x0000000003340300, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCameraZAndMipsCS@@` +`class BSImagespaceShaderISSAOCameraZAndMipsCS`: VTable [0x0000000003340318, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCameraZAndMipsCS@@` +`class BSImagespaceShaderISSAOCompositeSAO`: VTable [0x0000000003340410, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCompositeSAO@@` +`class BSImagespaceShaderISSAOCompositeSAO`: VTable [0x00000000033404C8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCompositeSAO@@` +`class BSImagespaceShaderISSAOCompositeSAO`: VTable [0x00000000033404E8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCompositeSAO@@` +`class BSImagespaceShaderISSAOCompositeSAO`: VTable [0x0000000003340500, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCompositeSAO@@` +`class BSImagespaceShaderISSAOCompositeFog`: VTable [0x00000000033406C8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCompositeFog@@` +`class BSImagespaceShaderISSAOCompositeFog`: VTable [0x0000000003340780, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCompositeFog@@` +`class BSImagespaceShaderISSAOCompositeFog`: VTable [0x00000000033407A0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCompositeFog@@` +`class BSImagespaceShaderISSAOCompositeFog`: VTable [0x00000000033407B8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCompositeFog@@` +`class BSImagespaceShaderISSAOCompositeSAOFog`: VTable [0x0000000003340888, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCompositeSAOFog@@` +`class BSImagespaceShaderISSAOCompositeSAOFog`: VTable [0x0000000003340940, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCompositeSAOFog@@` +`class BSImagespaceShaderISSAOCompositeSAOFog`: VTable [0x0000000003340960, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCompositeSAOFog@@` +`class BSImagespaceShaderISSAOCompositeSAOFog`: VTable [0x0000000003340978, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCompositeSAOFog@@` +`class BSImagespaceShaderISMinify`: VTable [0x0000000003340A40, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISMinify@@` +`class BSImagespaceShaderISMinify`: VTable [0x0000000003340AF8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISMinify@@` +`class BSImagespaceShaderISMinify`: VTable [0x0000000003340B18, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISMinify@@` +`class BSImagespaceShaderISMinify`: VTable [0x0000000003340B30, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISMinify@@` +`class BSImagespaceShaderISMinifyContrast`: VTable [0x0000000003340C40, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISMinifyContrast@@` +`class BSImagespaceShaderISMinifyContrast`: VTable [0x0000000003340CF8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISMinifyContrast@@` +`class BSImagespaceShaderISMinifyContrast`: VTable [0x0000000003340D18, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISMinifyContrast@@` +`class BSImagespaceShaderISMinifyContrast`: VTable [0x0000000003340D30, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISMinifyContrast@@` +`class BSImagespaceShaderISSAORawAO`: VTable [0x0000000003340E10, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAORawAO@@` +`class BSImagespaceShaderISSAORawAO`: VTable [0x0000000003340EC8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAORawAO@@` +`class BSImagespaceShaderISSAORawAO`: VTable [0x0000000003340EE8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAORawAO@@` +`class BSImagespaceShaderISSAORawAO`: VTable [0x0000000003340F00, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAORawAO@@` +`class BSImagespaceShaderISSAORawAONoTemporal`: VTable [0x0000000003341040, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAORawAONoTemporal@@` +`class BSImagespaceShaderISSAORawAONoTemporal`: VTable [0x00000000033410F8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAORawAONoTemporal@@` +`class BSImagespaceShaderISSAORawAONoTemporal`: VTable [0x0000000003341118, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAORawAONoTemporal@@` +`class BSImagespaceShaderISSAORawAONoTemporal`: VTable [0x0000000003341130, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAORawAONoTemporal@@` +`class BSImagespaceShaderISSAORawAOCS`: VTable [0x00000000033411F8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAORawAOCS@@` +`class BSImagespaceShaderISSAORawAOCS`: VTable [0x00000000033412B0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAORawAOCS@@` +`class BSImagespaceShaderISSAORawAOCS`: VTable [0x00000000033412D0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAORawAOCS@@` +`class BSImagespaceShaderISSAORawAOCS`: VTable [0x00000000033412E8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAORawAOCS@@` +`class BSImagespaceShaderISSILComposite`: VTable [0x00000000033413B8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSILComposite@@` +`class BSImagespaceShaderISSILComposite`: VTable [0x0000000003341470, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSILComposite@@` +`class BSImagespaceShaderISSILComposite`: VTable [0x0000000003341490, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSILComposite@@` +`class BSImagespaceShaderISSILComposite`: VTable [0x00000000033414A8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSILComposite@@` +`class BSImagespaceShaderISSILRawInd`: VTable [0x0000000003341570, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSILRawInd@@` +`class BSImagespaceShaderISSILRawInd`: VTable [0x0000000003341628, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSILRawInd@@` +`class BSImagespaceShaderISSILRawInd`: VTable [0x0000000003341648, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSILRawInd@@` +`class BSImagespaceShaderISSILRawInd`: VTable [0x0000000003341660, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSILRawInd@@` +`class BSImagespaceShaderISSimpleColor`: VTable [0x0000000003341750, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSimpleColor@@` +`class BSImagespaceShaderISSimpleColor`: VTable [0x0000000003341808, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSimpleColor@@` +`class BSImagespaceShaderISSimpleColor`: VTable [0x0000000003341828, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSimpleColor@@` +`class BSImagespaceShaderISSimpleColor`: VTable [0x0000000003341840, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSimpleColor@@` +`class BSImagespaceShaderISDisplayDepth`: VTable [0x0000000003341908, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDisplayDepth@@` +`class BSImagespaceShaderISDisplayDepth`: VTable [0x00000000033419C0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDisplayDepth@@` +`class BSImagespaceShaderISDisplayDepth`: VTable [0x00000000033419E0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDisplayDepth@@` +`class BSImagespaceShaderISDisplayDepth`: VTable [0x00000000033419F8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDisplayDepth@@` +`class BSImagespaceShaderISSnowSSS`: VTable [0x0000000003341AC0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSnowSSS@@` +`class BSImagespaceShaderISSnowSSS`: VTable [0x0000000003341B78, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSnowSSS@@` +`class BSImagespaceShaderISSnowSSS`: VTable [0x0000000003341B98, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSnowSSS@@` +`class BSImagespaceShaderISSnowSSS`: VTable [0x0000000003341BB0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSnowSSS@@` +`class BSImagespaceShaderISTemporalAA`: VTable [0x0000000003341CA0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISTemporalAA@@` +`class BSImagespaceShaderISTemporalAA`: VTable [0x0000000003341D58, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISTemporalAA@@` +`class BSImagespaceShaderISTemporalAA`: VTable [0x0000000003341D78, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISTemporalAA@@` +`class BSImagespaceShaderISTemporalAA`: VTable [0x0000000003341D90, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISTemporalAA@@` +`class BSImagespaceShaderISTemporalAA_UI`: VTable [0x0000000003341F80, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISTemporalAA_UI@@` +`class BSImagespaceShaderISTemporalAA_UI`: VTable [0x0000000003342038, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISTemporalAA_UI@@` +`class BSImagespaceShaderISTemporalAA_UI`: VTable [0x0000000003342058, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISTemporalAA_UI@@` +`class BSImagespaceShaderISTemporalAA_UI`: VTable [0x0000000003342070, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISTemporalAA_UI@@` +`class BSImagespaceShaderISTemporalAA_Water`: VTable [0x0000000003342130, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISTemporalAA_Water@@` +`class BSImagespaceShaderISTemporalAA_Water`: VTable [0x00000000033421E8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISTemporalAA_Water@@` +`class BSImagespaceShaderISTemporalAA_Water`: VTable [0x0000000003342208, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISTemporalAA_Water@@` +`class BSImagespaceShaderISTemporalAA_Water`: VTable [0x0000000003342220, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISTemporalAA_Water@@` +`class BSImagespaceShaderISUpsampleDynamicResolution`: VTable [0x00000000033422F8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISUpsampleDynamicResolution@@` +`class BSImagespaceShaderISUpsampleDynamicResolution`: VTable [0x00000000033423B0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISUpsampleDynamicResolution@@` +`class BSImagespaceShaderISUpsampleDynamicResolution`: VTable [0x00000000033423D0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISUpsampleDynamicResolution@@` +`class BSImagespaceShaderISUpsampleDynamicResolution`: VTable [0x00000000033423E8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISUpsampleDynamicResolution@@` +`class BSImagespaceShaderISWaterBlend`: VTable [0x00000000033424E0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISWaterBlend@@` +`class BSImagespaceShaderISWaterBlend`: VTable [0x0000000003342598, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISWaterBlend@@` +`class BSImagespaceShaderISWaterBlend`: VTable [0x00000000033425B8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISWaterBlend@@` +`class BSImagespaceShaderISWaterBlend`: VTable [0x00000000033425D0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISWaterBlend@@` +`class BSImagespaceShaderISUnderwaterMask`: VTable [0x00000000033426B8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISUnderwaterMask@@` +`class BSImagespaceShaderISUnderwaterMask`: VTable [0x0000000003342770, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISUnderwaterMask@@` +`class BSImagespaceShaderISUnderwaterMask`: VTable [0x0000000003342790, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISUnderwaterMask@@` +`class BSImagespaceShaderISUnderwaterMask`: VTable [0x00000000033427A8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISUnderwaterMask@@` +`class ShadowSceneNode`: VTable [0x0000000003343380, 0x0000000000000000 offset, 64 functions] `.?AVShadowSceneNode@@` +`class BSMapBase`: VTable [0x0000000003343EA8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEBVBSFadeNode@@I@@` +`class BSMap`: VTable [0x0000000003343EF8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEBVBSFadeNode@@I@@` +`class BSShaderAccumulator`: VTable [0x0000000003343F48, 0x0000000000000000 offset, 47 functions] `.?AVBSShaderAccumulator@@` +`class BSWaterShaderProperty`: VTable [0x0000000003346710, 0x0000000000000000 offset, 65 functions] `.?AVBSWaterShaderProperty@@` +`class BSEffectShaderMaterial`: VTable [0x0000000003346AE8, 0x0000000000000000 offset, 9 functions] `.?AVBSEffectShaderMaterial@@` +`class BSBatchRenderer`: VTable [0x0000000003348080, 0x0000000000000000 offset, 4 functions] `.?AVBSBatchRenderer@@` +`class BSLight`: VTable [0x00000000033488F0, 0x0000000000000000 offset, 4 functions] `.?AVBSLight@@` +`class BSShadowDirectionalLight`: VTable [0x0000000003349890, 0x0000000000000000 offset, 17 functions] `.?AVBSShadowDirectionalLight@@` +`class BSGeometryListCullingProcess`: VTable [0x0000000003349940, 0x0000000000000000 offset, 29 functions] `.?AVBSGeometryListCullingProcess@@` +`class ImageSpaceEffectHDR`: VTable [0x000000000334A350, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectHDR@@` +`class BSShadowLight`: VTable [0x000000000334A9B0, 0x0000000000000000 offset, 17 functions] `.?AVBSShadowLight@@` +`class BSUtilityShader`: VTable [0x000000000334AED0, 0x0000000000000000 offset, 12 functions] `.?AVBSUtilityShader@@` +`class BSUtilityShader`: VTable [0x000000000334AF50, 0x0000000000000010 offset, 2 functions] `.?AVBSUtilityShader@@` +`class BSUtilityShader`: VTable [0x000000000334AF70, 0x0000000000000018 offset, 1 functions] `.?AVBSUtilityShader@@` +`class BSShaderMaterial`: VTable [0x000000000334C590, 0x0000000000000000 offset, 9 functions] `.?AVBSShaderMaterial@@` +`class BSLightingShader`: VTable [0x000000000334D2C0, 0x0000000000000000 offset, 12 functions] `.?AVBSLightingShader@@` +`class BSLightingShader`: VTable [0x000000000334D340, 0x0000000000000010 offset, 2 functions] `.?AVBSLightingShader@@` +`class BSLightingShader`: VTable [0x000000000334D360, 0x0000000000000018 offset, 1 functions] `.?AVBSLightingShader@@` +`class BSLightingShaderMaterialBase`: VTable [0x000000000334DEE8, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialBase@@` +`class BSLightingShaderMaterialEnvmap`: VTable [0x000000000334DF90, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialEnvmap@@` +`class BSLightingShaderMaterialEye`: VTable [0x000000000334E038, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialEye@@` +`class BSLightingShaderMaterialGlowmap`: VTable [0x000000000334E0E0, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialGlowmap@@` +`class BSLightingShaderMaterialParallax`: VTable [0x000000000334E188, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialParallax@@` +`class BSLightingShaderMaterialParallaxOcc`: VTable [0x000000000334E230, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialParallaxOcc@@` +`class BSLightingShaderMaterialFacegen`: VTable [0x000000000334E2D8, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialFacegen@@` +`class BSLightingShaderMaterialFacegenTint`: VTable [0x000000000334E380, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialFacegenTint@@` +`class BSLightingShaderMaterialHairTint`: VTable [0x000000000334E428, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialHairTint@@` +`class BSLightingShaderMaterialLandscape`: VTable [0x000000000334E4D0, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialLandscape@@` +`class BSLightingShaderMaterialLODLandscape`: VTable [0x000000000334E578, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialLODLandscape@@` +`class BSLightingShaderMaterialSnow`: VTable [0x000000000334E620, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialSnow@@` +`class BSLightingShaderMaterialMultiLayerParallax`: VTable [0x000000000334E6C8, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialMultiLayerParallax@@` +`class BSLeafAnimNode`: VTable [0x000000000334F0D0, 0x0000000000000000 offset, 66 functions] `.?AVBSLeafAnimNode@@` +`class BSTreeNode`: VTable [0x000000000334F7B8, 0x0000000000000000 offset, 66 functions] `.?AVBSTreeNode@@` +`class ImageSpaceEffectParam`: VTable [0x000000000334FCC0, 0x0000000000000000 offset, 1 functions] `.?AVImageSpaceEffectParam@@` +`class NiTArray,class NiTNewInterface > >`: VTable [0x000000000334FCD8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiTexture@@@@V?$NiTNewInterface@V?$NiPointer@VNiTexture@@@@@@@@` +`class NiTObjectArray >`: VTable [0x000000000334FCF0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiTexture@@@@@@` +`class NiTArray >`: VTable [0x000000000334FD08, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@W4TextureFilterMode@BSGraphics@@V?$NiTMallocInterface@W4TextureFilterMode@BSGraphics@@@@@@` +`class NiTPrimitiveArray`: VTable [0x000000000334FD20, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@W4TextureFilterMode@BSGraphics@@@@` +`class ImageSpaceShaderParam`: VTable [0x000000000334FD38, 0x0000000000000000 offset, 1 functions] `.?AVImageSpaceShaderParam@@` +`class NiTArray >`: VTable [0x0000000003350618, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@_NV?$NiTMallocInterface@_N@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000003350630, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@_N@@` +`class ImageSpaceEffectOption`: VTable [0x0000000003350648, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectOption@@` +`class ImageSpaceEffectDepthOfField`: VTable [0x00000000033506C0, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectDepthOfField@@` +`class BSParticleShaderProperty`: VTable [0x0000000003352930, 0x0000000000000000 offset, 65 functions] `.?AVBSParticleShaderProperty@@` +`class BSSkyShader`: VTable [0x0000000003352D68, 0x0000000000000000 offset, 12 functions] `.?AVBSSkyShader@@` +`class BSSkyShader`: VTable [0x0000000003352DE8, 0x0000000000000010 offset, 2 functions] `.?AVBSSkyShader@@` +`class BSSkyShader`: VTable [0x0000000003352E08, 0x0000000000000018 offset, 1 functions] `.?AVBSSkyShader@@` +`class BSSkyShaderProperty`: VTable [0x00000000033530C0, 0x0000000000000000 offset, 65 functions] `.?AVBSSkyShaderProperty@@` +`class NiTArray >`: VTable [0x00000000033537B8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVImageSpaceEffectParam@@V?$NiTMallocInterface@PEAVImageSpaceEffectParam@@@@@@` +`class NiTPrimitiveArray`: VTable [0x00000000033537D0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVImageSpaceEffectParam@@@@` +`class NiTArray >`: VTable [0x00000000033537E8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVImageSpaceTexture@@V?$NiTMallocInterface@PEAVImageSpaceTexture@@@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000003353800, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVImageSpaceTexture@@@@` +`class NiTArray >`: VTable [0x0000000003353818, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVEffectInput@ImageSpaceEffect@@V?$NiTMallocInterface@PEAVEffectInput@ImageSpaceEffect@@@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000003353830, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVEffectInput@ImageSpaceEffect@@@@` +`class NiTArray >`: VTable [0x0000000003353848, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@HV?$NiTMallocInterface@H@@@@` +`class NiTPrimitiveArray`: VTable [0x0000000003353860, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@H@@` +`class ImageSpaceEffect`: VTable [0x0000000003353878, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffect@@` +`class BSEffectShader`: VTable [0x0000000003353C40, 0x0000000000000000 offset, 12 functions] `.?AVBSEffectShader@@` +`class BSEffectShader`: VTable [0x0000000003353CC0, 0x0000000000000010 offset, 2 functions] `.?AVBSEffectShader@@` +`class BSEffectShader`: VTable [0x0000000003353CE0, 0x0000000000000018 offset, 1 functions] `.?AVBSEffectShader@@` +`class BSDistantTreeShaderProperty`: VTable [0x0000000003353F30, 0x0000000000000000 offset, 65 functions] `.?AVBSDistantTreeShaderProperty@@` +`class BSDistantTreeShader`: VTable [0x0000000003354210, 0x0000000000000000 offset, 12 functions] `.?AVBSDistantTreeShader@@` +`class BSDistantTreeShader`: VTable [0x0000000003354290, 0x0000000000000010 offset, 2 functions] `.?AVBSDistantTreeShader@@` +`class BSDistantTreeShader`: VTable [0x00000000033542B0, 0x0000000000000018 offset, 1 functions] `.?AVBSDistantTreeShader@@` +`class BSCubeMapCamera`: VTable [0x0000000003354500, 0x0000000000000000 offset, 56 functions] `.?AVBSCubeMapCamera@@` +`class BSWaterShaderMaterial`: VTable [0x0000000003354800, 0x0000000000000000 offset, 9 functions] `.?AVBSWaterShaderMaterial@@` +`class BSWaterShader`: VTable [0x0000000003354BB0, 0x0000000000000000 offset, 12 functions] `.?AVBSWaterShader@@` +`class BSWaterShader`: VTable [0x0000000003354C30, 0x0000000000000010 offset, 2 functions] `.?AVBSWaterShader@@` +`class BSWaterShader`: VTable [0x0000000003354C50, 0x0000000000000018 offset, 1 functions] `.?AVBSWaterShader@@` +`class NiThreadProcedure`: VTable [0x0000000003354D80, 0x0000000000000000 offset, 2 functions] `.?AVNiThreadProcedure@@` +`class NiMemStream`: VTable [0x0000000003354E30, 0x0000000000000000 offset, 6 functions] `.?AVNiMemStream@@` +`class BSOrderedNode`: VTable [0x0000000003355330, 0x0000000000000000 offset, 64 functions] `.?AVBSOrderedNode@@` +`class NiBoneMatrixSetterI`: VTable [0x0000000003355828, 0x0000000000000000 offset, 2 functions] `.?AVNiBoneMatrixSetterI@@` +`class BSReloadShaderI`: VTable [0x0000000003355848, 0x0000000000000000 offset, 1 functions] `.?AVBSReloadShaderI@@` +`class BSShader`: VTable [0x0000000003355860, 0x0000000000000000 offset, 12 functions] `.?AVBSShader@@` +`class BSShader`: VTable [0x00000000033558E0, 0x0000000000000010 offset, 2 functions] `.?AVBSShader@@` +`class BSShader`: VTable [0x0000000003355900, 0x0000000000000018 offset, 1 functions] `.?AVBSShader@@` +`class BSImagespaceShader`: VTable [0x0000000003355C68, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShader@@` +`class BSImagespaceShader`: VTable [0x0000000003355D20, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShader@@` +`class BSImagespaceShader`: VTable [0x0000000003355D40, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShader@@` +`class BSImagespaceShader`: VTable [0x0000000003355D58, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShader@@` +`class BSComputeShader`: VTable [0x0000000003356140, 0x0000000000000000 offset, 3 functions] `.?AVBSComputeShader@@` +`class BSComputeShader`: VTable [0x0000000003356168, 0x0000000000000010 offset, 1 functions] `.?AVBSComputeShader@@` +`class BSMultiIndexTriShape`: VTable [0x00000000033566E8, 0x0000000000000000 offset, 58 functions] `.?AVBSMultiIndexTriShape@@` +`class BSBloodSplatterShader`: VTable [0x00000000033569D8, 0x0000000000000000 offset, 12 functions] `.?AVBSBloodSplatterShader@@` +`class BSBloodSplatterShader`: VTable [0x0000000003356A58, 0x0000000000000010 offset, 2 functions] `.?AVBSBloodSplatterShader@@` +`class BSBloodSplatterShader`: VTable [0x0000000003356A78, 0x0000000000000018 offset, 1 functions] `.?AVBSBloodSplatterShader@@` +`class BSParticleShader`: VTable [0x0000000003356CB0, 0x0000000000000000 offset, 12 functions] `.?AVBSParticleShader@@` +`class BSParticleShader`: VTable [0x0000000003356D30, 0x0000000000000010 offset, 2 functions] `.?AVBSParticleShader@@` +`class BSParticleShader`: VTable [0x0000000003356D50, 0x0000000000000018 offset, 1 functions] `.?AVBSParticleShader@@` +`class BSLightingShaderPropertyFloatController`: VTable [0x0000000003356F08, 0x0000000000000000 offset, 64 functions] `.?AVBSLightingShaderPropertyFloatController@@` +`class BSLightingShaderPropertyUShortController`: VTable [0x00000000033572C8, 0x0000000000000000 offset, 64 functions] `.?AVBSLightingShaderPropertyUShortController@@` +`class BSLightingShaderPropertyColorController`: VTable [0x00000000033576A0, 0x0000000000000000 offset, 64 functions] `.?AVBSLightingShaderPropertyColorController@@` +`class BSEffectShaderPropertyFloatController`: VTable [0x0000000003357A68, 0x0000000000000000 offset, 64 functions] `.?AVBSEffectShaderPropertyFloatController@@` +`class BSEffectShaderPropertyColorController`: VTable [0x0000000003357DF8, 0x0000000000000000 offset, 64 functions] `.?AVBSEffectShaderPropertyColorController@@` +`class BSNiAlphaPropertyTestRefController`: VTable [0x0000000003358188, 0x0000000000000000 offset, 64 functions] `.?AVBSNiAlphaPropertyTestRefController@@` +`class BSPSysSimpleColorModifier`: VTable [0x0000000003358510, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysSimpleColorModifier@@` +`class BSPSysLODModifier`: VTable [0x0000000003358968, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysLODModifier@@` +`class IRendererResourceManager`: VTable [0x0000000003358B60, 0x0000000000000000 offset, 40 functions] `.?AVIRendererResourceManager@@` +`class BSShaderResourceManager`: VTable [0x0000000003358CF0, 0x0000000000000000 offset, 40 functions] `.?AVBSShaderResourceManager@@` +`class ImageSpaceEffectRefraction`: VTable [0x0000000003359A40, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectRefraction@@` +`class ImageSpaceEffectGetHit`: VTable [0x0000000003359B80, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectGetHit@@` +`class ImageSpaceEffectBlur`: VTable [0x0000000003359D68, 0x0000000000000000 offset, 14 functions] `.?AVImageSpaceEffectBlur@@` +`class ImageSpaceEffectFullScreenBlur`: VTable [0x0000000003359E60, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectFullScreenBlur@@` +`class ImageSpaceEffectMap`: VTable [0x0000000003359F78, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectMap@@` +`class ImageSpaceEffectWorldMap`: VTable [0x000000000335A0C0, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectWorldMap@@` +`class ImageSpaceEffectRadialBlur`: VTable [0x000000000335A2C0, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectRadialBlur@@` +`class ImageSpaceEffectNoise`: VTable [0x000000000335A3B8, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectNoise@@` +`class ImageSpaceEffectWaterDisplacement`: VTable [0x000000000335A600, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectWaterDisplacement@@` +`class ImageSpaceEffectVolumetricLighting`: VTable [0x000000000335A888, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectVolumetricLighting@@` +`class BSParabolicCullingProcess`: VTable [0x000000000335BDB8, 0x0000000000000000 offset, 29 functions] `.?AVBSParabolicCullingProcess@@` +`class BSShadowFrustumLight`: VTable [0x000000000335C0E8, 0x0000000000000000 offset, 17 functions] `.?AVBSShadowFrustumLight@@` +`class BSShadowParabolicLight`: VTable [0x000000000335C380, 0x0000000000000000 offset, 17 functions] `.?AVBSShadowParabolicLight@@` +`class BSLODMultiIndexTriShape`: VTable [0x000000000335C728, 0x0000000000000000 offset, 58 functions] `.?AVBSLODMultiIndexTriShape@@` +`class BSMeshLODTriShape`: VTable [0x000000000335D960, 0x0000000000000000 offset, 58 functions] `.?AVBSMeshLODTriShape@@` +`class BSSubIndexLandTriShape`: VTable [0x000000000335DC90, 0x0000000000000000 offset, 58 functions] `.?AVBSSubIndexLandTriShape@@` +`class BSSceneGraph`: VTable [0x000000000335F700, 0x0000000000000000 offset, 67 functions] `.?AVBSSceneGraph@@` +`class BSSystemMonitor::SocketThread`: VTable [0x000000000335FFE8, 0x0000000000000000 offset, 3 functions] `.?AVSocketThread@BSSystemMonitor@@` +`class BSSystemMonitor::MemOpsThread`: VTable [0x0000000003360010, 0x0000000000000000 offset, 3 functions] `.?AVMemOpsThread@BSSystemMonitor@@` +`class `anonymous namespace'::MemoryBlockSender`: VTable [0x0000000003360038, 0x0000000000000000 offset, 6 functions] `.?AVMemoryBlockSender@?A0x7058f444@@` +`class BSGameDataSystemUtility`: VTable [0x0000000003360650, 0x0000000000000000 offset, 6 functions] `.?AVBSGameDataSystemUtility@@` +`class CCallbackImpl<1>`: VTable [0x00000000033606C8, 0x0000000000000000 offset, 4 functions] `.?AV?$CCallbackImpl@$00@@` +`class CCallbackImpl<8>`: VTable [0x00000000033606F8, 0x0000000000000000 offset, 4 functions] `.?AV?$CCallbackImpl@$07@@` +`class CCallResult`: VTable [0x0000000003360728, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBSWin32SystemUtility@@UEncryptedAppTicketResponse_t@@@@` +`class BSTEventSink`: VTable [0x00000000033607E0, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UBSGamepadEvent@@@@` +`class BSSystemUtility`: VTable [0x0000000003360800, 0x0000000000000000 offset, 19 functions] `.?AVBSSystemUtility@@` +`class BSWin32SaveDataSystemUtility`: VTable [0x0000000003360978, 0x0000000000000000 offset, 18 functions] `.?AVBSWin32SaveDataSystemUtility@@` +`class CCallback`: VTable [0x0000000003360A80, 0x0000000000000000 offset, 4 functions] `.?AV?$CCallback@VBSWin32SystemUtility@@UGameOverlayActivated_t@@$0A@@@` +`class CCallback`: VTable [0x0000000003360AB0, 0x0000000000000000 offset, 4 functions] `.?AV?$CCallback@VBSWin32SystemUtility@@UFloatingGamepadTextInputDismissed_t@@$0A@@@` +`class CCallback`: VTable [0x0000000003360AE0, 0x0000000000000000 offset, 4 functions] `.?AV?$CCallback@VBSWin32SystemUtility@@UGamepadTextInputDismissed_t@@$0A@@@` +`class BSWin32SystemUtility`: VTable [0x0000000003360B10, 0x0000000000000000 offset, 19 functions] `.?AVBSWin32SystemUtility@@` +`class BSCacheDriveSystemUtility`: VTable [0x0000000003360C50, 0x0000000000000000 offset, 4 functions] `.?AVBSCacheDriveSystemUtility@@` +`class BSSysInfoSystemUtility`: VTable [0x0000000003360DC0, 0x0000000000000000 offset, 3 functions] `.?AVBSSysInfoSystemUtility@@` +`class BSSystemUtilitiesStrings`: VTable [0x0000000003360EF0, 0x0000000000000000 offset, 3 functions] `.?AVBSSystemUtilitiesStrings@@` +`class BSWin32GameDataSystemUtility`: VTable [0x0000000003360F18, 0x0000000000000000 offset, 6 functions] `.?AVBSWin32GameDataSystemUtility@@` +`class BSSaveDataSystemUtility::Entry`: VTable [0x0000000003361080, 0x0000000000000000 offset, 1 functions] `.?AVEntry@BSSaveDataSystemUtility@@` +`class BSSaveDataSystemUtility`: VTable [0x0000000003361098, 0x0000000000000000 offset, 18 functions] `.?AVBSSaveDataSystemUtility@@` +`class BSSaveDataSystemUtilityFile`: VTable [0x00000000033614D8, 0x0000000000000000 offset, 22 functions] `.?AVBSSaveDataSystemUtilityFile@@` +`class `anonymous namespace'::Win32FileType`: VTable [0x00000000033615B8, 0x0000000000000000 offset, 22 functions] `.?AVWin32FileType@?A0xcd5a3647@@` +`class BSDiscBootSystemUtility`: VTable [0x00000000033617B8, 0x0000000000000000 offset, 3 functions] `.?AVBSDiscBootSystemUtility@@` +`class type_info`: VTable [0x00000000033623F0, 0x0000000000000000 offset, 1 functions] `.?AVtype_info@@` +`class BSSocketServer`: VTable [0x0000000003362DF8, 0x0000000000000000 offset, 4 functions] `.?AVBSSocketServer@@` diff --git a/Stuffs/rtti_se_1_6_438.txt b/Stuffs/rtti_se_1_6_438.txt deleted file mode 100644 index 5cf651c1..00000000 --- a/Stuffs/rtti_se_1_6_438.txt +++ /dev/null @@ -1,5788 +0,0 @@ -`struct BSTArrayBase::IAllocatorFunctor`: VTable [0x0000000002E575D8, 0x0000000000000000 offset, 4 functions] `.?AUIAllocatorFunctor@BSTArrayBase@@` -`class Dialog::BaseDialog`: VTable [0x0000000002E57620, 0x0000000000000000 offset, 3 functions] `.?AVBaseDialog@Dialog@@` -`struct BSTArrayAllocatorFunctor`: VTable [0x0000000002E57858, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@VBSTArrayHeapAllocator@@@@` -`class Json::FastWriter`: VTable [0x0000000002E57B90, 0x0000000000000000 offset, 2 functions] `.?AVFastWriter@Json@@` -`class IFormFactory`: VTable [0x0000000002E58048, 0x0000000000000000 offset, 7 functions] `.?AVIFormFactory@@` -`class BGSLensFlare`: VTable [0x0000000002E580B0, 0x0000000000000000 offset, 101 functions] `.?AVBGSLensFlare@@` -`class ConcreteFormFactory`: VTable [0x0000000002E58488, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSLensFlare@@$0IH@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002E584D8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSLensFlare@@$0IH@$0GH@$05@@` -`class NiRefObject`: VTable [0x0000000002E58778, 0x0000000000000000 offset, 2 functions] `.?AVNiRefObject@@` -`class BSLensFlareSpriteRenderData`: VTable [0x0000000002E58798, 0x0000000000000000 offset, 3 functions] `.?AVBSLensFlareSpriteRenderData@@` -`class BGSLensFlareSprite`: VTable [0x0000000002E587C0, 0x0000000000000000 offset, 3 functions] `.?AVBGSLensFlareSprite@@` -`class BGSVolumetricLighting`: VTable [0x0000000002E58998, 0x0000000000000000 offset, 101 functions] `.?AVBGSVolumetricLighting@@` -`class ConcreteFormFactory`: VTable [0x0000000002E58D70, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSVolumetricLighting@@$0IJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002E58DC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSVolumetricLighting@@$0IJ@$0GJ@$05@@` -`class NiTMapBase >,char const * __ptr64,class ArchiveFileData * __ptr64>`: VTable [0x0000000002E5AAA0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEBDPEAVArchiveFileData@@@@@@PEBDPEAVArchiveFileData@@@@` -`class NiTMap`: VTable [0x0000000002E5AAF0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEBDPEAVArchiveFileData@@@@` -`class NiTStringTemplateMap,class ArchiveFileData * __ptr64>`: VTable [0x0000000002E5AB40, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTMap@PEBDPEAVArchiveFileData@@@@PEAVArchiveFileData@@@@` -`class NiTStringMap`: VTable [0x0000000002E5AB90, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringMap@PEAVArchiveFileData@@@@` -`class BSTCaseInsensitiveStringMap`: VTable [0x0000000002E5ABE0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCaseInsensitiveStringMap@PEAVArchiveFileData@@@@` -`class NiTMapBase >,char const * __ptr64,class ArchiveFileOwner * __ptr64>`: VTable [0x0000000002E5AC30, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEBDPEAVArchiveFileOwner@@@@@@PEBDPEAVArchiveFileOwner@@@@` -`class NiTMap`: VTable [0x0000000002E5AC80, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEBDPEAVArchiveFileOwner@@@@` -`class NiTStringTemplateMap,class ArchiveFileOwner * __ptr64>`: VTable [0x0000000002E5ACD0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTMap@PEBDPEAVArchiveFileOwner@@@@PEAVArchiveFileOwner@@@@` -`class NiTStringMap`: VTable [0x0000000002E5AD20, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringMap@PEAVArchiveFileOwner@@@@` -`class BSTCaseInsensitiveStringMap`: VTable [0x0000000002E5AD70, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCaseInsensitiveStringMap@PEAVArchiveFileOwner@@@@` -`class Setting`: VTable [0x0000000002E5C498, 0x0000000000000000 offset, 2 functions] `.?AVSetting@@` -`class SettingCollection`: VTable [0x0000000002E5C4B8, 0x0000000000000000 offset, 11 functions] `.?AV?$SettingCollection@VSetting@@@@` -`class SettingCollectionList`: VTable [0x0000000002E5C530, 0x0000000000000000 offset, 11 functions] `.?AV?$SettingCollectionList@VSetting@@@@` -`class INISettingCollection`: VTable [0x0000000002E5C5A8, 0x0000000000000000 offset, 11 functions] `.?AVINISettingCollection@@` -`class SettingT`: VTable [0x0000000002E5C620, 0x0000000000000000 offset, 2 functions] `.?AV?$SettingT@VINISettingCollection@@@@` -`class BGSArchiveBrowser`: VTable [0x0000000002E5C710, 0x0000000000000000 offset, 2 functions] `.?AVBGSArchiveBrowser@@` -`class std::basic_filebuf >`: VTable [0x0000000002E5CF00, 0x0000000000000000 offset, 15 functions] `.?AV?$basic_filebuf@DU?$char_traits@D@std@@@std@@` -`class std::basic_ofstream >`: VTable [0x0000000002E5CFA0, 0x00000000000000A8 offset, 1 functions] `.?AV?$basic_ofstream@DU?$char_traits@D@std@@@std@@` -`class std::basic_ifstream >`: VTable [0x0000000002E5D068, 0x00000000000000B0 offset, 1 functions] `.?AV?$basic_ifstream@DU?$char_traits@D@std@@@std@@` -`struct BSTArrayAllocatorFunctor`: VTable [0x0000000002E5D630, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@VBSScrapArrayAllocator@@@@` -`class std::_Func_impl_no_alloc,void,char const * __ptr64>`: VTable [0x0000000002E5D660, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XPEBD@std@@` -`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002E5D6A8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` -`class std::_Func_impl_no_alloc,void,char const * __ptr64>`: VTable [0x0000000002E5D6F0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XPEBD@std@@` -`class std::_Func_impl_no_alloc,void,char const * __ptr64>`: VTable [0x0000000002E5D738, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XPEBD@std@@` -`class std::_Func_impl_no_alloc`: VTable [0x0000000002E5D7D8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@P6A_NPEAUHWND__@@W4BNetPlatform@BSPlatform@@PEBD2@Z_NPEAU1@W423@PEBDPEBD@std@@` -`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002E5D860, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` -`class `anonymous namespace'::IAutomatedProcessRunner`: VTable [0x0000000002E5DBF8, 0x0000000000000000 offset, 2 functions] `.?AVIAutomatedProcessRunner@?A0xe4700b26@@` -`class `anonymous namespace'::MasterfileOptimizer`: VTable [0x0000000002E5DC18, 0x0000000000000000 offset, 2 functions] `.?AVMasterfileOptimizer@?A0xe4700b26@@` -`class `anonymous namespace'::DLCMasterfileOptimizer`: VTable [0x0000000002E5DC38, 0x0000000000000000 offset, 2 functions] `.?AVDLCMasterfileOptimizer@?A0xe4700b26@@` -`class `anonymous namespace'::SEQExporter`: VTable [0x0000000002E5DC58, 0x0000000000000000 offset, 2 functions] `.?AVSEQExporter@?A0xe4700b26@@` -`class `anonymous namespace'::ShaderListBuilder`: VTable [0x0000000002E5DC78, 0x0000000000000000 offset, 2 functions] `.?AVShaderListBuilder@?A0xe4700b26@@` -`class `anonymous namespace'::DialogueExporter`: VTable [0x0000000002E5DC98, 0x0000000000000000 offset, 2 functions] `.?AVDialogueExporter@?A0xe4700b26@@` -`class `anonymous namespace'::LipGenerator`: VTable [0x0000000002E5DCB8, 0x0000000000000000 offset, 2 functions] `.?AVLipGenerator@?A0xe4700b26@@` -`class `anonymous namespace'::FaceGenDataExporter`: VTable [0x0000000002E5DCD8, 0x0000000000000000 offset, 2 functions] `.?AVFaceGenDataExporter@?A0xe4700b26@@` -`class `anonymous namespace'::MasterfileTagifier`: VTable [0x0000000002E5DCF8, 0x0000000000000000 offset, 2 functions] `.?AVMasterfileTagifier@?A0xe4700b26@@` -`class `anonymous namespace'::MasterfileTextExporter`: VTable [0x0000000002E5DD20, 0x0000000000000000 offset, 2 functions] `.?AVMasterfileTextExporter@?A0xe4700b26@@` -`class `anonymous namespace'::MasterfileDelocalizer`: VTable [0x0000000002E5DD40, 0x0000000000000000 offset, 2 functions] `.?AVMasterfileDelocalizer@?A0xe4700b26@@` -`class `anonymous namespace'::NeededFileDumper`: VTable [0x0000000002E5DD60, 0x0000000000000000 offset, 2 functions] `.?AVNeededFileDumper@?A0xe4700b26@@` -`class `anonymous namespace'::ESLConverter`: VTable [0x0000000002E5DDE0, 0x0000000000000000 offset, 2 functions] `.?AVESLConverter@?A0xe4700b26@@` -`class BSPlatform::BSUserContent`: VTable [0x0000000002E5EBE8, 0x0000000000000000 offset, 2 functions] `.?AVBSUserContent@BSPlatform@@` -`class BSPlatform::BSCreation`: VTable [0x0000000002E5EC08, 0x0000000000000000 offset, 2 functions] `.?AVBSCreation@BSPlatform@@` -`class Dialog::ModalDialog`: VTable [0x0000000002E5EC28, 0x0000000000000000 offset, 3 functions] `.?AVModalDialog@Dialog@@` -`class BGSBNetCreationSelectDialog`: VTable [0x0000000002E5EC50, 0x0000000000000000 offset, 3 functions] `.?AVBGSBNetCreationSelectDialog@@` -`class std::_Func_impl_no_alloc const & __ptr64) __ptr64,class BGSBNetCreationSelectDialog * __ptr64,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64>,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x0000000002E5F018, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V?$_Binder@U_Unforced@std@@P8BGSBNetCreationSelectDialog@@EAAXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@ZPEAV3@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@@std@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class INIPrefSettingCollection`: VTable [0x0000000002E5F2A8, 0x0000000000000000 offset, 11 functions] `.?AVINIPrefSettingCollection@@` -`class SettingT`: VTable [0x0000000002E5F320, 0x0000000000000000 offset, 2 functions] `.?AV?$SettingT@VINIPrefSettingCollection@@@@` -`class BGSBNetModSelectDialog`: VTable [0x0000000002E5FA58, 0x0000000000000000 offset, 3 functions] `.?AVBGSBNetModSelectDialog@@` -`class std::_Func_impl_no_alloc const & __ptr64) __ptr64,class BGSBNetModSelectDialog * __ptr64,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64>,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x0000000002E5FBC8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V?$_Binder@U_Unforced@std@@P8BGSBNetModSelectDialog@@EAAXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@ZPEAV3@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@@std@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class BGSBNetUploadCreationDialog`: VTable [0x0000000002E60020, 0x0000000000000000 offset, 3 functions] `.?AVBGSBNetUploadCreationDialog@@` -`class std::basic_stringbuf,class std::allocator >`: VTable [0x0000000002E607C8, 0x0000000000000000 offset, 15 functions] `.?AV?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@` -`class std::basic_ostringstream,class std::allocator >`: VTable [0x0000000002E60898, 0x0000000000000088 offset, 1 functions] `.?AV?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@` -`class std::_Func_impl_no_alloc const & __ptr64,struct std::_Ph<2> const & __ptr64>,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x0000000002E61CE0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V?$_Binder@U_Unforced@std@@P8BGSBNetUploadProgressDialog@@EAAXW4BNetResult@BSPlatform@@_K@ZPEAV3@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@@std@@XW4BNetResult@BSPlatform@@_K@std@@` -`class BGSErrorDlg`: VTable [0x0000000002E634D8, 0x0000000000000000 offset, 3 functions] `.?AVBGSErrorDlg@@` -`class NiProperty`: VTable [0x0000000002E64618, 0x0000000000000000 offset, 41 functions] `.?AVNiProperty@@` -`class NiAlphaProperty`: VTable [0x0000000002E647B0, 0x0000000000000000 offset, 41 functions] `.?AVNiAlphaProperty@@` -`class BSResource::Location`: VTable [0x0000000002E64990, 0x0000000000000000 offset, 12 functions] `.?AVLocation@BSResource@@` -`class BSQueuedResourceCollection,2>`: VTable [0x0000000002E64A10, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@$01@@` -`class BSQueuedResourceCollection,2>`: VTable [0x0000000002E64AE0, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@$01@@` -`class BGSQueuedGrassModelHandles`: VTable [0x0000000002E64B08, 0x0000000000000000 offset, 20 functions] `.?AVBGSQueuedGrassModelHandles@@` -`class BGSQueuedGrassModelHandles`: VTable [0x0000000002E64BD8, 0x0000000000000038 offset, 3 functions] `.?AVBGSQueuedGrassModelHandles@@` -`class BSResource::LooseFileLocation`: VTable [0x0000000002E64C00, 0x0000000000000000 offset, 12 functions] `.?AVLooseFileLocation@BSResource@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002E65518, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0CA@@@@@` -`class BGSGenericCategoryLayout::Manager`: VTable [0x0000000002E65A48, 0x0000000000000000 offset, 7 functions] `.?AVManager@BGSGenericCategoryLayout@@` -`class BGSListViewDialog`: VTable [0x0000000002E66088, 0x0000000000000000 offset, 2 functions] `.?AVBGSListViewDialog@@` -`class BGSFormListViewDialog`: VTable [0x0000000002E660A8, 0x0000000000000000 offset, 2 functions] `.?AVBGSFormListViewDialog@@` -`class BGSFileListViewDialog`: VTable [0x0000000002E660C8, 0x0000000000000000 offset, 2 functions] `.?AVBGSFileListViewDialog@@` -`class BGSOKCancelListViewDialog`: VTable [0x0000000002E660E8, 0x0000000000000000 offset, 2 functions] `.?AVBGSOKCancelListViewDialog@@` -`class BGSModUtils::`anonymous namespace'::PickESMDialog`: VTable [0x0000000002E667F0, 0x0000000000000000 offset, 3 functions] `.?AVPickESMDialog@?A0xf70c580d@BGSModUtils@@` -`class NiTMapBase,class TESForm * __ptr64,class TESForm * __ptr64>`: VTable [0x0000000002E67D20, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEAVTESForm@@PEAV2@@@` -`class NiTPointerMap`: VTable [0x0000000002E67D70, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEAVTESForm@@PEAV1@@@` -`class IFormFactory::IFactoryVisitor`: VTable [0x0000000002E686B0, 0x0000000000000000 offset, 2 functions] `.?AVIFactoryVisitor@IFormFactory@@` -`struct `anonymous namespace'::ObjectTypeEnumerator`: VTable [0x0000000002E686F8, 0x0000000000000000 offset, 2 functions] `.?AUObjectTypeEnumerator@?A0x8085a3ea@@` -`struct `anonymous namespace'::ObjectTreeItemAdder`: VTable [0x0000000002E68718, 0x0000000000000000 offset, 2 functions] `.?AUObjectTreeItemAdder@?A0x8085a3ea@@` -`class BGSRenderOrthoGrid`: VTable [0x0000000002E6A338, 0x0000000000000000 offset, 1 functions] `.?AVBGSRenderOrthoGrid@@` -`class BSTEventSink`: VTable [0x0000000002E6AD20, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UTESDataHandlerEditorEvent@@@@` -`class BGSRenderWindow`: VTable [0x0000000002E6AD40, 0x0000000000000000 offset, 2 functions] `.?AVBGSRenderWindow@@` -`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002E6B750, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` -`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002E6B798, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` -`class BGSRenderWindowBorder`: VTable [0x0000000002E6B800, 0x0000000000000000 offset, 1 functions] `.?AVBGSRenderWindowBorder@@` -`class BGSRenderWindowCamera`: VTable [0x0000000002E6BA48, 0x0000000000000000 offset, 1 functions] `.?AVBGSRenderWindowCamera@@` -`class hkpRayHitCollector`: VTable [0x0000000002E6BA60, 0x0000000000000000 offset, 2 functions] `.?AVhkpRayHitCollector@@` -`class hkpAllRayHitCollector`: VTable [0x0000000002E6BA80, 0x0000000000000000 offset, 2 functions] `.?AVhkpAllRayHitCollector@@` -`class BGSRenderWindowEditModule`: VTable [0x0000000002E6BDF0, 0x0000000000000000 offset, 71 functions] `.?AVBGSRenderWindowEditModule@@` -`class BGSRenderWindowEditModuleManager`: VTable [0x0000000002E6CE20, 0x0000000000000000 offset, 2 functions] `.?AVBGSRenderWindowEditModuleManager@@` -`class BGSRenderWindowGizmo`: VTable [0x0000000002E6D0D0, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowGizmo@@` -`class BSFixedScreenSizeNode`: VTable [0x0000000002E6D130, 0x0000000000000000 offset, 66 functions] `.?AVBSFixedScreenSizeNode@@` -`class BGSRenderWindowEditModuleFactory`: VTable [0x0000000002E6D620, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowEditModuleFactory@@` -`class BGSRenderWindowLandscapeEditModule`: VTable [0x0000000002E6D650, 0x0000000000000000 offset, 71 functions] `.?AVBGSRenderWindowLandscapeEditModule@@` -`class BGSRenderWindowLandscapeEditModuleFactory`: VTable [0x0000000002E6D908, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowLandscapeEditModuleFactory@@` -`class BSExtraData`: VTable [0x0000000002E708D8, 0x0000000000000000 offset, 3 functions] `.?AVBSExtraData@@` -`class ExtraNavMeshPortal`: VTable [0x0000000002E70960, 0x0000000000000000 offset, 3 functions] `.?AVExtraNavMeshPortal@@` -`class PathingDebugGeometryData`: VTable [0x0000000002E709C0, 0x0000000000000000 offset, 2 functions] `.?AVPathingDebugGeometryData@@` -`class BGSRenderWindowNavMeshEditModule`: VTable [0x0000000002E709E0, 0x0000000000000000 offset, 71 functions] `.?AVBGSRenderWindowNavMeshEditModule@@` -`class BGSRenderWindowNavMeshEditModuleFactory`: VTable [0x0000000002E70C98, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowNavMeshEditModuleFactory@@` -`class BGSRecastModule::RecastJob`: VTable [0x0000000002E70CC8, 0x0000000000000000 offset, 2 functions] `.?AVRecastJob@BGSRecastModule@@` -`class `anonymous namespace'::ReRecast`: VTable [0x0000000002E70CE8, 0x0000000000000000 offset, 2 functions] `.?AVReRecast@?A0xbd99b289@@` -`class BGSRenderWindowPrimitiveEditModule`: VTable [0x0000000002E725E8, 0x0000000000000000 offset, 73 functions] `.?AVBGSRenderWindowPrimitiveEditModule@@` -`class BGSRenderWindowPrimitiveEditModuleFactory`: VTable [0x0000000002E728B0, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowPrimitiveEditModuleFactory@@` -`class BGSRenderWindowPrimitiveGizmo`: VTable [0x0000000002E72A60, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowPrimitiveGizmo@@` -`class BGSRenderWindowReferenceEditModule`: VTable [0x0000000002E73D30, 0x0000000000000000 offset, 71 functions] `.?AVBGSRenderWindowReferenceEditModule@@` -`class BGSRenderWindowReferenceEditModuleFactory`: VTable [0x0000000002E73FE8, 0x0000000000000000 offset, 4 functions] `.?AVBGSRenderWindowReferenceEditModuleFactory@@` -`class NiTMapBase,class BSPointerHandle >,class BSPointerHandle > >`: VTable [0x0000000002E74B68, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V2@@@` -`class NiTPointerMap >,class BSPointerHandle > >`: VTable [0x0000000002E74BB8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V1@@@` -`class NiTArray >`: VTable [0x0000000002E74D60, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVNiNode@@V?$NiTMallocInterface@PEAVNiNode@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000002E74D78, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVNiNode@@@@` -`class NiTArray >`: VTable [0x0000000002E74DE8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEBVNiPoint3@@V?$NiTMallocInterface@PEBVNiPoint3@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000002E74E00, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEBVNiPoint3@@@@` -`class BGSRenderWindowRotationGizmo`: VTable [0x0000000002E75330, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowRotationGizmo@@` -`class BGSRenderWindowScaleGizmo`: VTable [0x0000000002E753E0, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowScaleGizmo@@` -`class BGSRenderWindowTranslationGizmo`: VTable [0x0000000002E75490, 0x0000000000000000 offset, 9 functions] `.?AVBGSRenderWindowTranslationGizmo@@` -`class NiTMapBase >,class NiTexture * __ptr64,struct TEX_USER_DATA * __ptr64>`: VTable [0x0000000002E75B98, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVNiTexture@@PEAUTEX_USER_DATA@@@@@@PEAVNiTexture@@PEAUTEX_USER_DATA@@@@` -`class NiTMap`: VTable [0x0000000002E75BE8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVNiTexture@@PEAUTEX_USER_DATA@@@@` -`class NiTMapBase >,bool> >,class BSPointerHandle >,bool>`: VTable [0x0000000002E75C98, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@` -`class NiTMap >,bool>`: VTable [0x0000000002E75CE8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@` -`class NiTMapBase >,class NiTexture * __ptr64,bool>`: VTable [0x0000000002E75D38, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVNiTexture@@_N@@@@PEAVNiTexture@@_N@@` -`class NiTMap`: VTable [0x0000000002E75D88, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVNiTexture@@_N@@` -`class NiTMapBase >,class BSGeometry * __ptr64,bool>`: VTable [0x0000000002E75E88, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVBSGeometry@@_N@@@@PEAVBSGeometry@@_N@@` -`class NiTMap`: VTable [0x0000000002E75ED8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVBSGeometry@@_N@@` -`class BGSSearchReplaceDialog`: VTable [0x0000000002E76438, 0x0000000000000000 offset, 1 functions] `.?AVBGSSearchReplaceDialog@@` -`struct TESObjectCELL::IDecalRefFunctor`: VTable [0x0000000002E76978, 0x0000000000000000 offset, 2 functions] `.?AUIDecalRefFunctor@TESObjectCELL@@` -`struct `anonymous namespace'::CullOrShowDecalRefFunctor`: VTable [0x0000000002E76B70, 0x0000000000000000 offset, 3 functions] `.?AUCullOrShowDecalRefFunctor@?A0xbc0dc141@@` -`struct `anonymous namespace'::CullOrShowDecalsPerCellFunctor::Adapter`: VTable [0x0000000002E76B98, 0x0000000000000000 offset, 3 functions] `.?AUAdapter@CullOrShowDecalsPerCellFunctor@?A0xbc0dc141@@` -`class BGSSkillPerkTreeNode`: VTable [0x0000000002E777C0, 0x0000000000000000 offset, 2 functions] `.?AVBGSSkillPerkTreeNode@@` -`class BGSSkillPerkTreeWindow`: VTable [0x0000000002E777E0, 0x0000000000000000 offset, 1 functions] `.?AVBGSSkillPerkTreeWindow@@` -`class BGSSkillPerkTreeEventSink`: VTable [0x0000000002E77810, 0x0000000000000000 offset, 8 functions] `.?AVBGSSkillPerkTreeEventSink@@` -`class CCallbackBase`: VTable [0x0000000002E77FA8, 0x0000000000000000 offset, 3 functions] `.?AVCCallbackBase@@` -`class CCallResult`: VTable [0x0000000002E77FD0, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@UCreateItemResult_t@@@@` -`class CCallResult`: VTable [0x0000000002E77FF8, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageEnumerateUserPublishedFilesResult_t@@@@` -`class CCallResult`: VTable [0x0000000002E78020, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageGetPublishedFileDetailsResult_t@@@@` -`class CCallResult`: VTable [0x0000000002E78048, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStoragePublishFileResult_t@@@@` -`class CCallResult`: VTable [0x0000000002E78070, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageSubscribePublishedFileResult_t@@@@` -`class CCallResult`: VTable [0x0000000002E78098, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageDownloadUGCResult_t@@@@` -`class CCallResult`: VTable [0x0000000002E780C0, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@URemoteStorageUpdatePublishedFileResult_t@@@@` -`class CCallResult`: VTable [0x0000000002E780E8, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@USubmitItemUpdateResult_t@@@@` -`class CCallResult`: VTable [0x0000000002E78110, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBGSSteamUploaderDialog@@USteamUGCRequestUGCDetailsResult_t@@@@` -`class BGSThreadedProgressDlg`: VTable [0x0000000002E78838, 0x0000000000000000 offset, 3 functions] `.?AVBGSThreadedProgressDlg@@` -`class ProgressInternal::TaskThread`: VTable [0x0000000002E788B0, 0x0000000000000000 offset, 4 functions] `.?AVTaskThread@ProgressInternal@@` -`class BGSWarningsDialog`: VTable [0x0000000002E78DD0, 0x0000000000000000 offset, 1 functions] `.?AVBGSWarningsDialog@@` -`class `anonymous namespace'::LayoutManager`: VTable [0x0000000002E78E38, 0x0000000000000000 offset, 7 functions] `.?AVLayoutManager@?A0x2992ffae@@` -`class BSTEventSink`: VTable [0x0000000002E78EE8, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UEvent@BSCoreMessage@@@@` -`class BGSWarningsHandler::WarningsSink`: VTable [0x0000000002E78F08, 0x0000000000000000 offset, 2 functions] `.?AVWarningsSink@BGSWarningsHandler@@` -`class WindowLayout::ResizableObject`: VTable [0x0000000002E79C60, 0x0000000000000000 offset, 5 functions] `.?AVResizableObject@WindowLayout@@` -`class WindowLayout::Panel`: VTable [0x0000000002E79CA0, 0x0000000000000000 offset, 5 functions] `.?AVPanel@WindowLayout@@` -`class WindowLayout::SplitPanel`: VTable [0x0000000002E79CE0, 0x0000000000000000 offset, 5 functions] `.?AVSplitPanel@WindowLayout@@` -`class WindowLayout::`anonymous namespace'::ResizableControl`: VTable [0x0000000002E79D20, 0x0000000000000000 offset, 5 functions] `.?AVResizableControl@?A0x8eb5e3ad@WindowLayout@@` -`class ClientSite`: VTable [0x0000000002E79F30, 0x0000000000000000 offset, 9 functions] `.?AVClientSite@@` -`class ClientSite`: VTable [0x0000000002E79F90, 0x0000000000000008 offset, 15 functions] `.?AVClientSite@@` -`class BSMapBase`: VTable [0x0000000002E7AB90, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVBGSVoiceType@@PEAVFxPhonemeMap@FaceFXWrapper32@@@@` -`class BSScrapMap`: VTable [0x0000000002E7ABE0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@PEAVBGSVoiceType@@PEAVFxPhonemeMap@FaceFXWrapper32@@@@` -`class NiWindow`: VTable [0x0000000002E7B710, 0x0000000000000000 offset, 5 functions] `.?AVNiWindow@@` -`class BSTreeManager::IQueryCullingCamera`: VTable [0x0000000002E7B750, 0x0000000000000000 offset, 2 functions] `.?AVIQueryCullingCamera@BSTreeManager@@` -`class `anonymous namespace'::AppCullingCamera`: VTable [0x0000000002E7B800, 0x0000000000000000 offset, 2 functions] `.?AVAppCullingCamera@?A0x925061e1@@` -`class BSTEventSink`: VTable [0x0000000002E7C450, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UCellAttachDetachEvent@@@@` -`class `anonymous namespace'::CellAttachDetachHandler`: VTable [0x0000000002E7C470, 0x0000000000000000 offset, 2 functions] `.?AVCellAttachDetachHandler@?A0xbb6a3e13@@` -`class TESList`: VTable [0x0000000002E7CBD0, 0x0000000000000000 offset, 1 functions] `.?AVTESList@@` -`class TESFileList`: VTable [0x0000000002E7CBE8, 0x0000000000000000 offset, 1 functions] `.?AVTESFileList@@` -`class NiTLargeArray >`: VTable [0x0000000002E7CC00, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@PEAUFORMLISTITEM@@V?$NiTMallocInterface@PEAUFORMLISTITEM@@@@@@` -`class NiTLargePrimitiveArray`: VTable [0x0000000002E7CC18, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargePrimitiveArray@PEAUFORMLISTITEM@@@@` -`class TESFormList`: VTable [0x0000000002E7CC30, 0x0000000000000000 offset, 1 functions] `.?AVTESFormList@@` -`class BSStream`: VTable [0x0000000002E804C0, 0x0000000000000000 offset, 24 functions] `.?AVBSStream@@` -`class NiTMapBase >,char const * __ptr64,class Setting * __ptr64>`: VTable [0x0000000002E80670, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEBDPEAVSetting@@@@@@PEBDPEAVSetting@@@@` -`class NiTMap`: VTable [0x0000000002E806C0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEBDPEAVSetting@@@@` -`class NiTStringTemplateMap,class Setting * __ptr64>`: VTable [0x0000000002E80710, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTMap@PEBDPEAVSetting@@@@PEAVSetting@@@@` -`class NiTStringMap`: VTable [0x0000000002E80760, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringMap@PEAVSetting@@@@` -`class BSTCaseInsensitiveStringMap`: VTable [0x0000000002E807B0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCaseInsensitiveStringMap@PEAVSetting@@@@` -`class SettingCollectionMap`: VTable [0x0000000002E80800, 0x0000000000000000 offset, 11 functions] `.?AV?$SettingCollectionMap@VSetting@@@@` -`class GameSettingCollection`: VTable [0x0000000002E80878, 0x0000000000000000 offset, 12 functions] `.?AVGameSettingCollection@@` -`class GameSetting`: VTable [0x0000000002E808F8, 0x0000000000000000 offset, 2 functions] `.?AVGameSetting@@` -`class GameSetting`: VTable [0x0000000002E80918, 0x0000000000000018 offset, 103 functions] `.?AVGameSetting@@` -`class ATL::CComModule`: VTable [0x0000000002E81500, 0x0000000000000000 offset, 10 functions] `.?AVCComModule@ATL@@` -`class ATL::CRegObject`: VTable [0x0000000002E81610, 0x0000000000000000 offset, 6 functions] `.?AVCRegObject@ATL@@` -`class ATL::CComObject`: VTable [0x0000000002E81D38, 0x0000000000000000 offset, 4 functions] `.?AV?$CComObject@VCAxFrameWindow@ATL@@@ATL@@` -`class ATL::CComObject`: VTable [0x0000000002E81D68, 0x0000000000000048 offset, 15 functions] `.?AV?$CComObject@VCAxFrameWindow@ATL@@@ATL@@` -`class ATL::CComObject`: VTable [0x0000000002E81E08, 0x0000000000000000 offset, 4 functions] `.?AV?$CComObject@VCAxUIWindow@ATL@@@ATL@@` -`class ATL::CComObject`: VTable [0x0000000002E81E38, 0x0000000000000048 offset, 9 functions] `.?AV?$CComObject@VCAxUIWindow@ATL@@@ATL@@` -`class ATL::CComObject,class ATL::CComMultiThreadModel> >`: VTable [0x0000000002E81E98, 0x0000000000000000 offset, 8 functions] `.?AV?$CComObject@V?$CComEnum@UIEnumUnknown@@$1?_GUID_00000100_0000_0000_c000_000000000046@@3U__s_GUID@@BPEAUIUnknown@@V?$_CopyInterface@UIUnknown@@@ATL@@VCComMultiThreadModel@6@@ATL@@@ATL@@` -`class NiTMapBase >,unsigned int,unsigned int>`: VTable [0x0000000002E83D48, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@II@@@@II@@` -`class NiTMap`: VTable [0x0000000002E83D98, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@II@@` -`class ATL::CComContainedObject`: VTable [0x0000000002E84C88, 0x0000000000000000 offset, 5 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x0000000002E84CC8, 0x0000000000000048 offset, 11 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x0000000002E84D40, 0x0000000000000050 offset, 9 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x0000000002E84DA0, 0x0000000000000058 offset, 30 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x0000000002E84ED0, 0x0000000000000060 offset, 10 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x0000000002E84F40, 0x0000000000000068 offset, 6 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x0000000002E84F88, 0x0000000000000070 offset, 6 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x0000000002E84FD0, 0x0000000000000080 offset, 4 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x0000000002E85000, 0x0000000000000088 offset, 8 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x0000000002E85058, 0x0000000000000090 offset, 18 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComContainedObject`: VTable [0x0000000002E85110, 0x0000000000000098 offset, 36 functions] `.?AV?$CComContainedObject@VCAxHostWindow@ATL@@@ATL@@` -`class ATL::CComPolyObject`: VTable [0x0000000002E85278, 0x0000000000000000 offset, 4 functions] `.?AV?$CComPolyObject@VCAxHostWindow@ATL@@@ATL@@` -`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002E85378, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` -`class std::_Func_impl_no_alloc,void>`: VTable [0x0000000002E853C0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@X$$V@std@@` -`class DialogExtraWindowStartingRects`: VTable [0x0000000002E86830, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraWindowStartingRects@@` -`class CSScript::BaseDialog`: VTable [0x0000000002E87760, 0x0000000000000000 offset, 2 functions] `.?AVBaseDialog@CSScript@@` -`class CSScript::BaseModelessDialog`: VTable [0x0000000002E87780, 0x0000000000000000 offset, 2 functions] `.?AVBaseModelessDialog@CSScript@@` -`class CSScript::EmbeddedChildDialog`: VTable [0x0000000002E877A0, 0x0000000000000000 offset, 2 functions] `.?AVEmbeddedChildDialog@CSScript@@` -`class CSScript::VersionControlDlg`: VTable [0x0000000002E877C0, 0x0000000000000000 offset, 2 functions] `.?AVVersionControlDlg@CSScript@@` -`class NiTArray >`: VTable [0x0000000002E87FE0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVTESForm@@V?$NiTMallocInterface@PEAVTESForm@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000002E87FF8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVTESForm@@@@` -`class NiTLargeArray >`: VTable [0x0000000002E88D00, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@PEAUTEMP_DATA_BLOCK@@V?$NiTMallocInterface@PEAUTEMP_DATA_BLOCK@@@@@@` -`class NiTLargePrimitiveArray`: VTable [0x0000000002E88D18, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargePrimitiveArray@PEAUTEMP_DATA_BLOCK@@@@` -`class NiTMapBase >,class TESForm * __ptr64,class TESFile * __ptr64>`: VTable [0x0000000002E89AC0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESForm@@PEAVTESFile@@@@@@PEAVTESForm@@PEAVTESFile@@@@` -`class NiTMap`: VTable [0x0000000002E89B10, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESForm@@PEAVTESFile@@@@` -`class NiTMapBase >,class TESForm * __ptr64,unsigned int>`: VTable [0x0000000002E89D90, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESForm@@I@@@@PEAVTESForm@@I@@` -`class NiTMap`: VTable [0x0000000002E89DE0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESForm@@I@@` -`class NiTMapBase >,class TESObjectCELL * __ptr64,int>`: VTable [0x0000000002E8A2A8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESObjectCELL@@H@@@@PEAVTESObjectCELL@@H@@` -`class NiTMap`: VTable [0x0000000002E8A2F8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESObjectCELL@@H@@` -`class NiTMapBase >,class TESTopic * __ptr64,unsigned short>`: VTable [0x0000000002E8A760, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESTopic@@G@@@@PEAVTESTopic@@G@@` -`class NiTMap`: VTable [0x0000000002E8A7B0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESTopic@@G@@` -`class DialogExtraParam`: VTable [0x0000000002E8B430, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraParam@@` -`class DialogExtraLocalCopy`: VTable [0x0000000002E8B458, 0x0000000000000000 offset, 6 functions] `.?AVDialogExtraLocalCopy@@` -`class DialogExtraLocalReferenceCopy`: VTable [0x0000000002E8B4A0, 0x0000000000000000 offset, 6 functions] `.?AVDialogExtraLocalReferenceCopy@@` -`class DialogExtraLocalBaseObjectCopy`: VTable [0x0000000002E8B4E8, 0x0000000000000000 offset, 6 functions] `.?AVDialogExtraLocalBaseObjectCopy@@` -`class DialogExtraLocalBaseObjectExtraCopy`: VTable [0x0000000002E8B580, 0x0000000000000000 offset, 6 functions] `.?AVDialogExtraLocalBaseObjectExtraCopy@@` -`class DialogExtraColorControl`: VTable [0x0000000002E8B5C8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraColorControl@@` -`class DialogExtraSubWindow`: VTable [0x0000000002E8B5F0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraSubWindow@@` -`class DialogExtraConditionsDialog`: VTable [0x0000000002E8B618, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraConditionsDialog@@` -`class DialogExtraCurrCondItem`: VTable [0x0000000002E8B640, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraCurrCondItem@@` -`class DialogExtraWorkingData`: VTable [0x0000000002E8B668, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraWorkingData@@` -`class DialogExtraFactionData`: VTable [0x0000000002E8B690, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraFactionData@@` -`class DialogExtraReactionData`: VTable [0x0000000002E8B6B8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraReactionData@@` -`class DialogExtraQuestStageData`: VTable [0x0000000002E8B6E0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraQuestStageData@@` -`class DialogExtraPopupMenu`: VTable [0x0000000002E8B708, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraPopupMenu@@` -`class DialogExtraRefSelectControl`: VTable [0x0000000002E8B730, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraRefSelectControl@@` -`class DialogExtraPreviewControl`: VTable [0x0000000002E8B758, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraPreviewControl@@` -`class DialogExtraFreeformFaceControl`: VTable [0x0000000002E8B780, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraFreeformFaceControl@@` -`class DialogExtraDialogData`: VTable [0x0000000002E8B7A8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraDialogData@@` -`class DialogExtraNotifyInfo`: VTable [0x0000000002E8B7D0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraNotifyInfo@@` -`class DialogExtraTimer`: VTable [0x0000000002E8B7F8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraTimer@@` -`class DialogExtraRects`: VTable [0x0000000002E8B820, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraRects@@` -`class DialogExtraLinkedDlg`: VTable [0x0000000002E8B848, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraLinkedDlg@@` -`class DialogExtraQuestFilter`: VTable [0x0000000002E8B870, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraQuestFilter@@` -`class DialogExtraHavokAnimationPreview`: VTable [0x0000000002E8B898, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraHavokAnimationPreview@@` -`class DialogExtraNPCDlgData`: VTable [0x0000000002E8B8C0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraNPCDlgData@@` -`class DialogExtraNPCAnimationPreviewData`: VTable [0x0000000002E8B8E8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraNPCAnimationPreviewData@@` -`class DialogExtraScriptListDlg`: VTable [0x0000000002E8CDB8, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraScriptListDlg@@` -`class EnchantmentComboBoxValidationFunctor`: VTable [0x0000000002E8CDE0, 0x0000000000000000 offset, 1 functions] `.?AVEnchantmentComboBoxValidationFunctor@@` -`struct MiscStatManager::IMiscStatVisitor`: VTable [0x0000000002E8CDF8, 0x0000000000000000 offset, 1 functions] `.?AUIMiscStatVisitor@MiscStatManager@@` -`struct `anonymous namespace'::AddMiscStatToComboBoxFunc`: VTable [0x0000000002E8D798, 0x0000000000000000 offset, 1 functions] `.?AUAddMiscStatToComboBoxFunc@?A0xc87c678b@@` -`class IsValidEnchantmentForObjectFunctor`: VTable [0x0000000002E8D800, 0x0000000000000000 offset, 1 functions] `.?AVIsValidEnchantmentForObjectFunctor@@` -`struct `anonymous namespace'::ComboBoxObjectAdder`: VTable [0x0000000002E8D818, 0x0000000000000000 offset, 2 functions] `.?AUComboBoxObjectAdder@?A0xc87c678b@@` -`class NiTMapBase >,class TESQuest * __ptr64,unsigned int>`: VTable [0x0000000002E8DE98, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESQuest@@I@@@@PEAVTESQuest@@I@@` -`class NiTMap`: VTable [0x0000000002E8DEE8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESQuest@@I@@` -`class BSMapBase * __ptr64>`: VTable [0x0000000002E8DFD0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESActorBase@@PEAV?$BSMap@PEAVBGSEncounterZone@@PEAULvlActorUsage@?1??LeveledActorListDlgProc@@YA_JPEAUHWND__@@I_K_J@Z@@@@@` -`class BSMap * __ptr64>`: VTable [0x0000000002E8E020, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEAVTESActorBase@@PEAV?$BSMap@PEAVBGSEncounterZone@@PEAULvlActorUsage@?1??LeveledActorListDlgProc@@YA_JPEAUHWND__@@I_K_J@Z@@@@@` -`class BSMapBase`: VTable [0x0000000002E8E070, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVBGSEncounterZone@@PEAULvlActorUsage@?1??LeveledActorListDlgProc@@YA_JPEAUHWND__@@I_K_J@Z@@@` -`class BSMap`: VTable [0x0000000002E8E0C0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEAVBGSEncounterZone@@PEAULvlActorUsage@?1??LeveledActorListDlgProc@@YA_JPEAUHWND__@@I_K_J@Z@@@` -`class TESFormIDListView`: VTable [0x0000000002E8E1C0, 0x0000000000000000 offset, 103 functions] `.?AVTESFormIDListView@@` -`class bhkSerializable`: VTable [0x0000000002E8EA28, 0x0000000000000000 offset, 52 functions] `.?AVbhkSerializable@@` -`class bhkShape`: VTable [0x0000000002E8EC28, 0x0000000000000000 offset, 59 functions] `.?AVbhkShape@@` -`class bhkEntity`: VTable [0x0000000002E8EE68, 0x0000000000000000 offset, 55 functions] `.?AVbhkEntity@@` -`class TESPreviewControl`: VTable [0x0000000002E8F088, 0x0000000000000000 offset, 12 functions] `.?AVTESPreviewControl@@` -`class bhkRigidBody`: VTable [0x0000000002E8F108, 0x0000000000000000 offset, 65 functions] `.?AVbhkRigidBody@@` -`class bhkCollisionObject`: VTable [0x0000000002E8F388, 0x0000000000000000 offset, 52 functions] `.?AVbhkCollisionObject@@` -`class bhkSphereRepShape`: VTable [0x0000000002E8F588, 0x0000000000000000 offset, 59 functions] `.?AVbhkSphereRepShape@@` -`class bhkConvexShape`: VTable [0x0000000002E8F7C8, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexShape@@` -`class bhkBoxShape`: VTable [0x0000000002E8FA08, 0x0000000000000000 offset, 59 functions] `.?AVbhkBoxShape@@` -`class BSLightingShaderMaterial`: VTable [0x0000000002E8FC48, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterial@@` -`class hkBaseObject`: VTable [0x0000000002E90480, 0x0000000000000000 offset, 1 functions] `.?AVhkBaseObject@@` -`class hkReferencedObject`: VTable [0x0000000002E90498, 0x0000000000000000 offset, 3 functions] `.?AVhkReferencedObject@@` -`class hkpWorldCinfo`: VTable [0x0000000002E904C0, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldCinfo@@` -`class hkpEntityListener`: VTable [0x0000000002E904E8, 0x0000000000000000 offset, 6 functions] `.?AVhkpEntityListener@@` -`class TESRenderControl`: VTable [0x0000000002E90530, 0x0000000000000000 offset, 10 functions] `.?AVTESRenderControl@@` -`class TESWindListener`: VTable [0x0000000002E905A0, 0x0000000000000000 offset, 11 functions] `.?AVTESWindListener@@` -`class HavokAnimationPreviewContainer`: VTable [0x0000000002E90958, 0x0000000000000000 offset, 1 functions] `.?AVHavokAnimationPreviewContainer@@` -`class HavokAnimationPreviewControl`: VTable [0x0000000002E90B40, 0x0000000000000000 offset, 1 functions] `.?AVHavokAnimationPreviewControl@@` -`class BaseFormComponent`: VTable [0x0000000002E91730, 0x0000000000000000 offset, 14 functions] `.?AVBaseFormComponent@@` -`class TESFullName`: VTable [0x0000000002E917C0, 0x0000000000000000 offset, 16 functions] `.?AVTESFullName@@` -`class ActorValueInfo`: VTable [0x0000000002E91868, 0x0000000000000000 offset, 103 functions] `.?AVActorValueInfo@@` -`class ActorValueInfo`: VTable [0x0000000002E91C50, 0x0000000000000028 offset, 16 functions] `.?AVActorValueInfo@@` -`class ActorValueInfo`: VTable [0x0000000002E91CF8, 0x0000000000000040 offset, 14 functions] `.?AVActorValueInfo@@` -`class ActorValueInfo`: VTable [0x0000000002E91D88, 0x0000000000000068 offset, 20 functions] `.?AVActorValueInfo@@` -`class `anonymous namespace'::ActorValueFormFactory`: VTable [0x0000000002E91E70, 0x0000000000000000 offset, 7 functions] `.?AVActorValueFormFactory@?A0xe6d6533e@@` -`class CSScript::SavePatcher`: VTable [0x0000000002E92DC8, 0x0000000000000000 offset, 2 functions] `.?AVSavePatcher@CSScript@@` -`class IAIWorldLocation`: VTable [0x0000000002E935E8, 0x0000000000000000 offset, 20 functions] `.?AVIAIWorldLocation@@` -`class BGSAIWorldLocation`: VTable [0x0000000002E936B8, 0x0000000000000000 offset, 20 functions] `.?AVBGSAIWorldLocation@@` -`class BGSTypedItem`: VTable [0x0000000002E93788, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSAIWorldLocationRefRadius@@VBGSAIWorldLocation@@@@` -`class BGSAIWorldLocationRefRadius`: VTable [0x0000000002E93858, 0x0000000000000000 offset, 20 functions] `.?AVBGSAIWorldLocationRefRadius@@` -`class BGSTypedItem`: VTable [0x0000000002E93928, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSAIWorldLocationPointRadius@@VBGSAIWorldLocation@@@@` -`class BGSAIWorldLocationPointRadius`: VTable [0x0000000002E939F8, 0x0000000000000000 offset, 20 functions] `.?AVBGSAIWorldLocationPointRadius@@` -`class BGSTypedItem`: VTable [0x0000000002E93AC8, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSAIWorldLocationInteriorCell@@VBGSAIWorldLocation@@@@` -`class BGSAIWorldLocationInteriorCell`: VTable [0x0000000002E93B98, 0x0000000000000000 offset, 20 functions] `.?AVBGSAIWorldLocationInteriorCell@@` -`class BGSAttackData`: VTable [0x0000000002E94100, 0x0000000000000000 offset, 2 functions] `.?AVBGSAttackData@@` -`class BGSAttackDataMap`: VTable [0x0000000002E94120, 0x0000000000000000 offset, 2 functions] `.?AVBGSAttackDataMap@@` -`class BGSPackageDataList`: VTable [0x0000000002E953B8, 0x0000000000000000 offset, 5 functions] `.?AVBGSPackageDataList@@` -`class IPackageData`: VTable [0x0000000002E95CA0, 0x0000000000000000 offset, 16 functions] `.?AVIPackageData@@` -`class IAIWorldLocationHandle`: VTable [0x0000000002E95D48, 0x0000000000000000 offset, 3 functions] `.?AVIAIWorldLocationHandle@@` -`class IPackageDataAIWorldLocationHandle`: VTable [0x0000000002E95D80, 0x0000000000000000 offset, 3 functions] `.?AVIPackageDataAIWorldLocationHandle@@` -`class IPackageDataAIWorldLocationHandle`: VTable [0x0000000002E95DA8, 0x0000000000000008 offset, 16 functions] `.?AVIPackageDataAIWorldLocationHandle@@` -`class IAITarget`: VTable [0x0000000002E95E50, 0x0000000000000000 offset, 11 functions] `.?AVIAITarget@@` -`class IAITarget`: VTable [0x0000000002E95EC8, 0x0000000000000008 offset, 16 functions] `.?AVIAITarget@@` -`class BGSNamedPackageData`: VTable [0x0000000002E95F70, 0x0000000000000000 offset, 16 functions] `.?AV?$BGSNamedPackageData@VIPackageData@@@@` -`class BGSPackageDataBool`: VTable [0x0000000002E96018, 0x0000000000000000 offset, 16 functions] `.?AVBGSPackageDataBool@@` -`class BGSPackageDataBasicTemplate`: VTable [0x0000000002E960C0, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataBasicTemplate@VIPackageData@@M$1?kPackageDataFloatTypeName@@3VBSFixedString@@B$1?fPackageDataFloatDefault@@3MB@@` -`class BGSPackageDataSaveableTemplate`: VTable [0x0000000002E96178, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataSaveableTemplate@VIPackageData@@M$1?kPackageDataFloatTypeName@@3VBSFixedString@@B$1?fPackageDataFloatDefault@@3MB@@` -`class BGSPackageDataFloat`: VTable [0x0000000002E96230, 0x0000000000000000 offset, 18 functions] `.?AVBGSPackageDataFloat@@` -`class BGSPackageDataBasicTemplate`: VTable [0x0000000002E962E8, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataBasicTemplate@VIPackageData@@H$1?kPackageDataIntTypeName@@3VBSFixedString@@B$1?iPackageDataIntDefault@@3HB@@` -`class BGSPackageDataSaveableTemplate`: VTable [0x0000000002E963A0, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataSaveableTemplate@VIPackageData@@H$1?kPackageDataIntTypeName@@3VBSFixedString@@B$1?iPackageDataIntDefault@@3HB@@` -`class BGSPackageDataInt`: VTable [0x0000000002E96458, 0x0000000000000000 offset, 18 functions] `.?AVBGSPackageDataInt@@` -`class BGSNamedPackageData`: VTable [0x0000000002E96510, 0x0000000000000000 offset, 11 functions] `.?AV?$BGSNamedPackageData@VIAITarget@@@@` -`class BGSNamedPackageData`: VTable [0x0000000002E96588, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSNamedPackageData@VIAITarget@@@@` -`class BGSPackageDataBasicTemplate >,&class BSFixedString const kPackageDataRefTypeName,0>`: VTable [0x0000000002E96630, 0x0000000000000000 offset, 13 functions] `.?AV?$BGSPackageDataBasicTemplate@VIAITarget@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@$1?kPackageDataRefTypeName@@3VBSFixedString@@B$0A@@@` -`class BGSPackageDataBasicTemplate >,&class BSFixedString const kPackageDataRefTypeName,0>`: VTable [0x0000000002E966B8, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSPackageDataBasicTemplate@VIAITarget@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@$1?kPackageDataRefTypeName@@3VBSFixedString@@B$0A@@@` -`class BGSPackageDataRefOLD`: VTable [0x0000000002E96760, 0x0000000000000000 offset, 13 functions] `.?AVBGSPackageDataRefOLD@@` -`class BGSPackageDataRefOLD`: VTable [0x0000000002E967E8, 0x0000000000000008 offset, 16 functions] `.?AVBGSPackageDataRefOLD@@` -`class BGSNamedPackageData`: VTable [0x0000000002E96890, 0x0000000000000000 offset, 3 functions] `.?AV?$BGSNamedPackageData@VIPackageDataAIWorldLocationHandle@@@@` -`class BGSNamedPackageData`: VTable [0x0000000002E968B8, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSNamedPackageData@VIPackageDataAIWorldLocationHandle@@@@` -`class BGSPackageDataPointerTemplate`: VTable [0x0000000002E96960, 0x0000000000000000 offset, 5 functions] `.?AV?$BGSPackageDataPointerTemplate@VIPackageDataAIWorldLocationHandle@@VPackageLocation@@$1?kPackageDataLocationTypeName@@3VBSFixedString@@B@@` -`class BGSPackageDataPointerTemplate`: VTable [0x0000000002E969A0, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSPackageDataPointerTemplate@VIPackageDataAIWorldLocationHandle@@VPackageLocation@@$1?kPackageDataLocationTypeName@@3VBSFixedString@@B@@` -`class BGSPackageDataLocation`: VTable [0x0000000002E96A48, 0x0000000000000000 offset, 5 functions] `.?AVBGSPackageDataLocation@@` -`class BGSPackageDataLocation`: VTable [0x0000000002E96A88, 0x0000000000000008 offset, 16 functions] `.?AVBGSPackageDataLocation@@` -`class BGSPackageDataPointerTemplate`: VTable [0x0000000002E96B30, 0x0000000000000000 offset, 18 functions] `.?AV?$BGSPackageDataPointerTemplate@VIPackageData@@VPackageTarget@@$1?kPackageDataTargetSelectorTypeName@@3VBSFixedString@@B@@` -`class BGSPackageDataTargetSelector`: VTable [0x0000000002E96BE8, 0x0000000000000000 offset, 18 functions] `.?AVBGSPackageDataTargetSelector@@` -`struct IBSTCreator`: VTable [0x0000000002E96F20, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIPackageData@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E96F48, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataLocation@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E96F70, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataLocation@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E96F98, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataLocation@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E96FC0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataTargetSelector@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E96FE8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataTargetSelector@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E97010, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataTargetSelector@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E97038, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataRefOLD@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E97060, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataRefOLD@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E97088, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataRefOLD@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E970B0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataFloat@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E970D8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataFloat@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E97100, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataFloat@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E97128, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataInt@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E97150, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataInt@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E97178, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataInt@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E971A0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataBool@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E971C8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataBool@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E971F0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataBool@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`class ObjectListItem`: VTable [0x0000000002E978C8, 0x0000000000000000 offset, 11 functions] `.?AVObjectListItem@@` -`class ObjectListItem`: VTable [0x0000000002E97940, 0x0000000000000008 offset, 16 functions] `.?AVObjectListItem@@` -`class BGSPackageDataObjectList`: VTable [0x0000000002E979E8, 0x0000000000000000 offset, 11 functions] `.?AVBGSPackageDataObjectList@@` -`class BGSPackageDataObjectList`: VTable [0x0000000002E97A60, 0x0000000000000008 offset, 16 functions] `.?AVBGSPackageDataObjectList@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E97BB8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataObjectList@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E97BE0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataObjectList@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E97C08, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataObjectList@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`class BGSPackageDataPointerTemplate`: VTable [0x0000000002E97DE0, 0x0000000000000000 offset, 13 functions] `.?AV?$BGSPackageDataPointerTemplate@VIAITarget@@VPackageTarget@@$1?kPackageDataRef2TypeName@@3VBSFixedString@@B@@` -`class BGSPackageDataPointerTemplate`: VTable [0x0000000002E97E68, 0x0000000000000008 offset, 16 functions] `.?AV?$BGSPackageDataPointerTemplate@VIAITarget@@VPackageTarget@@$1?kPackageDataRef2TypeName@@3VBSFixedString@@B@@` -`class BGSPackageDataRef`: VTable [0x0000000002E97F10, 0x0000000000000000 offset, 13 functions] `.?AVBGSPackageDataRef@@` -`class BGSPackageDataRef`: VTable [0x0000000002E97F98, 0x0000000000000008 offset, 16 functions] `.?AVBGSPackageDataRef@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E980F8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataRef@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E98120, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataRef@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E98148, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataRef@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`class BGSPackageDataTopic`: VTable [0x0000000002E98260, 0x0000000000000000 offset, 16 functions] `.?AVBGSPackageDataTopic@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E98308, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSPackageDataTopic@@VIPackageData@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E98330, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSPackageDataTopic@@VIPackageData@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E98358, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSPackageDataTopic@@V?$BSTCreateFactoryManager@VBSFixedString@@VIPackageData@@$0BAA@@@@@` -`class IProcedureTreeExecState`: VTable [0x0000000002E99868, 0x0000000000000000 offset, 6 functions] `.?AVIProcedureTreeExecState@@` -`class IProcedureTreeItem`: VTable [0x0000000002E998B0, 0x0000000000000000 offset, 19 functions] `.?AVIProcedureTreeItem@@` -`class BGSTypedItem`: VTable [0x0000000002E99970, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureDoneExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureDoneExecState`: VTable [0x0000000002E999B8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureDoneExecState@@` -`class BGSProcedureTreeConditionalItem`: VTable [0x0000000002E99A00, 0x0000000000000000 offset, 19 functions] `.?AVBGSProcedureTreeConditionalItem@@` -`class BGSProcedureTreeBranch`: VTable [0x0000000002E99AC0, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeBranch@@` -`class BGSProcedureTreeOneChildExecState`: VTable [0x0000000002E99B90, 0x0000000000000000 offset, 7 functions] `.?AVBGSProcedureTreeOneChildExecState@@` -`class BGSTypedItem`: VTable [0x0000000002E99BE0, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeSequence@@VBGSProcedureTreeBranch@@@@` -`class BGSProcedureTreeSequence`: VTable [0x0000000002E99CB0, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeSequence@@` -`class BGSTypedItem`: VTable [0x0000000002E99D80, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeSequenceExecState@@VBGSProcedureTreeOneChildExecState@@@@` -`class BGSProcedureTreeSequenceExecState`: VTable [0x0000000002E99DD0, 0x0000000000000000 offset, 7 functions] `.?AVBGSProcedureTreeSequenceExecState@@` -`class BGSTypedItem`: VTable [0x0000000002E99E20, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeStacked@@VBGSProcedureTreeBranch@@@@` -`class BGSProcedureTreeStacked`: VTable [0x0000000002E99EF0, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeStacked@@` -`class BGSTypedItem`: VTable [0x0000000002E99FC0, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeStackedExecState@@VBGSProcedureTreeOneChildExecState@@@@` -`class BGSProcedureTreeStackedExecState`: VTable [0x0000000002E9A010, 0x0000000000000000 offset, 7 functions] `.?AVBGSProcedureTreeStackedExecState@@` -`class BGSTypedItem`: VTable [0x0000000002E9A060, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeSimultaneous@@VBGSProcedureTreeBranch@@@@` -`class BGSProcedureTreeSimultaneous`: VTable [0x0000000002E9A130, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeSimultaneous@@` -`class BGSTypedItem`: VTable [0x0000000002E9A200, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeSimultaneousExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureTreeSimultaneousExecState`: VTable [0x0000000002E9A248, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureTreeSimultaneousExecState@@` -`class BGSTypedItem`: VTable [0x0000000002E9A290, 0x0000000000000000 offset, 20 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeRandom@@VBGSProcedureTreeBranch@@@@` -`class BGSProcedureTreeRandom`: VTable [0x0000000002E9A360, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeRandom@@` -`class BGSTypedItem`: VTable [0x0000000002E9A430, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeRandomExecState@@VBGSProcedureTreeOneChildExecState@@@@` -`class BGSProcedureTreeRandomExecState`: VTable [0x0000000002E9A480, 0x0000000000000000 offset, 7 functions] `.?AVBGSProcedureTreeRandomExecState@@` -`class BGSTypedItem`: VTable [0x0000000002E9A570, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureDialogueExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureDialogueExecState`: VTable [0x0000000002E9A5B8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureDialogueExecState@@` -`class BGSTypedItem`: VTable [0x0000000002E9A600, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureEatExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureEatExecState`: VTable [0x0000000002E9A648, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureEatExecState@@` -`class BGSTypedItem`: VTable [0x0000000002E9A690, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureFindExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureFindExecState`: VTable [0x0000000002E9A6D8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureFindExecState@@` -`class BGSTypedItem`: VTable [0x0000000002E9A720, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureGuardExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureGuardExecState`: VTable [0x0000000002E9A768, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureGuardExecState@@` -`class BGSTypedItem`: VTable [0x0000000002E9A7B0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureHoldPositionExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureHoldPositionExecState`: VTable [0x0000000002E9A7F8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureHoldPositionExecState@@` -`class BGSTypedItem`: VTable [0x0000000002E9A840, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureKeepAnEyeOnExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureKeepAnEyeOnExecState`: VTable [0x0000000002E9A888, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureKeepAnEyeOnExecState@@` -`class BGSTypedItem`: VTable [0x0000000002E9A8D0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureSayExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureSayExecState`: VTable [0x0000000002E9A918, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureSayExecState@@` -`class BGSTypedItem`: VTable [0x0000000002E9A960, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureWaitExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureWaitExecState`: VTable [0x0000000002E9A9A8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureWaitExecState@@` -`struct IBSTCreator`: VTable [0x0000000002E9A9F0, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIAIWorldLocation@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9AA18, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSAIWorldLocationRefRadius@@VIAIWorldLocation@@@@` -`class AutoRegisterFactory,class BGSAIWorldLocationFactory>`: VTable [0x0000000002E9AA40, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSAIWorldLocationRefRadius@@VIAIWorldLocation@@@@VBGSAIWorldLocationFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9AA68, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSAIWorldLocationRefRadius@@VBGSAIWorldLocationFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9AA90, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSAIWorldLocationPointRadius@@VIAIWorldLocation@@@@` -`class AutoRegisterFactory,class BGSAIWorldLocationFactory>`: VTable [0x0000000002E9AAB8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSAIWorldLocationPointRadius@@VIAIWorldLocation@@@@VBGSAIWorldLocationFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9AAE0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSAIWorldLocationPointRadius@@VBGSAIWorldLocationFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9AB08, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSAIWorldLocationInteriorCell@@VIAIWorldLocation@@@@` -`class AutoRegisterFactory,class BGSAIWorldLocationFactory>`: VTable [0x0000000002E9AB30, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSAIWorldLocationInteriorCell@@VIAIWorldLocation@@@@VBGSAIWorldLocationFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9AB58, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSAIWorldLocationInteriorCell@@VBGSAIWorldLocationFactory@@@@` -`struct IBSTCreator`: VTable [0x0000000002E9AB80, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIProcedureTreeItem@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9ABA8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeProcedure@@VIProcedureTreeItem@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9ABD0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeProcedure@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9ABF8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeProcedure@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9AC20, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeSequence@@VIProcedureTreeItem@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9AC48, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeSequence@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9AC70, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeSequence@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9AC98, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeStacked@@VIProcedureTreeItem@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9ACC0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeStacked@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9ACE8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeStacked@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9AD10, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeSimultaneous@@VIProcedureTreeItem@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9AD38, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeSimultaneous@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9AD60, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeSimultaneous@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9AD88, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeRandom@@VIProcedureTreeItem@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9ADB0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeRandom@@VIProcedureTreeItem@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9ADD8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeRandom@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedureTreeItem@@$0CA@@@@@` -`struct IBSTCreator`: VTable [0x0000000002E9AE00, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIProcedureTreeExecState@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9AE28, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeSequenceExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9AE50, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeSequenceExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9AE78, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeSequenceExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9AEA0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeStackedExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9AEC8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeStackedExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9AEF0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeStackedExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9AF18, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeSimultaneousExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9AF40, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeSimultaneousExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9AF68, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeSimultaneousExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9AF90, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTreeRandomExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9AFB8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTreeRandomExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9AFE0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTreeRandomExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B008, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureAcquireExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B030, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureAcquireExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B058, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureAcquireExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B080, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureActivateExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B0A8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureActivateExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B0D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureActivateExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B0F8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDialogueActivateExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B120, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDialogueActivateExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B148, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDialogueActivateExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B170, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDialogueExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B198, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDialogueExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B1C0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDialogueExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B1E8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDoneExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B210, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDoneExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B238, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDoneExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B260, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureEatExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B288, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureEatExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B2B0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureEatExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B2D8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureEscortExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B300, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureEscortExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B328, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureEscortExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B350, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFindExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B378, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFindExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B3A0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFindExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B3C8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFleeExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B3F0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFleeExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B418, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFleeExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B440, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFlightGrabExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B468, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFlightGrabExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B490, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFlightGrabExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B4B8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFollowExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B4E0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFollowExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B508, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFollowExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B530, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureGuardExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B558, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureGuardExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B580, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureGuardExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B5A8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureHoldPositionExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B5D0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureHoldPositionExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B5F8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureHoldPositionExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B620, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureHoverExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B648, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureHoverExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B670, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureHoverExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B698, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureKeepAnEyeOnExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B6C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureKeepAnEyeOnExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B6E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureKeepAnEyeOnExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B710, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureLockUnlockExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B738, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureLockUnlockExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B760, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureLockUnlockExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B788, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureOrbitExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B7B0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureOrbitExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B7D8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureOrbitExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B800, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedurePatrolExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B828, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedurePatrolExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B850, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedurePatrolExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B878, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSandboxExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B8A0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSandboxExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B8C8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSandboxExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B8F0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSayExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B918, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSayExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B940, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSayExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B968, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureShoutExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9B990, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureShoutExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9B9B8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureShoutExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9B9E0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSitSleepExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9BA08, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSitSleepExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9BA30, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSitSleepExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9BA58, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTravelExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9BA80, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTravelExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9BAA8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTravelExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9BAD0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseIdleMarkerExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9BAF8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseIdleMarkerExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9BB20, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseIdleMarkerExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9BB48, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseMagicExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9BB70, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseMagicExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9BB98, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseMagicExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9BBC0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseWeaponExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9BBE8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseWeaponExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9BC10, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseWeaponExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9BC38, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureWaitExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9BC60, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureWaitExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9BC88, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureWaitExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9BCB0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureWanderExecState@@VIProcedureTreeExecState@@@@` -`class AutoRegisterFactory,class BGSProcedureTreeExecStateFactory>`: VTable [0x0000000002E9BCD8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureWanderExecState@@VIProcedureTreeExecState@@@@VBGSProcedureTreeExecStateFactory@@@@` -`struct AutoRegisterCreator`: VTable [0x0000000002E9BD00, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureWanderExecState@@VBGSProcedureTreeExecStateFactory@@@@` -`class IProcedure`: VTable [0x0000000002E9C218, 0x0000000000000000 offset, 32 functions] `.?AVIProcedure@@` -`class BGSProcedureBase`: VTable [0x0000000002E9C358, 0x0000000000000000 offset, 34 functions] `.?AVBGSProcedureBase@@` -`class BGSProcedureTyped`: VTable [0x0000000002E9C4A8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureDoneParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureDone`: VTable [0x0000000002E9C608, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureDone@@` -`struct IBSTCreator`: VTable [0x0000000002E9C768, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VIProcedure@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9C790, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDone@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9C7B8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDone@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9C7E0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDone@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class IPackageDataTypeCheck`: VTable [0x0000000002E9CD80, 0x0000000000000000 offset, 4 functions] `.?AVIPackageDataTypeCheck@@` -`class BGSProcedureTyped`: VTable [0x0000000002E9CDB0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureAcquireParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureAcquire`: VTable [0x0000000002E9CF10, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureAcquire@@` -`class BGSTypedItem`: VTable [0x0000000002E9D070, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureAcquireExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureAcquireExecState`: VTable [0x0000000002E9D0B8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureAcquireExecState@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000002E9D100, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIAITarget@@VBGSPackageDataRef@@@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000002E9D130, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataInt@@V1@@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000002E9D160, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataBool@@V1@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9D1D8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureAcquire@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9D200, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureAcquire@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9D228, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureAcquire@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002E9D340, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureActivateParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureActivate`: VTable [0x0000000002E9D4A0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureActivate@@` -`class BGSTypedItem`: VTable [0x0000000002E9D600, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureActivateExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureActivateExecState`: VTable [0x0000000002E9D648, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureActivateExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9D6A0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureActivate@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9D6C8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureActivate@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9D6F0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureActivate@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002E9D818, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureDialogueParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureDialogue`: VTable [0x0000000002E9D978, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureDialogue@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000002E9DAD8, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataTopic@@V1@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9DB40, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDialogue@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9DB68, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDialogue@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9DB90, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDialogue@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002E9DD18, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureDialogueActivateParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureDialogueActivate`: VTable [0x0000000002E9DE78, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureDialogueActivate@@` -`class BGSTypedItem`: VTable [0x0000000002E9DFD8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureDialogueActivateExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureDialogueActivateExecState`: VTable [0x0000000002E9E020, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureDialogueActivateExecState@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000002E9E068, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIPackageDataAIWorldLocationHandle@@VBGSPackageDataLocation@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9E098, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureDialogueActivate@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9E0C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureDialogueActivate@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9E0E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureDialogueActivate@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002E9E250, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureEatParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureEat`: VTable [0x0000000002E9E3B0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureEat@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000002E9E510, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataTargetSelector@@V1@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9E558, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureEat@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9E580, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureEat@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9E5A8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureEat@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002E9E780, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureEscortParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureEscort`: VTable [0x0000000002E9E8E0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureEscort@@` -`class BGSTypedItem`: VTable [0x0000000002E9EA40, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureEscortExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureEscortExecState`: VTable [0x0000000002E9EA88, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureEscortExecState@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000002E9EAD0, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIAITarget@@VBGSPackageDataObjectList@@@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000002E9EB00, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataFloat@@V1@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9EBD8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureEscort@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9EC00, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureEscort@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9EC28, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureEscort@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002E9ED68, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFindParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureFind`: VTable [0x0000000002E9EEC8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFind@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000002E9F028, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VBGSPackageDataObjectList@@V1@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9F080, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFind@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9F0A8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFind@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9F0D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFind@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002E9F268, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFleeParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureFlee`: VTable [0x0000000002E9F3C8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFlee@@` -`class BGSTypedItem`: VTable [0x0000000002E9F528, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureFleeExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureFleeExecState`: VTable [0x0000000002E9F570, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureFleeExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9F650, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFlee@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9F678, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFlee@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9F6A0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFlee@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002E9F7B8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFlightGrabParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureFlightGrab`: VTable [0x0000000002E9F918, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFlightGrab@@` -`class BGSTypedItem`: VTable [0x0000000002E9FA78, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureFlightGrabExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureFlightGrabExecState`: VTable [0x0000000002E9FAC0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureFlightGrabExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002E9FB28, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFlightGrab@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002E9FB50, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFlightGrab@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002E9FB78, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFlightGrab@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002E9FD60, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFollowParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureFollow`: VTable [0x0000000002E9FEC0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFollow@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA0020, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureFollowToParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureFollowTo`: VTable [0x0000000002EA0180, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureFollowTo@@` -`class BGSTypedItem`: VTable [0x0000000002EA02E0, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureFollowExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureFollowExecState`: VTable [0x0000000002EA0328, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureFollowExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA03B8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFollow@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA03E0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFollow@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA0408, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFollow@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000002EA0430, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIPackageDataAIWorldLocationHandle@@VBGSPackageDataRef@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA0470, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureFollowTo@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA0498, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureFollowTo@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA04C0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureFollowTo@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA0598, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureForceGreetParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureForceGreet`: VTable [0x0000000002EA06F8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureForceGreet@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA0890, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureForceGreet@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA08B8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureForceGreet@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA08E0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureForceGreet@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA0A00, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureGuardParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureGuard`: VTable [0x0000000002EA0B60, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureGuard@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA0D08, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureGuard@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA0D30, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureGuard@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA0D58, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureGuard@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA0E40, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureHoldPositionParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureHoldPosition`: VTable [0x0000000002EA0FA0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureHoldPosition@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA1100, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureHoldPosition@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA1128, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureHoldPosition@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA1150, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureHoldPosition@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA1280, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureHoverParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureHover`: VTable [0x0000000002EA13E0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureHover@@` -`class BGSTypedItem`: VTable [0x0000000002EA1540, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureHoverExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureHoverExecState`: VTable [0x0000000002EA1588, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureHoverExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA15D8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureHover@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA1600, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureHover@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA1628, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureHover@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA1728, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureKeepAnEyeOnParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureKeepAnEyeOn`: VTable [0x0000000002EA1888, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureKeepAnEyeOn@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA1A18, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureKeepAnEyeOn@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA1A40, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureKeepAnEyeOn@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA1A68, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureKeepAnEyeOn@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA1BE0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureLockParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureLock`: VTable [0x0000000002EA1D40, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureLock@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA1EA0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureUnlockParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureUnlock`: VTable [0x0000000002EA2000, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureUnlock@@` -`class BGSTypedItem`: VTable [0x0000000002EA2160, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureLockUnlockExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureLockUnlockExecState`: VTable [0x0000000002EA21A8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureLockUnlockExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA2208, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureLock@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA2230, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureLock@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA2258, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureLock@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA2290, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUnlock@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA22B8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUnlock@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA22E0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUnlock@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA2408, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureOrbitParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureOrbit`: VTable [0x0000000002EA2568, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureOrbit@@` -`class BGSTypedItem`: VTable [0x0000000002EA26C8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureOrbitExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureOrbitExecState`: VTable [0x0000000002EA2710, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureOrbitExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA27E8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureOrbit@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA2810, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureOrbit@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA2838, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureOrbit@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA2978, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedurePatrolParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedurePatrol`: VTable [0x0000000002EA2AD8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedurePatrol@@` -`class BGSTypedItem`: VTable [0x0000000002EA2C38, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedurePatrolExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedurePatrolExecState`: VTable [0x0000000002EA2C80, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedurePatrolExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA2D10, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedurePatrol@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA2D38, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedurePatrol@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA2D60, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedurePatrol@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA2E60, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedurePursueParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedurePursue`: VTable [0x0000000002EA2FC0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedurePursue@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA3160, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedurePursue@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA3188, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedurePursue@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA31B0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedurePursue@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA3470, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureSandboxParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureSandbox`: VTable [0x0000000002EA35D0, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureSandbox@@` -`class BGSTypedItem`: VTable [0x0000000002EA3730, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureSandboxExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureSandboxExecState`: VTable [0x0000000002EA3778, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureSandboxExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA3888, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSandbox@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA38B0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSandbox@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA38D8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSandbox@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA39D0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureSayParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureSay`: VTable [0x0000000002EA3B30, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureSay@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA3C90, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSay@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA3CB8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSay@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA3CE0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSay@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA5E78, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureShoutParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureShout`: VTable [0x0000000002EA5FD8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureShout@@` -`class BGSTypedItem`: VTable [0x0000000002EA6138, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureShoutExecState@@VIProcedureTreeExecState@@@@` -`class BSTEventSink`: VTable [0x0000000002EA6180, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UTESSpellCastEvent@@@@` -`class BGSProcedureShoutExecState`: VTable [0x0000000002EA61A0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureShoutExecState@@` -`class BGSProcedureShoutExecState`: VTable [0x0000000002EA61E8, 0x0000000000000008 offset, 2 functions] `.?AVBGSProcedureShoutExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA6230, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureShout@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA6258, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureShout@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA6280, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureShout@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA6438, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureSitParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureSit`: VTable [0x0000000002EA6598, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureSit@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA66F8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureSleepParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureSleep`: VTable [0x0000000002EA6858, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureSleep@@` -`class BGSTypedItem`: VTable [0x0000000002EA69B8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureSitSleepExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureSitSleepExecState`: VTable [0x0000000002EA6A00, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureSitSleepExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA6A48, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSit@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA6A70, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSit@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA6A98, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSit@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA6AC0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureSleep@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA6AE8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureSleep@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA6B10, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureSleep@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA6C28, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureTravelParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureTravel`: VTable [0x0000000002EA6D88, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureTravel@@` -`class BGSTypedItem`: VTable [0x0000000002EA6EE8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureTravelExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureTravelExecState`: VTable [0x0000000002EA6F30, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureTravelExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA6F78, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureTravel@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA6FA0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureTravel@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA6FC8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureTravel@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSTypedItem`: VTable [0x0000000002EA7180, 0x0000000000000000 offset, 19 functions] `.?AV?$BGSTypedItem@VBGSProcedureTreeProcedure@@VBGSProcedureTreeConditionalItem@@@@` -`class BGSProcedureTreeProcedure`: VTable [0x0000000002EA7240, 0x0000000000000000 offset, 20 functions] `.?AVBGSProcedureTreeProcedure@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA76A0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureUseIdleMarkerParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureUseIdleMarker`: VTable [0x0000000002EA7800, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureUseIdleMarker@@` -`class BGSTypedItem`: VTable [0x0000000002EA7960, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureUseIdleMarkerExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureUseIdleMarkerExecState`: VTable [0x0000000002EA79A8, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureUseIdleMarkerExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA79F0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseIdleMarker@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA7A18, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseIdleMarker@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA7A40, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseIdleMarker@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA7C88, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureUseMagicParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureUseMagic`: VTable [0x0000000002EA7DE8, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureUseMagic@@` -`class BGSTypedItem`: VTable [0x0000000002EA7F48, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureUseMagicExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureUseMagicExecState`: VTable [0x0000000002EA7F90, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureUseMagicExecState@@` -`class BGSProcedureUseMagicExecState`: VTable [0x0000000002EA7FD8, 0x0000000000000008 offset, 2 functions] `.?AVBGSProcedureUseMagicExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA8078, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseMagic@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA80A0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseMagic@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA80C8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseMagic@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA83E8, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureUseWeaponParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureUseWeapon`: VTable [0x0000000002EA8548, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureUseWeapon@@` -`class BGSTypedItem`: VTable [0x0000000002EA86A8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureUseWeaponExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureUseWeaponExecState`: VTable [0x0000000002EA86F0, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureUseWeaponExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA8868, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureUseWeapon@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA8890, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureUseWeapon@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA88B8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureUseWeapon@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA89B0, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureWaitParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureWait`: VTable [0x0000000002EA8B10, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureWait@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA8C80, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureWait@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA8CA8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureWait@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA8CD0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureWait@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class BGSProcedureTyped`: VTable [0x0000000002EA8E18, 0x0000000000000000 offset, 35 functions] `.?AV?$BGSProcedureTyped@VBGSProcedureBase@@$1?kProcedureWanderParamTypes@@3QBUBGSProcedureParamInfo@@B@@` -`class BGSProcedureWander`: VTable [0x0000000002EA8F78, 0x0000000000000000 offset, 35 functions] `.?AVBGSProcedureWander@@` -`class BGSTypedItem`: VTable [0x0000000002EA90D8, 0x0000000000000000 offset, 6 functions] `.?AV?$BGSTypedItem@VBGSProcedureWanderExecState@@VIProcedureTreeExecState@@@@` -`class BGSProcedureWanderExecState`: VTable [0x0000000002EA9120, 0x0000000000000000 offset, 6 functions] `.?AVBGSProcedureWanderExecState@@` -`struct BSTDerivedCreator`: VTable [0x0000000002EA9198, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSProcedureWander@@VIProcedure@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002EA91C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSProcedureWander@@VIProcedure@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002EA91E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSProcedureWander@@V?$BSTCreateFactoryManager@VBSFixedString@@VIProcedure@@$0BAA@@@@@` -`class IVisitProcedures`: VTable [0x0000000002EA9240, 0x0000000000000000 offset, 2 functions] `.?AVIVisitProcedures@@` -`class BGSVisitProceduresInitActorLocation`: VTable [0x0000000002EA9260, 0x0000000000000000 offset, 2 functions] `.?AVBGSVisitProceduresInitActorLocation@@` -`class BGSVisitProceduresCheckGuardWarnTarget`: VTable [0x0000000002EA9280, 0x0000000000000000 offset, 2 functions] `.?AVBGSVisitProceduresCheckGuardWarnTarget@@` -`class TESPackage`: VTable [0x0000000002EAA760, 0x0000000000000000 offset, 101 functions] `.?AVTESPackage@@` -`class CSScript::ICanRemoveScriptFunctor`: VTable [0x0000000002EAAB38, 0x0000000000000000 offset, 2 functions] `.?AVICanRemoveScriptFunctor@CSScript@@` -`class CSScript::IFragmentUIHandler`: VTable [0x0000000002EAAB58, 0x0000000000000000 offset, 6 functions] `.?AVIFragmentUIHandler@CSScript@@` -`class PackageCreator`: VTable [0x0000000002EAABB8, 0x0000000000000000 offset, 7 functions] `.?AVPackageCreator@@` -`class `anonymous namespace'::PackageFragmentUIHandler`: VTable [0x0000000002EAAC08, 0x0000000000000000 offset, 6 functions] `.?AVPackageFragmentUIHandler@?A0xa5fb2ce8@@` -`class PackageInternal::FragmentRemoveCheckFunctor`: VTable [0x0000000002EAAC50, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@PackageInternal@@` -`class NiTMapBase >,class TESObjectREFR * __ptr64,bool>`: VTable [0x0000000002EAB388, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESObjectREFR@@_N@@@@PEAVTESObjectREFR@@_N@@` -`class NiTMap`: VTable [0x0000000002EAB3D8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESObjectREFR@@_N@@` -`class TESPackageData`: VTable [0x0000000002EAB550, 0x0000000000000000 offset, 9 functions] `.?AVTESPackageData@@` -`class TESAmbushPackageData`: VTable [0x0000000002EAB5B0, 0x0000000000000000 offset, 9 functions] `.?AVTESAmbushPackageData@@` -`class TESCustomPackageData`: VTable [0x0000000002EABB08, 0x0000000000000000 offset, 36 functions] `.?AVTESCustomPackageData@@` -`class IProcedureTreeVisitor`: VTable [0x0000000002EABC70, 0x0000000000000000 offset, 3 functions] `.?AVIProcedureTreeVisitor@@` -`class CustomUtils::HasForceGreetVisitor`: VTable [0x0000000002EABC98, 0x0000000000000000 offset, 3 functions] `.?AVHasForceGreetVisitor@CustomUtils@@` -`class TESDialoguePackageData`: VTable [0x0000000002EAC160, 0x0000000000000000 offset, 9 functions] `.?AVTESDialoguePackageData@@` -`class TESEatPackageData`: VTable [0x0000000002EAC270, 0x0000000000000000 offset, 9 functions] `.?AVTESEatPackageData@@` -`class TESEscortPackageData`: VTable [0x0000000002EAC310, 0x0000000000000000 offset, 9 functions] `.?AVTESEscortPackageData@@` -`class TESFindPackageData`: VTable [0x0000000002EAC378, 0x0000000000000000 offset, 10 functions] `.?AVTESFindPackageData@@` -`class TESFollowPackageData`: VTable [0x0000000002EAC428, 0x0000000000000000 offset, 9 functions] `.?AVTESFollowPackageData@@` -`class TESPatrolPackageData`: VTable [0x0000000002EAC488, 0x0000000000000000 offset, 9 functions] `.?AVTESPatrolPackageData@@` -`class TESUseItemPackageData`: VTable [0x0000000002EAC528, 0x0000000000000000 offset, 9 functions] `.?AVTESUseItemPackageData@@` -`class TESUseWeaponPackageData`: VTable [0x0000000002EAC648, 0x0000000000000000 offset, 9 functions] `.?AVTESUseWeaponPackageData@@` -`class PackageLocation`: VTable [0x0000000002EACC88, 0x0000000000000000 offset, 3 functions] `.?AVPackageLocation@@` -`class BGSPackageDataTypeCheck`: VTable [0x0000000002EAD1A8, 0x0000000000000000 offset, 4 functions] `.?AV?$BGSPackageDataTypeCheck@VIAITarget@@V1@@@` -`struct MiscStatManager::FindStatByCRC`: VTable [0x0000000002EAEC30, 0x0000000000000000 offset, 1 functions] `.?AUFindStatByCRC@MiscStatManager@@` -`struct BSScript::IFindBoundObjectFunctor`: VTable [0x0000000002EAEC48, 0x0000000000000000 offset, 2 functions] `.?AUIFindBoundObjectFunctor@BSScript@@` -`struct `anonymous namespace'::VMConditionalVariableExistsFunc`: VTable [0x0000000002EAEC80, 0x0000000000000000 offset, 2 functions] `.?AUVMConditionalVariableExistsFunc@?A0xfe53b01c@@` -`class ExtraHavok`: VTable [0x0000000002EAF670, 0x0000000000000000 offset, 3 functions] `.?AVExtraHavok@@` -`class BaseExtraList`: VTable [0x0000000002EB3BE0, 0x0000000000000000 offset, 1 functions] `.?AVBaseExtraList@@` -`class ExtraCell3D`: VTable [0x0000000002EB3BF8, 0x0000000000000000 offset, 3 functions] `.?AVExtraCell3D@@` -`class ExtraRegionList`: VTable [0x0000000002EB3C20, 0x0000000000000000 offset, 3 functions] `.?AVExtraRegionList@@` -`class ExtraCellMusicType`: VTable [0x0000000002EB3C48, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellMusicType@@` -`class ExtraCellAcousticSpace`: VTable [0x0000000002EB3C70, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellAcousticSpace@@` -`class ExtraCellSkyRegion`: VTable [0x0000000002EB3C98, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellSkyRegion@@` -`class ExtraCellImageSpace`: VTable [0x0000000002EB3CC0, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellImageSpace@@` -`class ExtraCellWaterType`: VTable [0x0000000002EB3CE8, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellWaterType@@` -`class ExtraDetachTime`: VTable [0x0000000002EB3D10, 0x0000000000000000 offset, 3 functions] `.?AVExtraDetachTime@@` -`class ExtraGIDBuffer`: VTable [0x0000000002EB3D38, 0x0000000000000000 offset, 3 functions] `.?AVExtraGIDBuffer@@` -`class ExtraMagicLight`: VTable [0x0000000002EB3DB0, 0x0000000000000000 offset, 3 functions] `.?AVExtraMagicLight@@` -`class ExtraFromAlias`: VTable [0x0000000002EB3DD8, 0x0000000000000000 offset, 3 functions] `.?AVExtraFromAlias@@` -`class ExtraOpenCloseActivateRef`: VTable [0x0000000002EB3E00, 0x0000000000000000 offset, 3 functions] `.?AVExtraOpenCloseActivateRef@@` -`class ExtraTeleportName`: VTable [0x0000000002EB3E28, 0x0000000000000000 offset, 3 functions] `.?AVExtraTeleportName@@` -`class ExtraOriginalReference`: VTable [0x0000000002EB3E50, 0x0000000000000000 offset, 3 functions] `.?AVExtraOriginalReference@@` -`class ExtraWorn`: VTable [0x0000000002EB3E78, 0x0000000000000000 offset, 3 functions] `.?AVExtraWorn@@` -`class ExtraWornLeft`: VTable [0x0000000002EB3EA0, 0x0000000000000000 offset, 3 functions] `.?AVExtraWornLeft@@` -`class ExtraCannotWear`: VTable [0x0000000002EB3EC8, 0x0000000000000000 offset, 3 functions] `.?AVExtraCannotWear@@` -`class ExtraHealth`: VTable [0x0000000002EB3EF0, 0x0000000000000000 offset, 3 functions] `.?AVExtraHealth@@` -`class ExtraHealthPerc`: VTable [0x0000000002EB3F18, 0x0000000000000000 offset, 3 functions] `.?AVExtraHealthPerc@@` -`class ExtraTimeLeft`: VTable [0x0000000002EB3F40, 0x0000000000000000 offset, 3 functions] `.?AVExtraTimeLeft@@` -`class ExtraCharge`: VTable [0x0000000002EB3F68, 0x0000000000000000 offset, 3 functions] `.?AVExtraCharge@@` -`class ExtraScale`: VTable [0x0000000002EB3F90, 0x0000000000000000 offset, 3 functions] `.?AVExtraScale@@` -`class ExtraCachedScale`: VTable [0x0000000002EB3FB8, 0x0000000000000000 offset, 3 functions] `.?AVExtraCachedScale@@` -`class ExtraReferenceHandle`: VTable [0x0000000002EB3FE0, 0x0000000000000000 offset, 3 functions] `.?AVExtraReferenceHandle@@` -`class ExtraLocation`: VTable [0x0000000002EB4008, 0x0000000000000000 offset, 3 functions] `.?AVExtraLocation@@` -`class ExtraMasterLocation`: VTable [0x0000000002EB4030, 0x0000000000000000 offset, 3 functions] `.?AVExtraMasterLocation@@` -`class ExtraEditorFlags`: VTable [0x0000000002EB4058, 0x0000000000000000 offset, 3 functions] `.?AVExtraEditorFlags@@` -`class ExtraEditorTestRadius`: VTable [0x0000000002EB4080, 0x0000000000000000 offset, 3 functions] `.?AVExtraEditorTestRadius@@` -`class ExtraLeveledItem`: VTable [0x0000000002EB40A8, 0x0000000000000000 offset, 3 functions] `.?AVExtraLeveledItem@@` -`class ExtraOutfitItem`: VTable [0x0000000002EB40D0, 0x0000000000000000 offset, 3 functions] `.?AVExtraOutfitItem@@` -`class ExtraRagDollData`: VTable [0x0000000002EB40F8, 0x0000000000000000 offset, 3 functions] `.?AVExtraRagDollData@@` -`class ExtraEncounterZone`: VTable [0x0000000002EB4120, 0x0000000000000000 offset, 3 functions] `.?AVExtraEncounterZone@@` -`class ExtraEnableStateParent`: VTable [0x0000000002EB4148, 0x0000000000000000 offset, 3 functions] `.?AVExtraEnableStateParent@@` -`class ExtraEnableStateChildren`: VTable [0x0000000002EB4170, 0x0000000000000000 offset, 3 functions] `.?AVExtraEnableStateChildren@@` -`class ExtraAttachRef`: VTable [0x0000000002EB4198, 0x0000000000000000 offset, 3 functions] `.?AVExtraAttachRef@@` -`class ExtraAttachRefChildren`: VTable [0x0000000002EB41C0, 0x0000000000000000 offset, 3 functions] `.?AVExtraAttachRefChildren@@` -`class ExtraRandomTeleportMarker`: VTable [0x0000000002EB41E8, 0x0000000000000000 offset, 3 functions] `.?AVExtraRandomTeleportMarker@@` -`class ExtraAshPileRef`: VTable [0x0000000002EB4210, 0x0000000000000000 offset, 3 functions] `.?AVExtraAshPileRef@@` -`class ExtraLocationRefType`: VTable [0x0000000002EB4238, 0x0000000000000000 offset, 3 functions] `.?AVExtraLocationRefType@@` -`class ExtraLeveledItemBase`: VTable [0x0000000002EB4260, 0x0000000000000000 offset, 3 functions] `.?AVExtraLeveledItemBase@@` -`class ExtraLinkedRef`: VTable [0x0000000002EB4288, 0x0000000000000000 offset, 3 functions] `.?AVExtraLinkedRef@@` -`class ExtraLinkedRefChildren`: VTable [0x0000000002EB42B0, 0x0000000000000000 offset, 3 functions] `.?AVExtraLinkedRefChildren@@` -`class ExtraActivateRef`: VTable [0x0000000002EB42D8, 0x0000000000000000 offset, 3 functions] `.?AVExtraActivateRef@@` -`class ExtraActivateRefChildren`: VTable [0x0000000002EB4300, 0x0000000000000000 offset, 3 functions] `.?AVExtraActivateRefChildren@@` -`class ExtraReflectedRefs`: VTable [0x0000000002EB4328, 0x0000000000000000 offset, 3 functions] `.?AVExtraReflectedRefs@@` -`class ExtraReflectorRefs`: VTable [0x0000000002EB4350, 0x0000000000000000 offset, 3 functions] `.?AVExtraReflectorRefs@@` -`class ExtraWaterLightRefs`: VTable [0x0000000002EB4378, 0x0000000000000000 offset, 3 functions] `.?AVExtraWaterLightRefs@@` -`class ExtraLitWaterRefs`: VTable [0x0000000002EB43A0, 0x0000000000000000 offset, 3 functions] `.?AVExtraLitWaterRefs@@` -`class ExtraLevCreaModifier`: VTable [0x0000000002EB43C8, 0x0000000000000000 offset, 3 functions] `.?AVExtraLevCreaModifier@@` -`class ExtraPoison`: VTable [0x0000000002EB43F0, 0x0000000000000000 offset, 3 functions] `.?AVExtraPoison@@` -`class ExtraEnchantment`: VTable [0x0000000002EB4418, 0x0000000000000000 offset, 3 functions] `.?AVExtraEnchantment@@` -`class ExtraLastFinishedSequence`: VTable [0x0000000002EB4440, 0x0000000000000000 offset, 3 functions] `.?AVExtraLastFinishedSequence@@` -`class ExtraSpawnContainer`: VTable [0x0000000002EB4468, 0x0000000000000000 offset, 3 functions] `.?AVExtraSpawnContainer@@` -`class ExtraEmittanceSource`: VTable [0x0000000002EB4490, 0x0000000000000000 offset, 3 functions] `.?AVExtraEmittanceSource@@` -`class ExtraMultiBoundRef`: VTable [0x0000000002EB44B8, 0x0000000000000000 offset, 3 functions] `.?AVExtraMultiBoundRef@@` -`class ExtraMultiBound`: VTable [0x0000000002EB44E0, 0x0000000000000000 offset, 3 functions] `.?AVExtraMultiBound@@` -`class ExtraRoom`: VTable [0x0000000002EB4508, 0x0000000000000000 offset, 3 functions] `.?AVExtraRoom@@` -`class ExtraItemDropper`: VTable [0x0000000002EB4530, 0x0000000000000000 offset, 3 functions] `.?AVExtraItemDropper@@` -`class ExtraDroppedItemList`: VTable [0x0000000002EB4558, 0x0000000000000000 offset, 3 functions] `.?AVExtraDroppedItemList@@` -`class ExtraHeadingTarget`: VTable [0x0000000002EB4580, 0x0000000000000000 offset, 3 functions] `.?AVExtraHeadingTarget@@` -`class ExtraRefractionProperty`: VTable [0x0000000002EB45A8, 0x0000000000000000 offset, 3 functions] `.?AVExtraRefractionProperty@@` -`class ExtraStartingWorldOrCell`: VTable [0x0000000002EB45D0, 0x0000000000000000 offset, 3 functions] `.?AVExtraStartingWorldOrCell@@` -`class ExtraHasNoRumors`: VTable [0x0000000002EB45F8, 0x0000000000000000 offset, 3 functions] `.?AVExtraHasNoRumors@@` -`class ExtraSound`: VTable [0x0000000002EB4620, 0x0000000000000000 offset, 3 functions] `.?AVExtraSound@@` -`class ExtraCreatureAwakeSound`: VTable [0x0000000002EB4648, 0x0000000000000000 offset, 3 functions] `.?AVExtraCreatureAwakeSound@@` -`class ExtraCreatureMovementSound`: VTable [0x0000000002EB4670, 0x0000000000000000 offset, 3 functions] `.?AVExtraCreatureMovementSound@@` -`class ExtraWeaponIdleSound`: VTable [0x0000000002EB4698, 0x0000000000000000 offset, 3 functions] `.?AVExtraWeaponIdleSound@@` -`class ExtraWeaponAttackSound`: VTable [0x0000000002EB46C0, 0x0000000000000000 offset, 3 functions] `.?AVExtraWeaponAttackSound@@` -`class ExtraActivateLoopSound`: VTable [0x0000000002EB46E8, 0x0000000000000000 offset, 3 functions] `.?AVExtraActivateLoopSound@@` -`class ExtraObjectHealth`: VTable [0x0000000002EB4710, 0x0000000000000000 offset, 3 functions] `.?AVExtraObjectHealth@@` -`class ExtraTerminalState`: VTable [0x0000000002EB4738, 0x0000000000000000 offset, 3 functions] `.?AVExtraTerminalState@@` -`class ExtraModelSwap`: VTable [0x0000000002EB4760, 0x0000000000000000 offset, 3 functions] `.?AVExtraModelSwap@@` -`class ExtraRadius`: VTable [0x0000000002EB4788, 0x0000000000000000 offset, 3 functions] `.?AVExtraRadius@@` -`class ExtraFactionChanges`: VTable [0x0000000002EB47B0, 0x0000000000000000 offset, 3 functions] `.?AVExtraFactionChanges@@` -`class ExtraActorCause`: VTable [0x0000000002EB47D8, 0x0000000000000000 offset, 3 functions] `.?AVExtraActorCause@@` -`class ExtraAmmo`: VTable [0x0000000002EB4800, 0x0000000000000000 offset, 3 functions] `.?AVExtraAmmo@@` -`class ExtraCombatStyle`: VTable [0x0000000002EB4828, 0x0000000000000000 offset, 3 functions] `.?AVExtraCombatStyle@@` -`class ExtraLinkColorPair`: VTable [0x0000000002EB4850, 0x0000000000000000 offset, 3 functions] `.?AVExtraLinkColorPair@@` -`class ExtraPrimitive`: VTable [0x0000000002EB4878, 0x0000000000000000 offset, 3 functions] `.?AVExtraPrimitive@@` -`class ExtraPatrolRefData`: VTable [0x0000000002EB48A0, 0x0000000000000000 offset, 3 functions] `.?AVExtraPatrolRefData@@` -`class ExtraOcclusionPlaneRefData`: VTable [0x0000000002EB48C8, 0x0000000000000000 offset, 3 functions] `.?AVExtraOcclusionPlaneRefData@@` -`class ExtraPortalRefData`: VTable [0x0000000002EB48F0, 0x0000000000000000 offset, 3 functions] `.?AVExtraPortalRefData@@` -`class ExtraRoomRefData`: VTable [0x0000000002EB4918, 0x0000000000000000 offset, 3 functions] `.?AVExtraRoomRefData@@` -`class ExtraCollisionData`: VTable [0x0000000002EB4940, 0x0000000000000000 offset, 3 functions] `.?AVExtraCollisionData@@` -`class ExtraGuardedRefData`: VTable [0x0000000002EB4968, 0x0000000000000000 offset, 3 functions] `.?AVExtraGuardedRefData@@` -`class ExtraIgnoredBySandbox`: VTable [0x0000000002EB4990, 0x0000000000000000 offset, 3 functions] `.?AVExtraIgnoredBySandbox@@` -`class ExtraAliasInstanceArray`: VTable [0x0000000002EB49B8, 0x0000000000000000 offset, 3 functions] `.?AVExtraAliasInstanceArray@@` -`class ExtraPromotedRef`: VTable [0x0000000002EB49E0, 0x0000000000000000 offset, 3 functions] `.?AVExtraPromotedRef@@` -`class ExtraLightData`: VTable [0x0000000002EB4A08, 0x0000000000000000 offset, 3 functions] `.?AVExtraLightData@@` -`class ExtraSceneData`: VTable [0x0000000002EB4A30, 0x0000000000000000 offset, 3 functions] `.?AVExtraSceneData@@` -`class ExtraBadPosition`: VTable [0x0000000002EB4A58, 0x0000000000000000 offset, 3 functions] `.?AVExtraBadPosition@@` -`class ExtraHeadTrackingWeight`: VTable [0x0000000002EB4A80, 0x0000000000000000 offset, 3 functions] `.?AVExtraHeadTrackingWeight@@` -`class ExtraFavorCost`: VTable [0x0000000002EB4AA8, 0x0000000000000000 offset, 3 functions] `.?AVExtraFavorCost@@` -`class ExtraMissingLinkedRefIDs`: VTable [0x0000000002EB4AD0, 0x0000000000000000 offset, 3 functions] `.?AVExtraMissingLinkedRefIDs@@` -`class ExtraMissingRefIDs`: VTable [0x0000000002EB4AF8, 0x0000000000000000 offset, 3 functions] `.?AVExtraMissingRefIDs@@` -`class ExtraAttachedArrows3D`: VTable [0x0000000002EB4B20, 0x0000000000000000 offset, 3 functions] `.?AVExtraAttachedArrows3D@@` -`class ExtraAlphaCutoff`: VTable [0x0000000002EB4B48, 0x0000000000000000 offset, 3 functions] `.?AVExtraAlphaCutoff@@` -`class ExtraHorse`: VTable [0x0000000002EB4B70, 0x0000000000000000 offset, 3 functions] `.?AVExtraHorse@@` -`class ExtraForcedTarget`: VTable [0x0000000002EB4B98, 0x0000000000000000 offset, 3 functions] `.?AVExtraForcedTarget@@` -`class ExtraForcedLandingMarker`: VTable [0x0000000002EB4BC0, 0x0000000000000000 offset, 3 functions] `.?AVExtraForcedLandingMarker@@` -`class ExtraUniqueID`: VTable [0x0000000002EB4BE8, 0x0000000000000000 offset, 3 functions] `.?AVExtraUniqueID@@` -`class ExtraFlags`: VTable [0x0000000002EB4C10, 0x0000000000000000 offset, 3 functions] `.?AVExtraFlags@@` -`class ExtraDecalGroup`: VTable [0x0000000002EB4C38, 0x0000000000000000 offset, 3 functions] `.?AVExtraDecalGroup@@` -`class ExtraCellWaterEnvMap`: VTable [0x0000000002EB4C60, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellWaterEnvMap@@` -`class ExtraWaterData`: VTable [0x0000000002EB4C88, 0x0000000000000000 offset, 3 functions] `.?AVExtraWaterData@@` -`class ExtraWaterCurrentZoneData`: VTable [0x0000000002EB4CB0, 0x0000000000000000 offset, 3 functions] `.?AVExtraWaterCurrentZoneData@@` -`class ExtraScriptedAnimDependence`: VTable [0x0000000002EB4CD8, 0x0000000000000000 offset, 3 functions] `.?AVExtraScriptedAnimDependence@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002EB6550, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0BA@@@@@` -`class ExtraAnimGraphManager`: VTable [0x0000000002EB7E30, 0x0000000000000000 offset, 3 functions] `.?AVExtraAnimGraphManager@@` -`class ExtraDismemberedLimbs`: VTable [0x0000000002EB7E58, 0x0000000000000000 offset, 3 functions] `.?AVExtraDismemberedLimbs@@` -`class ExtraBiped`: VTable [0x0000000002EB7E80, 0x0000000000000000 offset, 3 functions] `.?AVExtraBiped@@` -`class ExtraLight`: VTable [0x0000000002EB7EA8, 0x0000000000000000 offset, 3 functions] `.?AVExtraLight@@` -`class ExtraLock`: VTable [0x0000000002EB7ED0, 0x0000000000000000 offset, 3 functions] `.?AVExtraLock@@` -`class ExtraLeveledCreature`: VTable [0x0000000002EB7EF8, 0x0000000000000000 offset, 3 functions] `.?AVExtraLeveledCreature@@` -`class ExtraTeleport`: VTable [0x0000000002EB7F20, 0x0000000000000000 offset, 3 functions] `.?AVExtraTeleport@@` -`class ExtraMapMarker`: VTable [0x0000000002EB7F48, 0x0000000000000000 offset, 3 functions] `.?AVExtraMapMarker@@` -`class ExtraAction`: VTable [0x0000000002EB7F70, 0x0000000000000000 offset, 3 functions] `.?AVExtraAction@@` -`class ExtraStartingPosition`: VTable [0x0000000002EB7F98, 0x0000000000000000 offset, 3 functions] `.?AVExtraStartingPosition@@` -`class ExtraContainerChanges`: VTable [0x0000000002EB7FC0, 0x0000000000000000 offset, 3 functions] `.?AVExtraContainerChanges@@` -`class ExtraOwnership`: VTable [0x0000000002EB7FE8, 0x0000000000000000 offset, 3 functions] `.?AVExtraOwnership@@` -`class ExtraLockList`: VTable [0x0000000002EB8010, 0x0000000000000000 offset, 3 functions] `.?AVExtraLockList@@` -`class ExtraGlobal`: VTable [0x0000000002EB8038, 0x0000000000000000 offset, 3 functions] `.?AVExtraGlobal@@` -`class ExtraRank`: VTable [0x0000000002EB8060, 0x0000000000000000 offset, 3 functions] `.?AVExtraRank@@` -`class ExtraCount`: VTable [0x0000000002EB8088, 0x0000000000000000 offset, 3 functions] `.?AVExtraCount@@` -`class ExtraGhost`: VTable [0x0000000002EB80B0, 0x0000000000000000 offset, 3 functions] `.?AVExtraGhost@@` -`class ExtraShouldWear`: VTable [0x0000000002EB80D8, 0x0000000000000000 offset, 3 functions] `.?AVExtraShouldWear@@` -`class ExtraSoul`: VTable [0x0000000002EB8100, 0x0000000000000000 offset, 3 functions] `.?AVExtraSoul@@` -`class ExtraPackageStartLocation`: VTable [0x0000000002EB8128, 0x0000000000000000 offset, 3 functions] `.?AVExtraPackageStartLocation@@` -`class ExtraPackage`: VTable [0x0000000002EB8150, 0x0000000000000000 offset, 3 functions] `.?AVExtraPackage@@` -`class ExtraTresPassPackage`: VTable [0x0000000002EB8178, 0x0000000000000000 offset, 3 functions] `.?AVExtraTresPassPackage@@` -`class ExtraPlayerCrimeList`: VTable [0x0000000002EB81A0, 0x0000000000000000 offset, 3 functions] `.?AVExtraPlayerCrimeList@@` -`class ExtraPersistentCell`: VTable [0x0000000002EB81C8, 0x0000000000000000 offset, 3 functions] `.?AVExtraPersistentCell@@` -`class ExtraRunOncePacks`: VTable [0x0000000002EB81F0, 0x0000000000000000 offset, 3 functions] `.?AVExtraRunOncePacks@@` -`class ExtraDistantData`: VTable [0x0000000002EB8218, 0x0000000000000000 offset, 3 functions] `.?AVExtraDistantData@@` -`class ExtraResourcesPreload`: VTable [0x0000000002EB8240, 0x0000000000000000 offset, 3 functions] `.?AVExtraResourcesPreload@@` -`class ExtraPortal`: VTable [0x0000000002EB8268, 0x0000000000000000 offset, 3 functions] `.?AVExtraPortal@@` -`class ExtraOcclusionShape`: VTable [0x0000000002EB8290, 0x0000000000000000 offset, 3 functions] `.?AVExtraOcclusionShape@@` -`class ExtraEditorRef3DData`: VTable [0x0000000002EB82B8, 0x0000000000000000 offset, 3 functions] `.?AVExtraEditorRef3DData@@` -`class ExtraEditorRefMoveData`: VTable [0x0000000002EB82E0, 0x0000000000000000 offset, 3 functions] `.?AVExtraEditorRefMoveData@@` -`class ExtraAnimNoteReceiver`: VTable [0x0000000002EB8308, 0x0000000000000000 offset, 3 functions] `.?AVExtraAnimNoteReceiver@@` -`class ExtraPatrolRefInUseData`: VTable [0x0000000002EB8330, 0x0000000000000000 offset, 3 functions] `.?AVExtraPatrolRefInUseData@@` -`class ExtraSayTopicInfoOnceADay`: VTable [0x0000000002EB8358, 0x0000000000000000 offset, 3 functions] `.?AVExtraSayTopicInfoOnceADay@@` -`class ExtraFollowerSwimBreadcrumbs`: VTable [0x0000000002EB8380, 0x0000000000000000 offset, 3 functions] `.?AVExtraFollowerSwimBreadcrumbs@@` -`class ExtraAnimationSequencer`: VTable [0x0000000002EB83A8, 0x0000000000000000 offset, 3 functions] `.?AVExtraAnimationSequencer@@` -`class ExtraCellGrassData`: VTable [0x0000000002EB83D0, 0x0000000000000000 offset, 3 functions] `.?AVExtraCellGrassData@@` -`class ExtraGroupConstraint`: VTable [0x0000000002EB83F8, 0x0000000000000000 offset, 3 functions] `.?AVExtraGroupConstraint@@` -`class ExtraRaceData`: VTable [0x0000000002EB8420, 0x0000000000000000 offset, 3 functions] `.?AVExtraRaceData@@` -`class MultiBoundMarkerData`: VTable [0x0000000002EB9160, 0x0000000000000000 offset, 3 functions] `.?AVMultiBoundMarkerData@@` -`class InterfacedClass`: VTable [0x0000000002EBAB38, 0x0000000000000000 offset, 2 functions] `.?AVInterfacedClass@@` -`class BSTask`: VTable [0x0000000002EBAB58, 0x0000000000000000 offset, 6 functions] `.?AVBSTask@@` -`class IOTask`: VTable [0x0000000002EBABA0, 0x0000000000000000 offset, 10 functions] `.?AVIOTask@@` -`class SynchronizedPriorityQueue >`: VTable [0x0000000002EBAC10, 0x0000000000000000 offset, 4 functions] `.?AV?$SynchronizedPriorityQueue@V?$NiPointer@VIOTask@@@@@@` -`class BSModelDB::QueuedHandles`: VTable [0x0000000002EBAC40, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHandles@BSModelDB@@` -`class BSModelDB::QueuedHandles`: VTable [0x0000000002EBAD10, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHandles@BSModelDB@@` -`class TESModelDB::TESQueuedHandles`: VTable [0x0000000002EBAD38, 0x0000000000000000 offset, 20 functions] `.?AVTESQueuedHandles@TESModelDB@@` -`class TESModelDB::TESQueuedHandles`: VTable [0x0000000002EBAE08, 0x0000000000000038 offset, 3 functions] `.?AVTESQueuedHandles@TESModelDB@@` -`class BSQueuedResourceCollection,42>`: VTable [0x0000000002EBAE30, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@$0CK@@@` -`class BSQueuedResourceCollection,42>`: VTable [0x0000000002EBAF00, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@$0CK@@@` -`class QueuedHelmet`: VTable [0x0000000002EBAF28, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHelmet@@` -`class QueuedHelmet`: VTable [0x0000000002EBAFF8, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHelmet@@` -`class QueuedModel`: VTable [0x0000000002EBB020, 0x0000000000000000 offset, 22 functions] `.?AVQueuedModel@@` -`class QueuedModel`: VTable [0x0000000002EBB100, 0x0000000000000038 offset, 3 functions] `.?AVQueuedModel@@` -`class QueuedReference`: VTable [0x0000000002EBB128, 0x0000000000000000 offset, 27 functions] `.?AVQueuedReference@@` -`class QueuedReference`: VTable [0x0000000002EBB238, 0x0000000000000038 offset, 3 functions] `.?AVQueuedReference@@` -`class QueuedTempEffect`: VTable [0x0000000002EBB260, 0x0000000000000000 offset, 12 functions] `.?AVQueuedTempEffect@@` -`class BackgroundProcessThread`: VTable [0x0000000002EBB2E0, 0x0000000000000000 offset, 3 functions] `.?AVBackgroundProcessThread@@` -`class SynchronizedQueue >`: VTable [0x0000000002EBB308, 0x0000000000000000 offset, 5 functions] `.?AV?$SynchronizedQueue@V?$NiPointer@VAttachDistant3DTask@@@@@@` -`class QueuedHead`: VTable [0x0000000002EBB388, 0x0000000000000000 offset, 13 functions] `.?AVQueuedHead@@` -`class BSAutoQueuedResourceCollection`: VTable [0x0000000002EBB548, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAutoQueuedResourceCollection@VQueuedHandles@BShkbHkxDB@@@@` -`class QueuedTree`: VTable [0x0000000002EBB560, 0x0000000000000000 offset, 27 functions] `.?AVQueuedTree@@` -`class QueuedTree`: VTable [0x0000000002EBB670, 0x0000000000000038 offset, 3 functions] `.?AVQueuedTree@@` -`class QueuedActor`: VTable [0x0000000002EBB700, 0x0000000000000000 offset, 27 functions] `.?AVQueuedActor@@` -`class QueuedActor`: VTable [0x0000000002EBB810, 0x0000000000000038 offset, 3 functions] `.?AVQueuedActor@@` -`class QueuedCharacter`: VTable [0x0000000002EBB838, 0x0000000000000000 offset, 27 functions] `.?AVQueuedCharacter@@` -`class QueuedCharacter`: VTable [0x0000000002EBB948, 0x0000000000000038 offset, 3 functions] `.?AVQueuedCharacter@@` -`class SynchronizedQueue >`: VTable [0x0000000002EBBA90, 0x0000000000000000 offset, 5 functions] `.?AV?$SynchronizedQueue@V?$NiPointer@VIOTask@@@@@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002EBBBA0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0CKA@@@@@` -`class ICellAttachDetachEventSource`: VTable [0x0000000002EBD220, 0x0000000000000000 offset, 1 functions] `.?AVICellAttachDetachEventSource@@` -`class BSTEventSink`: VTable [0x0000000002EBD260, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UArchiveStreamOpenedEvent@BSResource@@@@` -`class BSTEventSink`: VTable [0x0000000002EBD280, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@VBSSystemEvent@@@@` -`class TES::SystemEventAdapter`: VTable [0x0000000002EBD2A0, 0x0000000000000000 offset, 2 functions] `.?AVSystemEventAdapter@TES@@` -`class TES`: VTable [0x0000000002EBD2C0, 0x0000000000000000 offset, 1 functions] `.?AVTES@@` -`class TES`: VTable [0x0000000002EBD2D8, 0x0000000000000060 offset, 2 functions] `.?AVTES@@` -`class BSTempNodeManager`: VTable [0x0000000002EBD388, 0x0000000000000000 offset, 64 functions] `.?AVBSTempNodeManager@@` -`class BSTempNode`: VTable [0x0000000002EBD5F8, 0x0000000000000000 offset, 64 functions] `.?AVBSTempNode@@` -`class BSAutoQueuedResourceCollection`: VTable [0x0000000002EBEFF0, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAutoQueuedResourceCollection@VTESQueuedHandles@TESModelDB@@@@` -`class NiTArray >`: VTable [0x0000000002EC0C30, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVTESObjectCELL@@V?$NiTMallocInterface@PEAVTESObjectCELL@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000002EC0C48, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVTESObjectCELL@@@@` -`class NiTArray >`: VTable [0x0000000002EC0C60, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVBGSAddonNode@@V?$NiTMallocInterface@PEAVBGSAddonNode@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000002EC0C78, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVBGSAddonNode@@@@` -`class BGSStoryManagerTreeForm`: VTable [0x0000000002EC0C90, 0x0000000000000000 offset, 105 functions] `.?AVBGSStoryManagerTreeForm@@` -`class BGSStoryManagerNodeBase`: VTable [0x0000000002EC1090, 0x0000000000000000 offset, 112 functions] `.?AVBGSStoryManagerNodeBase@@` -`class BGSStoryManagerBranchNode`: VTable [0x0000000002EC14D0, 0x0000000000000000 offset, 113 functions] `.?AVBGSStoryManagerBranchNode@@` -`class TESRegionDataManager`: VTable [0x0000000002EC1918, 0x0000000000000000 offset, 10 functions] `.?AVTESRegionDataManager@@` -`class TESRegionDataManagerEditor`: VTable [0x0000000002EC1988, 0x0000000000000000 offset, 10 functions] `.?AVTESRegionDataManagerEditor@@` -`class BSTEventSink`: VTable [0x0000000002EC1FE8, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UArchiveRegisteredEvent@BSResource@@@@` -`struct `anonymous namespace'::ArchiveRegistrationListener`: VTable [0x0000000002EC2008, 0x0000000000000000 offset, 2 functions] `.?AUArchiveRegistrationListener@?A0x5b08c382@@` -`class BSTEventSink`: VTable [0x0000000002EC2028, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UClearArchiveRegistryEvent@BSResource@@@@` -`struct `anonymous namespace'::ClearArchiveRegistrationListener`: VTable [0x0000000002EC2048, 0x0000000000000000 offset, 2 functions] `.?AUClearArchiveRegistrationListener@?A0x5b08c382@@` -`struct `anonymous namespace'::ObjectCountHelper`: VTable [0x0000000002EC21E0, 0x0000000000000000 offset, 2 functions] `.?AUObjectCountHelper@?A0x5b08c382@@` -`class NiTMapBase,unsigned int,class TESFile * __ptr64>`: VTable [0x0000000002EC64C8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@IPEAVTESFile@@@@` -`class NiTPointerMap`: VTable [0x0000000002EC6518, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@IPEAVTESFile@@@@` -`class NiTArray >`: VTable [0x0000000002EC6568, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@IV?$NiTMallocInterface@I@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000002EC6580, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@I@@` -`class BSModelDB::BSModelProcessor`: VTable [0x0000000002EC67D0, 0x0000000000000000 offset, 2 functions] `.?AVBSModelProcessor@BSModelDB@@` -`class TESModelDB::`anonymous namespace'::TESProcessor`: VTable [0x0000000002EC67F0, 0x0000000000000000 offset, 2 functions] `.?AVTESProcessor@?A0x14ef7b23@TESModelDB@@` -`class BGSAttackDataForm`: VTable [0x0000000002EC69D8, 0x0000000000000000 offset, 14 functions] `.?AVBGSAttackDataForm@@` -`class BGSBipedModelList`: VTable [0x0000000002EC6C58, 0x0000000000000000 offset, 14 functions] `.?AVBGSBipedModelList@@` -`class BGSBipedObjectForm`: VTable [0x0000000002EC6EB0, 0x0000000000000000 offset, 14 functions] `.?AVBGSBipedObjectForm@@` -`class BGSBlockBashData`: VTable [0x0000000002EC6FE8, 0x0000000000000000 offset, 14 functions] `.?AVBGSBlockBashData@@` -`class BGSDestructibleObjectForm`: VTable [0x0000000002EC7440, 0x0000000000000000 offset, 14 functions] `.?AVBGSDestructibleObjectForm@@` -`class BGSEquipType`: VTable [0x0000000002EC7A78, 0x0000000000000000 offset, 16 functions] `.?AVBGSEquipType@@` -`class BGSIdleCollection`: VTable [0x0000000002EC7DC8, 0x0000000000000000 offset, 14 functions] `.?AVBGSIdleCollection@@` -`class BGSKeywordForm`: VTable [0x0000000002EC8058, 0x0000000000000000 offset, 16 functions] `.?AVBGSKeywordForm@@` -`class BGSMenuDisplayObject`: VTable [0x0000000002EC82E0, 0x0000000000000000 offset, 15 functions] `.?AVBGSMenuDisplayObject@@` -`class BGSMessageIcon`: VTable [0x0000000002EC85B0, 0x0000000000000000 offset, 14 functions] `.?AVBGSMessageIcon@@` -`class BGSOverridePackCollection`: VTable [0x0000000002EC88F0, 0x0000000000000000 offset, 14 functions] `.?AVBGSOverridePackCollection@@` -`class PerkRankVisitor`: VTable [0x0000000002EC93F0, 0x0000000000000000 offset, 1 functions] `.?AVPerkRankVisitor@@` -`class BGSPerkRankArray`: VTable [0x0000000002EC9408, 0x0000000000000000 offset, 14 functions] `.?AVBGSPerkRankArray@@` -`class `anonymous namespace'::InitItemPerkRankDataVisitor`: VTable [0x0000000002EC9498, 0x0000000000000000 offset, 1 functions] `.?AVInitItemPerkRankDataVisitor@?A0x98dc7384@@` -`class `anonymous namespace'::CopyPerkRankArrayVisitor`: VTable [0x0000000002EC94F8, 0x0000000000000000 offset, 1 functions] `.?AVCopyPerkRankArrayVisitor@?A0x98dc7384@@` -`class `anonymous namespace'::FindPerkRankDataVisitor`: VTable [0x0000000002EC9510, 0x0000000000000000 offset, 1 functions] `.?AVFindPerkRankDataVisitor@?A0x98dc7384@@` -`class `anonymous namespace'::RemoveFormListPerkRankVisitor`: VTable [0x0000000002EC9528, 0x0000000000000000 offset, 1 functions] `.?AVRemoveFormListPerkRankVisitor@?A0x98dc7384@@` -`class `anonymous namespace'::SavePerkRankDataVisitor`: VTable [0x0000000002EC96C0, 0x0000000000000000 offset, 1 functions] `.?AVSavePerkRankDataVisitor@?A0x386ddf77@@` -`class `anonymous namespace'::AddRemoveUserFormPerkRankDataVisitor`: VTable [0x0000000002EC96D8, 0x0000000000000000 offset, 1 functions] `.?AVAddRemoveUserFormPerkRankDataVisitor@?A0x386ddf77@@` -`class `anonymous namespace'::GetDependencyStringPerkRankVisitor`: VTable [0x0000000002EC96F0, 0x0000000000000000 offset, 1 functions] `.?AVGetDependencyStringPerkRankVisitor@?A0x386ddf77@@` -`class `anonymous namespace'::CanCheckInPerkRankVisitor`: VTable [0x0000000002EC9708, 0x0000000000000000 offset, 1 functions] `.?AVCanCheckInPerkRankVisitor@?A0x386ddf77@@` -`class `anonymous namespace'::ObjectCollectionPerkRankArrayVisitor`: VTable [0x0000000002EC9720, 0x0000000000000000 offset, 1 functions] `.?AVObjectCollectionPerkRankArrayVisitor@?A0x386ddf77@@` -`class `anonymous namespace'::FillListViewPerkRankArrayVisitor`: VTable [0x0000000002EC9738, 0x0000000000000000 offset, 1 functions] `.?AVFillListViewPerkRankArrayVisitor@?A0x386ddf77@@` -`class BGSPickupPutdownSounds`: VTable [0x0000000002EC9818, 0x0000000000000000 offset, 14 functions] `.?AVBGSPickupPutdownSounds@@` -`class BGSSkinForm`: VTable [0x0000000002EC9A90, 0x0000000000000000 offset, 14 functions] `.?AVBGSSkinForm@@` -`class TESActorBaseData`: VTable [0x0000000002ECA460, 0x0000000000000000 offset, 20 functions] `.?AVTESActorBaseData@@` -`class NiTMapBase >,class TESForm * __ptr64,bool>`: VTable [0x0000000002ECA640, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESForm@@_N@@@@PEAVTESForm@@_N@@` -`class NiTMap`: VTable [0x0000000002ECA690, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESForm@@_N@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002ECABE0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0EAA@@@@@` -`class TESAIForm`: VTable [0x0000000002ECACC0, 0x0000000000000000 offset, 14 functions] `.?AVTESAIForm@@` -`class TESAttackDamageForm`: VTable [0x0000000002ECAEF8, 0x0000000000000000 offset, 15 functions] `.?AVTESAttackDamageForm@@` -`class TESModelRDT`: VTable [0x0000000002ECB0C0, 0x0000000000000000 offset, 20 functions] `.?AVTESModelRDT@@` -`class TESBipedModelForm`: VTable [0x0000000002ECB190, 0x0000000000000000 offset, 14 functions] `.?AVTESBipedModelForm@@` -`class TESContainer`: VTable [0x0000000002ECB6C0, 0x0000000000000000 offset, 15 functions] `.?AVTESContainer@@` -`class TESDescription`: VTable [0x0000000002ECBC10, 0x0000000000000000 offset, 14 functions] `.?AVTESDescription@@` -`class TESEnchantableForm`: VTable [0x0000000002ECBEE0, 0x0000000000000000 offset, 15 functions] `.?AVTESEnchantableForm@@` -`class TESForm`: VTable [0x0000000002ECD628, 0x0000000000000000 offset, 101 functions] `.?AVTESForm@@` -`class BSStorage`: VTable [0x0000000002ECDA00, 0x0000000000000000 offset, 6 functions] `.?AVBSStorage@@` -`class BSMemStorage`: VTable [0x0000000002ECDA48, 0x0000000000000000 offset, 6 functions] `.?AVBSMemStorage@@` -`struct BSScript::IHandleReaderWriter`: VTable [0x0000000002ECDA90, 0x0000000000000000 offset, 4 functions] `.?AUIHandleReaderWriter@BSScript@@` -`class CSScript::DataFileHandleReaderWriter`: VTable [0x0000000002ECDAC0, 0x0000000000000000 offset, 4 functions] `.?AVDataFileHandleReaderWriter@CSScript@@` -`struct `anonymous namespace'::ObjectFactoryVisitor`: VTable [0x0000000002ECDAF0, 0x0000000000000000 offset, 2 functions] `.?AUObjectFactoryVisitor@?A0xa4a63200@@` -`struct `anonymous namespace'::ObjectTypeFinder`: VTable [0x0000000002ECDB10, 0x0000000000000000 offset, 2 functions] `.?AUObjectTypeFinder@?A0xa4a63200@@` -`class NiTMapBase,class TESForm const * __ptr64,class BSTArray * __ptr64>`: VTable [0x0000000002ECDD38, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBVTESForm@@PEAV?$BSTArray@PEAVTESForm@@VBSTArrayHeapAllocator@@@@@@` -`class NiTPointerMap * __ptr64>`: VTable [0x0000000002ECDD88, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBVTESForm@@PEAV?$BSTArray@PEAVTESForm@@VBSTArrayHeapAllocator@@@@@@` -`class BSMemStorageAllocated`: VTable [0x0000000002ECDE68, 0x0000000000000000 offset, 6 functions] `.?AV?$BSMemStorageAllocated@VBSMemStorageScrapAllocator@@@@` -`class TESHealthForm`: VTable [0x0000000002ECEE08, 0x0000000000000000 offset, 15 functions] `.?AVTESHealthForm@@` -`class TESIcon`: VTable [0x0000000002ECEF48, 0x0000000000000000 offset, 20 functions] `.?AVTESIcon@@` -`class TESImageSpaceModifiableForm`: VTable [0x0000000002ECF070, 0x0000000000000000 offset, 14 functions] `.?AVTESImageSpaceModifiableForm@@` -`class TESLeveledList`: VTable [0x0000000002ECF540, 0x0000000000000000 offset, 23 functions] `.?AVTESLeveledList@@` -`class TESModel`: VTable [0x0000000002ED0710, 0x0000000000000000 offset, 20 functions] `.?AVTESModel@@` -`class BSShaderProperty::ForEachVisitor`: VTable [0x0000000002ED07E0, 0x0000000000000000 offset, 2 functions] `.?AVForEachVisitor@BSShaderProperty@@` -`struct `anonymous namespace'::PropTexCollector`: VTable [0x0000000002ED0928, 0x0000000000000000 offset, 2 functions] `.?AUPropTexCollector@?A0x90039cc1@@` -`struct `anonymous namespace'::PropTexNameCollector`: VTable [0x0000000002ED0948, 0x0000000000000000 offset, 2 functions] `.?AUPropTexNameCollector@?A0x90039cc1@@` -`class BSAutoQueuedResourceCollection`: VTable [0x0000000002ED09F8, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAutoQueuedResourceCollection@VQueuedHandles@BSTextureDB@@@@` -`class TESModelLODList`: VTable [0x0000000002ED0D18, 0x0000000000000000 offset, 14 functions] `.?AVTESModelLODList@@` -`class TESModelTextureSwap`: VTable [0x0000000002ED1340, 0x0000000000000000 offset, 20 functions] `.?AVTESModelTextureSwap@@` -`class BSMapBase`: VTable [0x0000000002ED1628, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@HPEAUTEX_SWAP@@@@` -`class BSScrapMap`: VTable [0x0000000002ED1678, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@HPEAUTEX_SWAP@@@@` -`class TESProduceForm`: VTable [0x0000000002ED1AA0, 0x0000000000000000 offset, 14 functions] `.?AVTESProduceForm@@` -`class TESQualityForm`: VTable [0x0000000002ED1DC8, 0x0000000000000000 offset, 14 functions] `.?AVTESQualityForm@@` -`class TESRaceForm`: VTable [0x0000000002ED1F78, 0x0000000000000000 offset, 14 functions] `.?AVTESRaceForm@@` -`class TESReactionForm`: VTable [0x0000000002ED2438, 0x0000000000000000 offset, 14 functions] `.?AVTESReactionForm@@` -`class TESSpellList`: VTable [0x0000000002ED2B10, 0x0000000000000000 offset, 14 functions] `.?AVTESSpellList@@` -`class TESTexture`: VTable [0x0000000002ED2E38, 0x0000000000000000 offset, 20 functions] `.?AVTESTexture@@` -`class TESValueForm`: VTable [0x0000000002ED3168, 0x0000000000000000 offset, 14 functions] `.?AVTESValueForm@@` -`class TESWeightForm`: VTable [0x0000000002ED32D0, 0x0000000000000000 offset, 14 functions] `.?AVTESWeightForm@@` -`class BSAttachTechniques::BSAttachTechnique`: VTable [0x0000000002ED3B40, 0x0000000000000000 offset, 4 functions] `.?AVBSAttachTechnique@BSAttachTechniques@@` -`struct BGSAttachTechniquesUtil::ProcessTechniquesFunctor`: VTable [0x0000000002ED3B80, 0x0000000000000000 offset, 2 functions] `.?AUProcessTechniquesFunctor@BGSAttachTechniquesUtil@@` -`struct BGSAttachTechniquesUtil::AttachTechniquesFunctor`: VTable [0x0000000002ED3BA0, 0x0000000000000000 offset, 2 functions] `.?AUAttachTechniquesFunctor@BGSAttachTechniquesUtil@@` -`struct BGSAttachTechniquesUtil::DetachTechniquesFunctor`: VTable [0x0000000002ED3BC0, 0x0000000000000000 offset, 2 functions] `.?AUDetachTechniquesFunctor@BGSAttachTechniquesUtil@@` -`class BGSParticleArrayAttach::EmitterPolicy`: VTable [0x0000000002ED3C68, 0x0000000000000000 offset, 3 functions] `.?AVEmitterPolicy@BGSParticleArrayAttach@@` -`class BGSParticleArrayAttach::CollectEmitterPolicy`: VTable [0x0000000002ED3C90, 0x0000000000000000 offset, 3 functions] `.?AVCollectEmitterPolicy@BGSParticleArrayAttach@@` -`class BGSParticleArrayAttach::ClearEmitterPolicy`: VTable [0x0000000002ED3CB8, 0x0000000000000000 offset, 3 functions] `.?AVClearEmitterPolicy@BGSParticleArrayAttach@@` -`class BGSParticleArrayAttach`: VTable [0x0000000002ED3CE0, 0x0000000000000000 offset, 4 functions] `.?AVBGSParticleArrayAttach@@` -`class BGSHavokGeometryAttach::ActionPolicy`: VTable [0x0000000002ED3D90, 0x0000000000000000 offset, 2 functions] `.?AVActionPolicy@BGSHavokGeometryAttach@@` -`class BGSHavokGeometryAttach::AttachPolicy`: VTable [0x0000000002ED3DB0, 0x0000000000000000 offset, 2 functions] `.?AVAttachPolicy@BGSHavokGeometryAttach@@` -`class BGSHavokGeometryAttach::DetachPolicy`: VTable [0x0000000002ED3DD0, 0x0000000000000000 offset, 2 functions] `.?AVDetachPolicy@BGSHavokGeometryAttach@@` -`class BGSHavokGeometryAttach`: VTable [0x0000000002ED3DF0, 0x0000000000000000 offset, 4 functions] `.?AVBGSHavokGeometryAttach@@` -`class BGSNamedNodeAttach::ActionPolicy`: VTable [0x0000000002ED3E30, 0x0000000000000000 offset, 2 functions] `.?AVActionPolicy@BGSNamedNodeAttach@@` -`class BGSNamedNodeAttach::AttachPolicy`: VTable [0x0000000002ED3E50, 0x0000000000000000 offset, 2 functions] `.?AVAttachPolicy@BGSNamedNodeAttach@@` -`class BGSNamedNodeAttach::DetachPolicy`: VTable [0x0000000002ED3E70, 0x0000000000000000 offset, 2 functions] `.?AVDetachPolicy@BGSNamedNodeAttach@@` -`class BGSNamedNodeAttach`: VTable [0x0000000002ED3E90, 0x0000000000000000 offset, 4 functions] `.?AVBGSNamedNodeAttach@@` -`class BGSMultiTechniqueAttach::ActionPolicy`: VTable [0x0000000002ED3F08, 0x0000000000000000 offset, 2 functions] `.?AVActionPolicy@BGSMultiTechniqueAttach@@` -`class BGSMultiTechniqueAttach::AttachPolicy`: VTable [0x0000000002ED3F28, 0x0000000000000000 offset, 2 functions] `.?AVAttachPolicy@BGSMultiTechniqueAttach@@` -`class BGSMultiTechniqueAttach::DetachPolicy`: VTable [0x0000000002ED3F48, 0x0000000000000000 offset, 2 functions] `.?AVDetachPolicy@BGSMultiTechniqueAttach@@` -`class BGSMultiTechniqueAttach`: VTable [0x0000000002ED3F68, 0x0000000000000000 offset, 4 functions] `.?AVBGSMultiTechniqueAttach@@` -`class BGSDecalNode`: VTable [0x0000000002ED6598, 0x0000000000000000 offset, 66 functions] `.?AVBGSDecalNode@@` -`class QueuedPromoteReferencesTask`: VTable [0x0000000002ED6C20, 0x0000000000000000 offset, 10 functions] `.?AVQueuedPromoteReferencesTask@@` -`class IBGSLocalizedString`: VTable [0x0000000002ED80D8, 0x0000000000000000 offset, 5 functions] `.?AVIBGSLocalizedString@@` -`class BGSLocalizedString`: VTable [0x0000000002ED8118, 0x0000000000000000 offset, 5 functions] `.?AVBGSLocalizedString@@` -`class BGSLocalizedStringDL`: VTable [0x0000000002ED8158, 0x0000000000000000 offset, 5 functions] `.?AVBGSLocalizedStringDL@@` -`class BGSLocalizedStringIL`: VTable [0x0000000002ED8198, 0x0000000000000000 offset, 5 functions] `.?AVBGSLocalizedStringIL@@` -`class BSTEventSink`: VTable [0x0000000002ED8798, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@ULocalizedStringLoadEvent@?A0x225a273b@@@@` -`struct `anonymous namespace'::TagificationManager`: VTable [0x0000000002ED87B8, 0x0000000000000000 offset, 2 functions] `.?AUTagificationManager@?A0x225a273b@@` -`struct `anonymous namespace'::TextExportManager`: VTable [0x0000000002ED8B78, 0x0000000000000000 offset, 2 functions] `.?AUTextExportManager@?A0x225a273b@@` -`struct `anonymous namespace'::DelocalizationManager`: VTable [0x0000000002ED8F48, 0x0000000000000000 offset, 2 functions] `.?AUDelocalizationManager@?A0x225a273b@@` -`class NiObject`: VTable [0x0000000002EDA0F0, 0x0000000000000000 offset, 39 functions] `.?AVNiObject@@` -`class BGSPrimitive`: VTable [0x0000000002EDA270, 0x0000000000000000 offset, 6 functions] `.?AVBGSPrimitive@@` -`class BGSPrimitivePlane`: VTable [0x0000000002EDA2B8, 0x0000000000000000 offset, 8 functions] `.?AVBGSPrimitivePlane@@` -`class BGSPrimitiveBox`: VTable [0x0000000002EDA310, 0x0000000000000000 offset, 7 functions] `.?AVBGSPrimitiveBox@@` -`class BGSPrimitiveLine`: VTable [0x0000000002EDA360, 0x0000000000000000 offset, 7 functions] `.?AVBGSPrimitiveLine@@` -`class BGSPrimitiveSphere`: VTable [0x0000000002EDA3B0, 0x0000000000000000 offset, 6 functions] `.?AVBGSPrimitiveSphere@@` -`class BSMultiBoundAABB`: VTable [0x0000000002EDA3F8, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundAABB@@` -`class BSMultiBoundOBB`: VTable [0x0000000002EDA5F8, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundOBB@@` -`class BSMultiBoundSphere`: VTable [0x0000000002EDA7F8, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundSphere@@` -`class BSPortal`: VTable [0x0000000002EDA9F8, 0x0000000000000000 offset, 44 functions] `.?AVBSPortal@@` -`class BGSSceneInfo::TextureUse`: VTable [0x0000000002EDB120, 0x0000000000000000 offset, 2 functions] `.?AVTextureUse@BGSSceneInfo@@` -`class BGSSceneInfo`: VTable [0x0000000002EDB140, 0x0000000000000000 offset, 1 functions] `.?AVBGSSceneInfo@@` -`class NiTMapBase >,int,int>`: VTable [0x0000000002EDB1E8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@HH@@@@HH@@` -`class NiTMap`: VTable [0x0000000002EDB238, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@HH@@` -`class BGSTextureUseMap::TextureUse`: VTable [0x0000000002EDBFE0, 0x0000000000000000 offset, 2 functions] `.?AVTextureUse@BGSTextureUseMap@@` -`class BSAnimGroupSequence`: VTable [0x0000000002EDD9B0, 0x0000000000000000 offset, 40 functions] `.?AVBSAnimGroupSequence@@` -`class GridArray`: VTable [0x0000000002EDEC30, 0x0000000000000000 offset, 9 functions] `.?AVGridArray@@` -`class GridCellArray`: VTable [0x0000000002EDECF0, 0x0000000000000000 offset, 9 functions] `.?AVGridCellArray@@` -`class InventoryUtils::ItemFilter`: VTable [0x0000000002EDFE20, 0x0000000000000000 offset, 2 functions] `.?AVItemFilter@InventoryUtils@@` -`class InventoryChanges::IItemChangeVisitor`: VTable [0x0000000002EDFE40, 0x0000000000000000 offset, 4 functions] `.?AVIItemChangeVisitor@InventoryChanges@@` -`class `anonymous namespace'::CountObjectsWithKeywordFunctor`: VTable [0x0000000002EDFE70, 0x0000000000000000 offset, 4 functions] `.?AVCountObjectsWithKeywordFunctor@?A0xb5ef0271@@` -`class `anonymous namespace'::GetArmorInSlotFunctor`: VTable [0x0000000002EDFEA0, 0x0000000000000000 offset, 4 functions] `.?AVGetArmorInSlotFunctor@?A0xb5ef0271@@` -`class `anonymous namespace'::UnequipArmorFunctor`: VTable [0x0000000002EDFED0, 0x0000000000000000 offset, 4 functions] `.?AVUnequipArmorFunctor@?A0xb5ef0271@@` -`class `anonymous namespace'::CollectUsedUniqueIDsVisitor`: VTable [0x0000000002EDFF48, 0x0000000000000000 offset, 4 functions] `.?AVCollectUsedUniqueIDsVisitor@?A0xb5ef0271@@` -`class InventoryUtils::`anonymous namespace'::IsWornVisitor`: VTable [0x0000000002EDFFA8, 0x0000000000000000 offset, 4 functions] `.?AVIsWornVisitor@?A0xb5ef0271@InventoryUtils@@` -`class InventoryUtils::`anonymous namespace'::GetWornMaskVisitor`: VTable [0x0000000002EDFFD8, 0x0000000000000000 offset, 4 functions] `.?AVGetWornMaskVisitor@?A0xb5ef0271@InventoryUtils@@` -`class InventoryUtils::`anonymous namespace'::IsFavoriteVisitor`: VTable [0x0000000002EE0008, 0x0000000000000000 offset, 4 functions] `.?AVIsFavoriteVisitor@?A0xb5ef0271@InventoryUtils@@` -`class InventoryUtils::`anonymous namespace'::WornHasKeywordVisitor`: VTable [0x0000000002EE0038, 0x0000000000000000 offset, 4 functions] `.?AVWornHasKeywordVisitor@?A0xb5ef0271@InventoryUtils@@` -`class BSExternalAudioIO::ExternalIOInterface`: VTable [0x0000000002EE0918, 0x0000000000000000 offset, 2 functions] `.?AVExternalIOInterface@BSExternalAudioIO@@` -`class BSResource::EntryDB`: VTable [0x0000000002EE0938, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@LipSynchAnimDB@@@BSResource@@` -`class LipSynchAnimDB::LipAudioInterface`: VTable [0x0000000002EE0980, 0x0000000000000000 offset, 2 functions] `.?AVLipAudioInterface@LipSynchAnimDB@@` -`class TESCameraState`: VTable [0x0000000002EE0DC8, 0x0000000000000000 offset, 9 functions] `.?AVTESCameraState@@` -`class LocalMapCamera`: VTable [0x0000000002EE0E70, 0x0000000000000000 offset, 3 functions] `.?AVLocalMapCamera@@` -`class LocalMapCamera::DefaultState`: VTable [0x0000000002EE0EB8, 0x0000000000000000 offset, 9 functions] `.?AVDefaultState@LocalMapCamera@@` -`class NiTMapBase >,class NiAVObject * __ptr64,struct _TREEITEM * __ptr64>`: VTable [0x0000000002EE1560, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVNiAVObject@@PEAU_TREEITEM@@@@@@PEAVNiAVObject@@PEAU_TREEITEM@@@@` -`class NiTMap`: VTable [0x0000000002EE15B0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVNiAVObject@@PEAU_TREEITEM@@@@` -`class BSNodeVisualization::Visualizer`: VTable [0x0000000002EE1600, 0x0000000000000000 offset, 2 functions] `.?AVVisualizer@BSNodeVisualization@@` -`class BSNodeVisualization::AllNodeVisualizer`: VTable [0x0000000002EE1620, 0x0000000000000000 offset, 2 functions] `.?AVAllNodeVisualizer@BSNodeVisualization@@` -`class NiTArray >`: VTable [0x0000000002EE1650, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEBDV?$NiTMallocInterface@PEBD@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000002EE1668, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEBD@@` -`class UTF8Utils`: VTable [0x0000000002EE2260, 0x0000000000000000 offset, 1 functions] `.?AVUTF8Utils@@` -`class TESRegion`: VTable [0x0000000002EE2F80, 0x0000000000000000 offset, 103 functions] `.?AVTESRegion@@` -`class ConcreteFormFactory`: VTable [0x0000000002EE3368, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESRegion@@$0DK@@@` -`class TESRegionData`: VTable [0x0000000002EE3408, 0x0000000000000000 offset, 13 functions] `.?AVTESRegionData@@` -`class TESRegionDataGrass`: VTable [0x0000000002EE3580, 0x0000000000000000 offset, 15 functions] `.?AVTESRegionDataGrass@@` -`class TESRegionDataLandscape`: VTable [0x0000000002EE3750, 0x0000000000000000 offset, 16 functions] `.?AVTESRegionDataLandscape@@` -`class TESRegionDataMap`: VTable [0x0000000002EE3A48, 0x0000000000000000 offset, 13 functions] `.?AVTESRegionDataMap@@` -`class TESRegionDataObjects`: VTable [0x0000000002EE3C38, 0x0000000000000000 offset, 18 functions] `.?AVTESRegionDataObjects@@` -`class TESRegionDataSound`: VTable [0x0000000002EE4268, 0x0000000000000000 offset, 14 functions] `.?AVTESRegionDataSound@@` -`class TESRegionDataWeather`: VTable [0x0000000002EE4630, 0x0000000000000000 offset, 14 functions] `.?AVTESRegionDataWeather@@` -`class TESRegionObjectBase`: VTable [0x0000000002EE4780, 0x0000000000000000 offset, 6 functions] `.?AVTESRegionObjectBase@@` -`class TESRegionGrassObject`: VTable [0x0000000002EE47C8, 0x0000000000000000 offset, 10 functions] `.?AVTESRegionGrassObject@@` -`class TESRegionGrassObjectList`: VTable [0x0000000002EE4B18, 0x0000000000000000 offset, 1 functions] `.?AVTESRegionGrassObjectList@@` -`class TESRegionList`: VTable [0x0000000002EE4C80, 0x0000000000000000 offset, 3 functions] `.?AVTESRegionList@@` -`class TESRegionNoiseFunction`: VTable [0x0000000002EE4CA8, 0x0000000000000000 offset, 1 functions] `.?AVTESRegionNoiseFunction@@` -`class TESRegionObject`: VTable [0x0000000002EE4DF0, 0x0000000000000000 offset, 6 functions] `.?AVTESRegionObject@@` -`class TESRegionObjectList`: VTable [0x0000000002EE5040, 0x0000000000000000 offset, 1 functions] `.?AVTESRegionObjectList@@` -`class BGSAction`: VTable [0x0000000002EE53B8, 0x0000000000000000 offset, 101 functions] `.?AVBGSAction@@` -`class ConcreteFormFactory`: VTable [0x0000000002EE5790, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSAction@@$05@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EE57E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSAction@@$05$0EM@$0A@@@` -`class BGSAssociationType`: VTable [0x0000000002EE5990, 0x0000000000000000 offset, 101 functions] `.?AVBGSAssociationType@@` -`class ConcreteFormFactory`: VTable [0x0000000002EE5D68, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSAssociationType@@$0HL@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EE5DB8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSAssociationType@@$0HL@$0FC@$04@@` -`class TESModelPSA`: VTable [0x0000000002EE6068, 0x0000000000000000 offset, 20 functions] `.?AVTESModelPSA@@` -`class BGSPreloadable`: VTable [0x0000000002EE6688, 0x0000000000000000 offset, 14 functions] `.?AVBGSPreloadable@@` -`class BGSBodyPartData`: VTable [0x0000000002EE6718, 0x0000000000000000 offset, 101 functions] `.?AVBGSBodyPartData@@` -`class BGSBodyPartData`: VTable [0x0000000002EE6AF0, 0x0000000000000028 offset, 20 functions] `.?AVBGSBodyPartData@@` -`class BGSBodyPartData`: VTable [0x0000000002EE6BC0, 0x0000000000000058 offset, 14 functions] `.?AVBGSBodyPartData@@` -`class ConcreteFormFactory`: VTable [0x0000000002EE6C50, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSBodyPartData@@$0FN@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EE6CA0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSBodyPartData@@$0FN@$0CI@$0A@@@` -`class NiTMapBase >,class NiAVObject * __ptr64,bool>`: VTable [0x0000000002EE6F68, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVNiAVObject@@_N@@@@PEAVNiAVObject@@_N@@` -`class NiTMap`: VTable [0x0000000002EE6FB8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVNiAVObject@@_N@@` -`class NiTMapBase >,unsigned char,bool>`: VTable [0x0000000002EE7008, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@E_N@@@@E_N@@` -`class NiTMap`: VTable [0x0000000002EE7058, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@E_N@@` -`class BGSDialogueBranch`: VTable [0x0000000002EE7740, 0x0000000000000000 offset, 101 functions] `.?AVBGSDialogueBranch@@` -`class ConcreteFormFactory`: VTable [0x0000000002EE7B18, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSDialogueBranch@@$0HD@@@` -`class BGSDialogueView`: VTable [0x0000000002EE8190, 0x0000000000000000 offset, 103 functions] `.?AVBGSDialogueView@@` -`class ConcreteFormFactory`: VTable [0x0000000002EE8578, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSDialogueView@@$0HF@@@` -`class BGSDialogueViewEventSink`: VTable [0x0000000002EE8DA0, 0x0000000000000000 offset, 8 functions] `.?AVBGSDialogueViewEventSink@@` -`class BGSEntryPointFunctionData`: VTable [0x0000000002EEA518, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionData@@` -`class BGSEntryPointFunctionDataOneValue`: VTable [0x0000000002EEA5D0, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataOneValue@@` -`class BGSEntryPointFunctionDataTwoValue`: VTable [0x0000000002EEA688, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataTwoValue@@` -`class BGSEntryPointFunctionDataLeveledList`: VTable [0x0000000002EEA740, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataLeveledList@@` -`class BGSEntryPointFunctionDataSpellItem`: VTable [0x0000000002EEA7F8, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataSpellItem@@` -`class BGSEntryPointFunctionDataBooleanGraphVariable`: VTable [0x0000000002EEA8B0, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataBooleanGraphVariable@@` -`class BGSEntryPointFunctionDataText`: VTable [0x0000000002EEA968, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataText@@` -`class BGSEntryPointFunctionDataActivateChoice`: VTable [0x0000000002EEAA20, 0x0000000000000000 offset, 18 functions] `.?AVBGSEntryPointFunctionDataActivateChoice@@` -`class BGSEquipSlot`: VTable [0x0000000002EEB5A8, 0x0000000000000000 offset, 101 functions] `.?AVBGSEquipSlot@@` -`class ConcreteFormFactory`: VTable [0x0000000002EEB980, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSEquipSlot@@$0HI@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EEB9D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSEquipSlot@@$0HI@$0FB@$04@@` -`class TESModelTri`: VTable [0x0000000002EEBEC8, 0x0000000000000000 offset, 20 functions] `.?AVTESModelTri@@` -`class BGSHeadPart`: VTable [0x0000000002EEBF98, 0x0000000000000000 offset, 101 functions] `.?AVBGSHeadPart@@` -`class BGSHeadPart`: VTable [0x0000000002EEC370, 0x0000000000000028 offset, 16 functions] `.?AVBGSHeadPart@@` -`class BGSHeadPart`: VTable [0x0000000002EEC418, 0x0000000000000040 offset, 20 functions] `.?AVBGSHeadPart@@` -`class ConcreteFormFactory`: VTable [0x0000000002EEC4E8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSHeadPart@@$0M@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EEC538, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSHeadPart@@$0M@$0DE@$04@@` -`class BGSIdleMarker`: VTable [0x0000000002EECC90, 0x0000000000000000 offset, 125 functions] `.?AVBGSIdleMarker@@` -`class BGSIdleMarker`: VTable [0x0000000002EED150, 0x0000000000000050 offset, 20 functions] `.?AVBGSIdleMarker@@` -`class BGSIdleMarker`: VTable [0x0000000002EED220, 0x0000000000000080 offset, 14 functions] `.?AVBGSIdleMarker@@` -`class ConcreteFormFactory`: VTable [0x0000000002EED2B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSIdleMarker@@$0CP@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EED300, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSIdleMarker@@$0CP@$0BO@$03@@` -`class BGSKeyword`: VTable [0x0000000002EED4F8, 0x0000000000000000 offset, 101 functions] `.?AVBGSKeyword@@` -`class ConcreteFormFactory`: VTable [0x0000000002EED8D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSKeyword@@$03@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EED920, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSKeyword@@$03$0EG@$03@@` -`class BGSBaseAlias`: VTable [0x0000000002EEDB70, 0x0000000000000000 offset, 20 functions] `.?AVBGSBaseAlias@@` -`class BGSLocAlias`: VTable [0x0000000002EEDC40, 0x0000000000000000 offset, 20 functions] `.?AVBGSLocAlias@@` -`class BGSMovementType`: VTable [0x0000000002EEE888, 0x0000000000000000 offset, 101 functions] `.?AVBGSMovementType@@` -`class ConcreteFormFactory`: VTable [0x0000000002EEEC60, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMovementType@@$0HP@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EEECB0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMovementType@@$0HP@$0FL@$04@@` -`class BGSNote`: VTable [0x0000000002EEF1B8, 0x0000000000000000 offset, 125 functions] `.?AVBGSNote@@` -`class BGSNote`: VTable [0x0000000002EEF678, 0x0000000000000050 offset, 20 functions] `.?AVBGSNote@@` -`class BGSNote`: VTable [0x0000000002EEF748, 0x0000000000000080 offset, 16 functions] `.?AVBGSNote@@` -`class BGSNote`: VTable [0x0000000002EEF7F0, 0x0000000000000098 offset, 20 functions] `.?AVBGSNote@@` -`class BGSNote`: VTable [0x0000000002EEF8C0, 0x00000000000000C0 offset, 14 functions] `.?AVBGSNote@@` -`class ConcreteFormFactory`: VTable [0x0000000002EEF950, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSNote@@$0DA@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EEF9A0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSNote@@$0DA@$0DG@$08@@` -`class BGSPerkEntry`: VTable [0x0000000002EF0390, 0x0000000000000000 offset, 25 functions] `.?AVBGSPerkEntry@@` -`class BGSQuestPerkEntry`: VTable [0x0000000002EF0490, 0x0000000000000000 offset, 25 functions] `.?AVBGSQuestPerkEntry@@` -`class BGSAbilityPerkEntry`: VTable [0x0000000002EF0590, 0x0000000000000000 offset, 25 functions] `.?AVBGSAbilityPerkEntry@@` -`class BGSEntryPointPerkEntry`: VTable [0x0000000002EF0690, 0x0000000000000000 offset, 25 functions] `.?AVBGSEntryPointPerkEntry@@` -`class BGSPerk`: VTable [0x0000000002EF0790, 0x0000000000000000 offset, 101 functions] `.?AVBGSPerk@@` -`class BGSPerk`: VTable [0x0000000002EF0B68, 0x0000000000000028 offset, 16 functions] `.?AVBGSPerk@@` -`class BGSPerk`: VTable [0x0000000002EF0C10, 0x0000000000000040 offset, 14 functions] `.?AVBGSPerk@@` -`class BGSPerk`: VTable [0x0000000002EF0CA0, 0x0000000000000068 offset, 20 functions] `.?AVBGSPerk@@` -`class ConcreteFormFactory`: VTable [0x0000000002EF0D70, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSPerk@@$0FM@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EF0DC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSPerk@@$0FM@$0CH@$0A@@@` -`class `anonymous namespace'::EntryPointFragmentUIHandler`: VTable [0x0000000002EF18E8, 0x0000000000000000 offset, 6 functions] `.?AVEntryPointFragmentUIHandler@?A0x30673c16@@` -`class `anonymous namespace'::FragmentRemoveCheckFunctor`: VTable [0x0000000002EF1970, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@?A0x30673c16@@` -`class BGSRagdoll`: VTable [0x0000000002EF22D0, 0x0000000000000000 offset, 101 functions] `.?AVBGSRagdoll@@` -`class BGSRagdoll`: VTable [0x0000000002EF26A8, 0x0000000000000028 offset, 20 functions] `.?AVBGSRagdoll@@` -`class ConcreteFormFactory`: VTable [0x0000000002EF2778, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSRagdoll@@$0GK@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EF27C8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSRagdoll@@$0GK@$0EB@$08@@` -`class BGSRefAlias`: VTable [0x0000000002EF3250, 0x0000000000000000 offset, 20 functions] `.?AVBGSRefAlias@@` -`class BGSRelationship`: VTable [0x0000000002EF4478, 0x0000000000000000 offset, 101 functions] `.?AVBGSRelationship@@` -`class ConcreteFormFactory`: VTable [0x0000000002EF4850, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSRelationship@@$0HJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EF48A0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSRelationship@@$0HJ@$0FA@$04@@` -`class BGSScene`: VTable [0x0000000002EF5168, 0x0000000000000000 offset, 101 functions] `.?AVBGSScene@@` -`class ConcreteFormFactory`: VTable [0x0000000002EF5540, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSScene@@$0HK@@@` -`class BGSSceneEventSink`: VTable [0x0000000002EF68B0, 0x0000000000000000 offset, 8 functions] `.?AVBGSSceneEventSink@@` -`class `anonymous namespace'::BaseSceneFragmentUIHandler`: VTable [0x0000000002EF6908, 0x0000000000000000 offset, 6 functions] `.?AVBaseSceneFragmentUIHandler@?A0xfa90be58@@` -`class `anonymous namespace'::BeginFragmentUIHandler`: VTable [0x0000000002EF6950, 0x0000000000000000 offset, 6 functions] `.?AVBeginFragmentUIHandler@?A0xfa90be58@@` -`class `anonymous namespace'::EndFragmentUIHandler`: VTable [0x0000000002EF6998, 0x0000000000000000 offset, 6 functions] `.?AVEndFragmentUIHandler@?A0xfa90be58@@` -`class SceneInternal::IGetEditedFragmentCodeFunctor`: VTable [0x0000000002EF69E0, 0x0000000000000000 offset, 2 functions] `.?AVIGetEditedFragmentCodeFunctor@SceneInternal@@` -`class SceneInternal::BeginFragmentEdited`: VTable [0x0000000002EF6A00, 0x0000000000000000 offset, 2 functions] `.?AVBeginFragmentEdited@SceneInternal@@` -`class SceneInternal::EndFragmentEdited`: VTable [0x0000000002EF6A20, 0x0000000000000000 offset, 2 functions] `.?AVEndFragmentEdited@SceneInternal@@` -`class SceneInternal::ActionFragmentEdited`: VTable [0x0000000002EF6A40, 0x0000000000000000 offset, 2 functions] `.?AVActionFragmentEdited@SceneInternal@@` -`class SceneInternal::PhaseBeginFragmentEdited`: VTable [0x0000000002EF6A60, 0x0000000000000000 offset, 2 functions] `.?AVPhaseBeginFragmentEdited@SceneInternal@@` -`class SceneInternal::PhaseEndFragmentEdited`: VTable [0x0000000002EF6A80, 0x0000000000000000 offset, 2 functions] `.?AVPhaseEndFragmentEdited@SceneInternal@@` -`class SceneInternal::FragmentRemoveCheckFunctor`: VTable [0x0000000002EF6AA0, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@SceneInternal@@` -`class BGSSceneAction`: VTable [0x0000000002EF70A0, 0x0000000000000000 offset, 25 functions] `.?AVBGSSceneAction@@` -`class BGSSceneActionDialogue`: VTable [0x0000000002EF71A0, 0x0000000000000000 offset, 25 functions] `.?AVBGSSceneActionDialogue@@` -`class BGSSceneActionPackage`: VTable [0x0000000002EF72A0, 0x0000000000000000 offset, 25 functions] `.?AVBGSSceneActionPackage@@` -`class BGSSceneActionTimer`: VTable [0x0000000002EF78B8, 0x0000000000000000 offset, 25 functions] `.?AVBGSSceneActionTimer@@` -`class `anonymous namespace'::FragmentUIHandler`: VTable [0x0000000002EF7B78, 0x0000000000000000 offset, 6 functions] `.?AVFragmentUIHandler@?A0xf847a945@@` -`class `anonymous namespace'::BaseSceneFragmentUIHandler`: VTable [0x0000000002EF7E70, 0x0000000000000000 offset, 6 functions] `.?AVBaseSceneFragmentUIHandler@?A0xa5e5e780@@` -`class `anonymous namespace'::BeginFragmentUIHandler`: VTable [0x0000000002EF7EB8, 0x0000000000000000 offset, 6 functions] `.?AVBeginFragmentUIHandler@?A0xa5e5e780@@` -`class `anonymous namespace'::EndFragmentUIHandler`: VTable [0x0000000002EF7F00, 0x0000000000000000 offset, 6 functions] `.?AVEndFragmentUIHandler@?A0xa5e5e780@@` -`class BGSVoiceType`: VTable [0x0000000002EF8160, 0x0000000000000000 offset, 101 functions] `.?AVBGSVoiceType@@` -`class ConcreteFormFactory`: VTable [0x0000000002EF8538, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSVoiceType@@$0GC@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EF8588, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSVoiceType@@$0GC@$0DA@$04@@` -`class CreatureSounds`: VTable [0x0000000002EF8A18, 0x0000000000000000 offset, 2 functions] `.?AVCreatureSounds@@` -`class TESAnimGroup`: VTable [0x0000000002EF9DD8, 0x0000000000000000 offset, 2 functions] `.?AVTESAnimGroup@@` -`class TESClass`: VTable [0x0000000002EFA338, 0x0000000000000000 offset, 101 functions] `.?AVTESClass@@` -`class TESClass`: VTable [0x0000000002EFA710, 0x0000000000000028 offset, 16 functions] `.?AVTESClass@@` -`class TESClass`: VTable [0x0000000002EFA7B8, 0x0000000000000040 offset, 14 functions] `.?AVTESClass@@` -`class TESClass`: VTable [0x0000000002EFA848, 0x0000000000000068 offset, 20 functions] `.?AVTESClass@@` -`class ConcreteFormFactory`: VTable [0x0000000002EFA918, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESClass@@$09@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EFA968, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESClass@@$09$0DB@$04@@` -`class TESEyes`: VTable [0x0000000002EFAB68, 0x0000000000000000 offset, 101 functions] `.?AVTESEyes@@` -`class TESEyes`: VTable [0x0000000002EFAF40, 0x0000000000000028 offset, 16 functions] `.?AVTESEyes@@` -`class TESEyes`: VTable [0x0000000002EFAFE8, 0x0000000000000040 offset, 20 functions] `.?AVTESEyes@@` -`class ConcreteFormFactory`: VTable [0x0000000002EFB0B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESEyes@@$0N@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EFB108, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESEyes@@$0N@$0DD@$08@@` -`class TESFaction`: VTable [0x0000000002EFB3E8, 0x0000000000000000 offset, 101 functions] `.?AVTESFaction@@` -`class TESFaction`: VTable [0x0000000002EFB7C0, 0x0000000000000028 offset, 16 functions] `.?AVTESFaction@@` -`class TESFaction`: VTable [0x0000000002EFB868, 0x0000000000000040 offset, 14 functions] `.?AVTESFaction@@` -`class ConcreteFormFactory`: VTable [0x0000000002EFB8F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESFaction@@$0L@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002EFB948, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESFaction@@$0L@$0DF@$04@@` -`class NiTLargeArray >`: VTable [0x0000000002EFC4F0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@PEAVTESForm@@V?$NiTMallocInterface@PEAVTESForm@@@@@@` -`class NiTLargePrimitiveArray`: VTable [0x0000000002EFC508, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargePrimitiveArray@PEAVTESForm@@@@` -`class NiFormArray`: VTable [0x0000000002EFC520, 0x0000000000000000 offset, 1 functions] `.?AVNiFormArray@@` -`class TESIdleForm`: VTable [0x0000000002EFC538, 0x0000000000000000 offset, 101 functions] `.?AVTESIdleForm@@` -`class ConcreteFormFactory`: VTable [0x0000000002EFC930, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESIdleForm@@$0EO@@@` -`class BSMapBase`: VTable [0x0000000002EFCA80, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESIdleForm@@_N@@` -`class BSScrapMap`: VTable [0x0000000002EFCAD0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@PEAVTESIdleForm@@_N@@` -`class ActorValueOwner`: VTable [0x0000000002EFEB40, 0x0000000000000000 offset, 9 functions] `.?AVActorValueOwner@@` -`class TESActorBase`: VTable [0x0000000002EFEBA0, 0x0000000000000000 offset, 129 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x0000000002EFF080, 0x0000000000000050 offset, 20 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x0000000002EFF150, 0x00000000000000A0 offset, 15 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x0000000002EFF1F0, 0x00000000000000B8 offset, 14 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x0000000002EFF280, 0x00000000000000C8 offset, 14 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x0000000002EFF310, 0x00000000000000F8 offset, 16 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x0000000002EFF3B8, 0x0000000000000110 offset, 9 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x0000000002EFF418, 0x0000000000000118 offset, 14 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x0000000002EFF4A8, 0x0000000000000128 offset, 14 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x0000000002EFF538, 0x0000000000000140 offset, 16 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x0000000002EFF5E0, 0x0000000000000158 offset, 14 functions] `.?AVTESActorBase@@` -`class TESActorBase`: VTable [0x0000000002EFF670, 0x0000000000000168 offset, 14 functions] `.?AVTESActorBase@@` -`class TESNPC`: VTable [0x0000000002EFF700, 0x0000000000000000 offset, 129 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002EFFBE0, 0x0000000000000050 offset, 20 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002EFFCB0, 0x00000000000000A0 offset, 15 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002EFFD50, 0x00000000000000B8 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002EFFDE0, 0x00000000000000C8 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002EFFE70, 0x00000000000000F8 offset, 16 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002EFFF18, 0x0000000000000110 offset, 9 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002EFFF78, 0x0000000000000118 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002F00008, 0x0000000000000128 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002F00098, 0x0000000000000140 offset, 16 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002F00140, 0x0000000000000158 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002F001D0, 0x0000000000000168 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002F00260, 0x0000000000000178 offset, 14 functions] `.?AVTESNPC@@` -`class TESNPC`: VTable [0x0000000002F002F0, 0x0000000000000188 offset, 14 functions] `.?AVTESNPC@@` -`class ConcreteFormFactory`: VTable [0x0000000002F003E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESNPC@@$0CL@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F00430, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESNPC@@$0CL@$0N@$0A@@@` -`class `anonymous namespace'::InitWornVisitor`: VTable [0x0000000002F00EF8, 0x0000000000000000 offset, 4 functions] `.?AVInitWornVisitor@?A0xf905d547@@` -`class TESQuest`: VTable [0x0000000002F03210, 0x0000000000000000 offset, 106 functions] `.?AVTESQuest@@` -`class TESQuest`: VTable [0x0000000002F03618, 0x0000000000000028 offset, 16 functions] `.?AVTESQuest@@` -`class ConcreteFormFactory`: VTable [0x0000000002F03758, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESQuest@@$0EN@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F037A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESQuest@@$0EN@$0CO@$04@@` -`class TESQuest::IAliasFilterFunctor`: VTable [0x0000000002F04E98, 0x0000000000000000 offset, 2 functions] `.?AVIAliasFilterFunctor@TESQuest@@` -`class QuestInternal::FragmentRemoveCheckFunctor`: VTable [0x0000000002F04EE8, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@QuestInternal@@` -`class `anonymous namespace'::LocAliasOnly`: VTable [0x0000000002F04F88, 0x0000000000000000 offset, 2 functions] `.?AVLocAliasOnly@?A0x33927a8c@@` -`class `anonymous namespace'::RefAliasOnly`: VTable [0x0000000002F04FA8, 0x0000000000000000 offset, 2 functions] `.?AVRefAliasOnly@?A0x33927a8c@@` -`class REFREventCallbacks::IEventCallback`: VTable [0x0000000002F05A70, 0x0000000000000000 offset, 5 functions] `.?AVIEventCallback@REFREventCallbacks@@` -`class REFREventCallbacks::IEventCallbackFactory`: VTable [0x0000000002F05AB0, 0x0000000000000000 offset, 5 functions] `.?AVIEventCallbackFactory@REFREventCallbacks@@` -`class `anonymous namespace'::StageItemFinishedCallback`: VTable [0x0000000002F05AF0, 0x0000000000000000 offset, 5 functions] `.?AVStageItemFinishedCallback@?A0xcad73970@@` -`class REFREventCallbacks::ConcreteEventCallbackFactory`: VTable [0x0000000002F05B40, 0x0000000000000000 offset, 5 functions] `.?AV?$ConcreteEventCallbackFactory@VStageItemFinishedCallback@?A0xcad73970@@@REFREventCallbacks@@` -`class `anonymous namespace'::StageFragmentUIHandler`: VTable [0x0000000002F05F30, 0x0000000000000000 offset, 6 functions] `.?AVStageFragmentUIHandler@?A0x5482fa84@@` -`class BGSTextureModel`: VTable [0x0000000002F06E60, 0x0000000000000000 offset, 20 functions] `.?AVBGSTextureModel@@` -`class BGSBehaviorGraphModel`: VTable [0x0000000002F06F30, 0x0000000000000000 offset, 20 functions] `.?AVBGSBehaviorGraphModel@@` -`class AttackAnimationArrayMap`: VTable [0x0000000002F07000, 0x0000000000000000 offset, 2 functions] `.?AVAttackAnimationArrayMap@@` -`class TESRace`: VTable [0x0000000002F07020, 0x0000000000000000 offset, 101 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x0000000002F073F8, 0x0000000000000028 offset, 16 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x0000000002F074A0, 0x0000000000000040 offset, 14 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x0000000002F07530, 0x0000000000000068 offset, 14 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x0000000002F075C0, 0x0000000000000078 offset, 14 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x0000000002F07650, 0x0000000000000090 offset, 14 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x0000000002F076E0, 0x00000000000000A0 offset, 16 functions] `.?AVTESRace@@` -`class TESRace`: VTable [0x0000000002F07788, 0x00000000000000B8 offset, 14 functions] `.?AVTESRace@@` -`class ConcreteFormFactory`: VTable [0x0000000002F07818, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESRace@@$0O@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F07868, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESRace@@$0O@$0DC@$04@@` -`class TESTopic`: VTable [0x0000000002F0A220, 0x0000000000000000 offset, 101 functions] `.?AVTESTopic@@` -`class TESTopic`: VTable [0x0000000002F0A5F8, 0x0000000000000028 offset, 16 functions] `.?AVTESTopic@@` -`class ConcreteFormFactory`: VTable [0x0000000002F0A6C8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESTopic@@$0EL@@@` -`class NiTMapBase >,class TESTopicInfo * __ptr64,bool>`: VTable [0x0000000002F0B588, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESTopicInfo@@_N@@@@PEAVTESTopicInfo@@_N@@` -`class NiTMap`: VTable [0x0000000002F0B5D8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESTopicInfo@@_N@@` -`class TESTopicInfo`: VTable [0x0000000002F0BD30, 0x0000000000000000 offset, 103 functions] `.?AVTESTopicInfo@@` -`class ConcreteFormFactory`: VTable [0x0000000002F0C290, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESTopicInfo@@$0EM@@@` -`class `anonymous namespace'::TopicFragmentUIHandler`: VTable [0x0000000002F0CE50, 0x0000000000000000 offset, 6 functions] `.?AVTopicFragmentUIHandler@?A0xf4c1b628@@` -`class TopicInfoInternal::FragmentRemoveCheckFunctor`: VTable [0x0000000002F0D090, 0x0000000000000000 offset, 2 functions] `.?AVFragmentRemoveCheckFunctor@TopicInfoInternal@@` -`class BGSAcousticSpace`: VTable [0x0000000002F0D488, 0x0000000000000000 offset, 125 functions] `.?AVBGSAcousticSpace@@` -`class ConcreteFormFactory`: VTable [0x0000000002F0D948, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSAcousticSpace@@$0BA@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F0D998, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSAcousticSpace@@$0BA@$0EA@$07@@` -`class BGSCameraPath`: VTable [0x0000000002F0DE28, 0x0000000000000000 offset, 101 functions] `.?AVBGSCameraPath@@` -`class ConcreteFormFactory`: VTable [0x0000000002F0E200, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSCameraPath@@$0GB@@@` -`class NiTArray >`: VTable [0x0000000002F0E548, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVBGSCameraPath@@V?$NiTMallocInterface@PEAVBGSCameraPath@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000002F0E560, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVBGSCameraPath@@@@` -`class BGSCameraShot`: VTable [0x0000000002F0E918, 0x0000000000000000 offset, 101 functions] `.?AVBGSCameraShot@@` -`class BGSCameraShot`: VTable [0x0000000002F0ECF0, 0x0000000000000028 offset, 20 functions] `.?AVBGSCameraShot@@` -`class BGSCameraShot`: VTable [0x0000000002F0EDC0, 0x0000000000000058 offset, 14 functions] `.?AVBGSCameraShot@@` -`class IJSONSerializer`: VTable [0x0000000002F0EE50, 0x0000000000000000 offset, 3 functions] `.?AVIJSONSerializer@@` -`class ConcreteFormFactory`: VTable [0x0000000002F0EE78, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSCameraShot@@$0GA@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F0EEC8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSCameraShot@@$0GA@$0CL@$05@@` -`class JSONSerializerBase`: VTable [0x0000000002F0F018, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VCameraShotSerializer@?A0xf0202628@@VBGSCameraShot@@$0GA@@@` -`class `anonymous namespace'::CameraShotSerializer`: VTable [0x0000000002F0F040, 0x0000000000000000 offset, 3 functions] `.?AVCameraShotSerializer@?A0xf0202628@@` -`class BGSCollisionLayer`: VTable [0x0000000002F0F4C0, 0x0000000000000000 offset, 101 functions] `.?AVBGSCollisionLayer@@` -`class BGSCollisionLayer`: VTable [0x0000000002F0F898, 0x0000000000000028 offset, 14 functions] `.?AVBGSCollisionLayer@@` -`class ConcreteFormFactory`: VTable [0x0000000002F0F928, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSCollisionLayer@@$0IE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F0F978, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSCollisionLayer@@$0IE@$0GD@$03@@` -`class BGSColorForm`: VTable [0x0000000002F10388, 0x0000000000000000 offset, 101 functions] `.?AVBGSColorForm@@` -`class BGSColorForm`: VTable [0x0000000002F10760, 0x0000000000000028 offset, 16 functions] `.?AVBGSColorForm@@` -`class ConcreteFormFactory`: VTable [0x0000000002F10808, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSColorForm@@$0IF@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F10858, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSColorForm@@$0IF@$0GF@$03@@` -`class BGSDefaultObjectManager`: VTable [0x0000000002F13788, 0x0000000000000000 offset, 101 functions] `.?AVBGSDefaultObjectManager@@` -`class BGSFootstep`: VTable [0x0000000002F13EF8, 0x0000000000000000 offset, 101 functions] `.?AVBGSFootstep@@` -`class ConcreteFormFactory`: VTable [0x0000000002F142D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSFootstep@@$0GO@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F14320, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSFootstep@@$0GO@$0EJ@$05@@` -`class BGSFootstepSet`: VTable [0x0000000002F14698, 0x0000000000000000 offset, 101 functions] `.?AVBGSFootstepSet@@` -`class ConcreteFormFactory`: VTable [0x0000000002F14A70, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSFootstepSet@@$0GP@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F14AC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSFootstepSet@@$0GP@$0EK@$05@@` -`class BGSImpactData`: VTable [0x0000000002F14DB8, 0x0000000000000000 offset, 101 functions] `.?AVBGSImpactData@@` -`class BGSImpactData`: VTable [0x0000000002F15190, 0x0000000000000028 offset, 20 functions] `.?AVBGSImpactData@@` -`class ConcreteFormFactory`: VTable [0x0000000002F15260, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSImpactData@@$0GE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F152B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSImpactData@@$0GE@$0CM@$05@@` -`class BGSImpactDataSet`: VTable [0x0000000002F15778, 0x0000000000000000 offset, 101 functions] `.?AVBGSImpactDataSet@@` -`class BGSImpactDataSet`: VTable [0x0000000002F15B50, 0x0000000000000028 offset, 14 functions] `.?AVBGSImpactDataSet@@` -`class ConcreteFormFactory`: VTable [0x0000000002F15BE0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSImpactDataSet@@$0GF@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F15C30, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSImpactDataSet@@$0GF@$0CN@$05@@` -`class BGSListForm`: VTable [0x0000000002F16268, 0x0000000000000000 offset, 101 functions] `.?AVBGSListForm@@` -`class ConcreteFormFactory`: VTable [0x0000000002F16640, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSListForm@@$0FL@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F16690, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSListForm@@$0FL@$0CG@$03@@` -`class BSMaterialObject`: VTable [0x0000000002F16C18, 0x0000000000000000 offset, 2 functions] `.?AVBSMaterialObject@@` -`class BGSMaterialObject`: VTable [0x0000000002F16C38, 0x0000000000000000 offset, 101 functions] `.?AVBGSMaterialObject@@` -`class BGSMaterialObject`: VTable [0x0000000002F17010, 0x0000000000000028 offset, 20 functions] `.?AVBGSMaterialObject@@` -`class BGSMaterialObject`: VTable [0x0000000002F170E0, 0x0000000000000058 offset, 2 functions] `.?AVBGSMaterialObject@@` -`class ConcreteFormFactory`: VTable [0x0000000002F17100, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMaterialObject@@$0HO@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F17150, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMaterialObject@@$0HO@$0FF@$03@@` -`class BGSMaterialType`: VTable [0x0000000002F176E0, 0x0000000000000000 offset, 101 functions] `.?AVBGSMaterialType@@` -`class ConcreteFormFactory`: VTable [0x0000000002F17AB8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMaterialType@@$0GD@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F17B08, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMaterialType@@$0GD@$0EL@$05@@` -`class BSMapBase`: VTable [0x0000000002F17FA0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@IPEAVBGSMaterialType@@@@` -`class BSScrapMap`: VTable [0x0000000002F17FF0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@IPEAVBGSMaterialType@@@@` -`class BGSMenuIcon`: VTable [0x0000000002F18248, 0x0000000000000000 offset, 101 functions] `.?AVBGSMenuIcon@@` -`class BGSMenuIcon`: VTable [0x0000000002F18620, 0x0000000000000028 offset, 20 functions] `.?AVBGSMenuIcon@@` -`class ConcreteFormFactory`: VTable [0x0000000002F186F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMenuIcon@@$07@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F18740, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMenuIcon@@$07$0CF@$08@@` -`class BGSMessage`: VTable [0x0000000002F189E8, 0x0000000000000000 offset, 101 functions] `.?AVBGSMessage@@` -`class BGSMessage`: VTable [0x0000000002F18DC0, 0x0000000000000028 offset, 16 functions] `.?AVBGSMessage@@` -`class BGSMessage`: VTable [0x0000000002F18E68, 0x0000000000000040 offset, 14 functions] `.?AVBGSMessage@@` -`class ConcreteFormFactory`: VTable [0x0000000002F18F10, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMessage@@$0GJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F18F60, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMessage@@$0GJ@$0DO@$03@@` -`class BGSMusicPaletteTrack`: VTable [0x0000000002F19840, 0x0000000000000000 offset, 29 functions] `.?AVBGSMusicPaletteTrack@@` -`struct IBSTCreator`: VTable [0x0000000002F19960, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSIMusicTrack@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002F19988, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSMusicPaletteTrack@@VBSIMusicTrack@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F199B0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSMusicPaletteTrack@@VBSIMusicTrack@@@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002F199D8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSMusicPaletteTrack@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` -`class BGSMusicSilenceTrack`: VTable [0x0000000002F19FC8, 0x0000000000000000 offset, 27 functions] `.?AVBGSMusicSilenceTrack@@` -`struct BSTDerivedCreator`: VTable [0x0000000002F1A0D8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSMusicSilenceTrack@@VBSIMusicTrack@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F1A100, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSMusicSilenceTrack@@VBSIMusicTrack@@@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002F1A128, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSMusicSilenceTrack@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` -`class BGSMusicSingleTrack`: VTable [0x0000000002F1A380, 0x0000000000000000 offset, 27 functions] `.?AVBGSMusicSingleTrack@@` -`struct BSTDerivedCreator`: VTable [0x0000000002F1A498, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSMusicSingleTrack@@VBSIMusicTrack@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F1A4C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSMusicSingleTrack@@VBSIMusicTrack@@@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002F1A4E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSMusicSingleTrack@@V?$BSTCreateFactoryManager@IVBSIMusicTrack@@$07@@@@` -`class BSIMusicTrack`: VTable [0x0000000002F1A940, 0x0000000000000000 offset, 11 functions] `.?AVBSIMusicTrack@@` -`class BGSMusicTrack`: VTable [0x0000000002F1A9B8, 0x0000000000000000 offset, 27 functions] `.?AVBGSMusicTrack@@` -`class BGSMusicTrackFormWrapper`: VTable [0x0000000002F1ADA8, 0x0000000000000000 offset, 101 functions] `.?AVBGSMusicTrackFormWrapper@@` -`class BGSMusicTrackFormWrapper`: VTable [0x0000000002F1B180, 0x0000000000000028 offset, 11 functions] `.?AVBGSMusicTrackFormWrapper@@` -`class ConcreteFormFactory`: VTable [0x0000000002F1B228, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMusicTrackFormWrapper@@$0HE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F1B278, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMusicTrackFormWrapper@@$0HE@$0EN@$07@@` -`class BSIMusicType`: VTable [0x0000000002F1B6C8, 0x0000000000000000 offset, 9 functions] `.?AVBSIMusicType@@` -`class BGSMusicType`: VTable [0x0000000002F1B728, 0x0000000000000000 offset, 101 functions] `.?AVBGSMusicType@@` -`class BGSMusicType`: VTable [0x0000000002F1BB00, 0x0000000000000028 offset, 9 functions] `.?AVBGSMusicType@@` -`class ConcreteFormFactory`: VTable [0x0000000002F1BB60, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMusicType@@$0GN@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F1BBB0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMusicType@@$0GN@$0EE@$07@@` -`class BSIReverbType`: VTable [0x0000000002F1BF50, 0x0000000000000000 offset, 11 functions] `.?AVBSIReverbType@@` -`class BGSReverbParameters`: VTable [0x0000000002F1BFC8, 0x0000000000000000 offset, 102 functions] `.?AVBGSReverbParameters@@` -`class BGSReverbParameters`: VTable [0x0000000002F1C3A8, 0x0000000000000028 offset, 11 functions] `.?AVBGSReverbParameters@@` -`class ConcreteFormFactory`: VTable [0x0000000002F1C420, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSReverbParameters@@$0IG@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F1C470, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSReverbParameters@@$0IG@$0GG@$07@@` -`class BSISoundCategory`: VTable [0x0000000002F1C9D0, 0x0000000000000000 offset, 12 functions] `.?AVBSISoundCategory@@` -`class BGSSoundCategory`: VTable [0x0000000002F1CA50, 0x0000000000000000 offset, 101 functions] `.?AVBGSSoundCategory@@` -`class BGSSoundCategory`: VTable [0x0000000002F1CE28, 0x0000000000000028 offset, 16 functions] `.?AVBGSSoundCategory@@` -`class BGSSoundCategory`: VTable [0x0000000002F1CED0, 0x0000000000000040 offset, 12 functions] `.?AVBGSSoundCategory@@` -`class ConcreteFormFactory`: VTable [0x0000000002F1CF50, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSSoundCategory@@$0IC@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F1CFA0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSSoundCategory@@$0IC@$0GA@$07@@` -`class JSONSerializerBase`: VTable [0x0000000002F1D030, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VSoundCatSerializer@?A0xcb7175b5@@VBGSSoundCategory@@$0IC@@@` -`class `anonymous namespace'::SoundCatSerializer`: VTable [0x0000000002F1D058, 0x0000000000000000 offset, 3 functions] `.?AVSoundCatSerializer@?A0xcb7175b5@@` -`class BSISoundDescriptor`: VTable [0x0000000002F1D8F0, 0x0000000000000000 offset, 3 functions] `.?AVBSISoundDescriptor@@` -`class BGSSoundDescriptorForm`: VTable [0x0000000002F1D918, 0x0000000000000000 offset, 102 functions] `.?AVBGSSoundDescriptorForm@@` -`class BGSSoundDescriptorForm`: VTable [0x0000000002F1DCF8, 0x0000000000000028 offset, 3 functions] `.?AVBGSSoundDescriptorForm@@` -`class ConcreteFormFactory`: VTable [0x0000000002F1DD20, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSSoundDescriptorForm@@$0IA@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F1DD70, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSSoundDescriptorForm@@$0IA@$0FO@$07@@` -`class JSONSerializerBase`: VTable [0x0000000002F1DDD8, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VSoundDescSerializer@?A0xe1a7ce1b@@VBGSSoundDescriptorForm@@$0IA@@@` -`class `anonymous namespace'::SoundDescSerializer`: VTable [0x0000000002F1DE00, 0x0000000000000000 offset, 3 functions] `.?AVSoundDescSerializer@?A0xe1a7ce1b@@` -`struct BSISoundOutputModel::BSIAttenuationCharacteristics`: VTable [0x0000000002F1E228, 0x0000000000000000 offset, 4 functions] `.?AUBSIAttenuationCharacteristics@BSISoundOutputModel@@` -`class BSISoundOutputModel`: VTable [0x0000000002F1E258, 0x0000000000000000 offset, 10 functions] `.?AVBSISoundOutputModel@@` -`struct BGSSoundOutput::DynamicAttenuationCharacteristics`: VTable [0x0000000002F1E2C8, 0x0000000000000000 offset, 4 functions] `.?AUDynamicAttenuationCharacteristics@BGSSoundOutput@@` -`class BGSSoundOutput`: VTable [0x0000000002F1E2F8, 0x0000000000000000 offset, 101 functions] `.?AVBGSSoundOutput@@` -`class BGSSoundOutput`: VTable [0x0000000002F1E6D0, 0x0000000000000028 offset, 10 functions] `.?AVBGSSoundOutput@@` -`class ConcreteFormFactory`: VTable [0x0000000002F1E828, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSSoundOutput@@$0ID@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F1E878, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSSoundOutput@@$0ID@$0GC@$07@@` -`struct BSISoundDescriptor::BSIPlaybackCharacteristics`: VTable [0x0000000002F1EEF8, 0x0000000000000000 offset, 6 functions] `.?AUBSIPlaybackCharacteristics@BSISoundDescriptor@@` -`class BGSSoundDescriptor`: VTable [0x0000000002F1EF40, 0x0000000000000000 offset, 27 functions] `.?AVBGSSoundDescriptor@@` -`struct BGSStandardSoundDef::SoundPlaybackCharacteristics`: VTable [0x0000000002F1F050, 0x0000000000000000 offset, 6 functions] `.?AUSoundPlaybackCharacteristics@BGSStandardSoundDef@@` -`class BGSStandardSoundDef`: VTable [0x0000000002F1F098, 0x0000000000000000 offset, 27 functions] `.?AVBGSStandardSoundDef@@` -`struct IBSTCreator`: VTable [0x0000000002F1F1A8, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBGSSoundDescriptor@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002F1F1D0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBGSStandardSoundDef@@VBGSSoundDescriptor@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000002F1F1F8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBGSStandardSoundDef@@VBGSSoundDescriptor@@@@V?$BSTCreateFactoryManager@IVBGSSoundDescriptor@@$07@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002F1F220, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBGSStandardSoundDef@@V?$BSTCreateFactoryManager@IVBGSSoundDescriptor@@$07@@@@` -`class BSTextureSet`: VTable [0x0000000002F1FB80, 0x0000000000000000 offset, 42 functions] `.?AVBSTextureSet@@` -`class BSShaderTextureSet`: VTable [0x0000000002F1FD20, 0x0000000000000000 offset, 42 functions] `.?AVBSShaderTextureSet@@` -`class BGSTextureSet`: VTable [0x0000000002F1FEC0, 0x0000000000000000 offset, 125 functions] `.?AVBGSTextureSet@@` -`class BGSTextureSet`: VTable [0x0000000002F20380, 0x0000000000000050 offset, 42 functions] `.?AVBGSTextureSet@@` -`class ConcreteFormFactory`: VTable [0x0000000002F20520, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSTextureSet@@$06@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F20570, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSTextureSet@@$06$0CD@$03@@` -`class `anonymous namespace'::GameSettingFactory`: VTable [0x0000000002F20DA0, 0x0000000000000000 offset, 7 functions] `.?AVGameSettingFactory@?A0xa290fe22@@` -`class TESGlobal`: VTable [0x0000000002F211D8, 0x0000000000000000 offset, 101 functions] `.?AVTESGlobal@@` -`class ConcreteFormFactory`: VTable [0x0000000002F215B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESGlobal@@$08@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F21600, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESGlobal@@$08$0DK@$03@@` -`class TESLoadScreen`: VTable [0x0000000002F217C8, 0x0000000000000000 offset, 101 functions] `.?AVTESLoadScreen@@` -`class TESLoadScreen`: VTable [0x0000000002F21BA0, 0x0000000000000028 offset, 14 functions] `.?AVTESLoadScreen@@` -`class ConcreteFormFactory`: VTable [0x0000000002F21C30, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLoadScreen@@$0FB@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F21C80, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLoadScreen@@$0FB@$0BK@$03@@` -`class Script`: VTable [0x0000000002F222D8, 0x0000000000000000 offset, 103 functions] `.?AVScript@@` -`class ConcreteFormFactory`: VTable [0x0000000002F226C0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VScript@@$0BD@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F22710, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VScript@@$0BD@$0EC@$08@@` -`struct `anonymous namespace'::FindFormTypeHelper`: VTable [0x0000000002F24D80, 0x0000000000000000 offset, 2 functions] `.?AUFindFormTypeHelper@?A0x8863491e@@` -`class BSNodeVisualization::MatchingNodeVisualizer`: VTable [0x0000000002F26C18, 0x0000000000000000 offset, 2 functions] `.?AVMatchingNodeVisualizer@BSNodeVisualization@@` -`class TESShout`: VTable [0x0000000002F35028, 0x0000000000000000 offset, 101 functions] `.?AVTESShout@@` -`class TESShout`: VTable [0x0000000002F35400, 0x0000000000000028 offset, 16 functions] `.?AVTESShout@@` -`class TESShout`: VTable [0x0000000002F354A8, 0x0000000000000040 offset, 15 functions] `.?AVTESShout@@` -`class TESShout`: VTable [0x0000000002F35548, 0x0000000000000050 offset, 16 functions] `.?AVTESShout@@` -`class TESShout`: VTable [0x0000000002F355F0, 0x0000000000000060 offset, 14 functions] `.?AVTESShout@@` -`class ConcreteFormFactory`: VTable [0x0000000002F35860, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESShout@@$0HH@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F358B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESShout@@$0HH@$0EP@$01@@` -`class TESSound`: VTable [0x0000000002F35B70, 0x0000000000000000 offset, 125 functions] `.?AVTESSound@@` -`class ConcreteFormFactory`: VTable [0x0000000002F36030, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESSound@@$0P@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F36080, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESSound@@$0P@$0BH@$07@@` -`class TESWordOfPower`: VTable [0x0000000002F362F8, 0x0000000000000000 offset, 101 functions] `.?AVTESWordOfPower@@` -`class TESWordOfPower`: VTable [0x0000000002F366D0, 0x0000000000000028 offset, 16 functions] `.?AVTESWordOfPower@@` -`class ConcreteFormFactory`: VTable [0x0000000002F36778, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESWordOfPower@@$0HG@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F367C8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESWordOfPower@@$0HG@$0EO@$01@@` -`class BGSAddonNode`: VTable [0x0000000002F36A00, 0x0000000000000000 offset, 125 functions] `.?AVBGSAddonNode@@` -`class BGSAddonNode`: VTable [0x0000000002F36EC0, 0x0000000000000050 offset, 20 functions] `.?AVBGSAddonNode@@` -`class ConcreteFormFactory`: VTable [0x0000000002F36F90, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSAddonNode@@$0FO@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F36FE0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSAddonNode@@$0FO@$0CJ@$05@@` -`class BGSApparatus`: VTable [0x0000000002F37360, 0x0000000000000000 offset, 128 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x0000000002F37838, 0x0000000000000050 offset, 16 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x0000000002F378E0, 0x0000000000000068 offset, 20 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x0000000002F379B0, 0x00000000000000B0 offset, 20 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x0000000002F37A80, 0x00000000000000D8 offset, 14 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x0000000002F37B10, 0x00000000000000E8 offset, 14 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x0000000002F37BA0, 0x00000000000000F8 offset, 14 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x0000000002F37C30, 0x0000000000000108 offset, 14 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x0000000002F37CC0, 0x0000000000000138 offset, 14 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x0000000002F37D50, 0x0000000000000150 offset, 16 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x0000000002F37DF8, 0x0000000000000178 offset, 14 functions] `.?AVBGSApparatus@@` -`class BGSApparatus`: VTable [0x0000000002F37E88, 0x0000000000000188 offset, 14 functions] `.?AVBGSApparatus@@` -`class ConcreteFormFactory`: VTable [0x0000000002F37F18, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSApparatus@@$0CB@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F37F68, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSApparatus@@$0CB@$0FK@$08@@` -`class BGSArtObject`: VTable [0x0000000002F38138, 0x0000000000000000 offset, 125 functions] `.?AVBGSArtObject@@` -`class BGSArtObject`: VTable [0x0000000002F385F8, 0x0000000000000050 offset, 20 functions] `.?AVBGSArtObject@@` -`class ConcreteFormFactory`: VTable [0x0000000002F386C8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSArtObject@@$0HN@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F38718, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSArtObject@@$0HN@$0FE@$03@@` -`class BGSConstructibleObject`: VTable [0x0000000002F38928, 0x0000000000000000 offset, 101 functions] `.?AVBGSConstructibleObject@@` -`class ConcreteFormFactory`: VTable [0x0000000002F38D00, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSConstructibleObject@@$0DB@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F38D50, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSConstructibleObject@@$0DB@$0DP@$00@@` -`class BGSDebris`: VTable [0x0000000002F39190, 0x0000000000000000 offset, 101 functions] `.?AVBGSDebris@@` -`class BGSDebris`: VTable [0x0000000002F39568, 0x0000000000000028 offset, 14 functions] `.?AVBGSDebris@@` -`class ConcreteFormFactory`: VTable [0x0000000002F395F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSDebris@@$0FI@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F39648, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSDebris@@$0FI@$0CE@$05@@` -`class BGSExplosion`: VTable [0x0000000002F39AB0, 0x0000000000000000 offset, 125 functions] `.?AVBGSExplosion@@` -`class BGSExplosion`: VTable [0x0000000002F39F70, 0x0000000000000050 offset, 16 functions] `.?AVBGSExplosion@@` -`class BGSExplosion`: VTable [0x0000000002F3A018, 0x0000000000000068 offset, 20 functions] `.?AVBGSExplosion@@` -`class BGSExplosion`: VTable [0x0000000002F3A0E8, 0x0000000000000098 offset, 15 functions] `.?AVBGSExplosion@@` -`class BGSExplosion`: VTable [0x0000000002F3A188, 0x00000000000000B0 offset, 14 functions] `.?AVBGSExplosion@@` -`class BGSExplosion`: VTable [0x0000000002F3A218, 0x00000000000000B8 offset, 14 functions] `.?AVBGSExplosion@@` -`class ConcreteFormFactory`: VTable [0x0000000002F3A2A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSExplosion@@$0FH@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F3A2F8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSExplosion@@$0FH@$0CC@$05@@` -`class JSONSerializerBase`: VTable [0x0000000002F3A420, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VExplosionSerializer@?A0x31044ed7@@VBGSExplosion@@$0FH@@@` -`class `anonymous namespace'::ExplosionSerializer`: VTable [0x0000000002F3A448, 0x0000000000000000 offset, 3 functions] `.?AVExplosionSerializer@?A0x31044ed7@@` -`class BGSHazard`: VTable [0x0000000002F3A7D8, 0x0000000000000000 offset, 125 functions] `.?AVBGSHazard@@` -`class BGSHazard`: VTable [0x0000000002F3AC98, 0x0000000000000050 offset, 16 functions] `.?AVBGSHazard@@` -`class BGSHazard`: VTable [0x0000000002F3AD40, 0x0000000000000068 offset, 20 functions] `.?AVBGSHazard@@` -`class BGSHazard`: VTable [0x0000000002F3AE10, 0x0000000000000098 offset, 14 functions] `.?AVBGSHazard@@` -`class BGSHazard`: VTable [0x0000000002F3AEA0, 0x00000000000000A0 offset, 14 functions] `.?AVBGSHazard@@` -`class ConcreteFormFactory`: VTable [0x0000000002F3AF30, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSHazard@@$0DD@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F3AF80, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSHazard@@$0DD@$0FM@$05@@` -`class BGSMovableStatic`: VTable [0x0000000002F3B2B8, 0x0000000000000000 offset, 16 functions] `.?AVBGSMovableStatic@@` -`class BGSMovableStatic`: VTable [0x0000000002F3B360, 0x0000000000000018 offset, 14 functions] `.?AVBGSMovableStatic@@` -`class BGSMovableStatic`: VTable [0x0000000002F3B3F0, 0x0000000000000028 offset, 125 functions] `.?AVBGSMovableStatic@@` -`class BGSMovableStatic`: VTable [0x0000000002F3B8B0, 0x0000000000000078 offset, 20 functions] `.?AVBGSMovableStatic@@` -`class ConcreteFormFactory`: VTable [0x0000000002F3B980, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSMovableStatic@@$0CE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F3B9D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSMovableStatic@@$0CE@$0CK@$02@@` -`class BGSOutfit`: VTable [0x0000000002F3BCC0, 0x0000000000000000 offset, 101 functions] `.?AVBGSOutfit@@` -`class ConcreteFormFactory`: VTable [0x0000000002F3C098, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSOutfit@@$0HM@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F3C0E8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSOutfit@@$0HM@$0FD@$00@@` -`class BGSProjectile`: VTable [0x0000000002F3C540, 0x0000000000000000 offset, 125 functions] `.?AVBGSProjectile@@` -`class BGSProjectile`: VTable [0x0000000002F3CA00, 0x0000000000000050 offset, 16 functions] `.?AVBGSProjectile@@` -`class BGSProjectile`: VTable [0x0000000002F3CAA8, 0x0000000000000068 offset, 20 functions] `.?AVBGSProjectile@@` -`class BGSProjectile`: VTable [0x0000000002F3CB78, 0x0000000000000098 offset, 14 functions] `.?AVBGSProjectile@@` -`class BGSProjectile`: VTable [0x0000000002F3CC08, 0x00000000000000A0 offset, 14 functions] `.?AVBGSProjectile@@` -`class ConcreteFormFactory`: VTable [0x0000000002F3CC98, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSProjectile@@$0DC@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F3CCE8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSProjectile@@$0DC@$0CA@$05@@` -`class JSONSerializerBase`: VTable [0x0000000002F3CE68, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VProjectileSerializer@?A0xce13ec8a@@VBGSProjectile@@$0DC@@@` -`class `anonymous namespace'::ProjectileSerializer`: VTable [0x0000000002F3CE90, 0x0000000000000000 offset, 3 functions] `.?AVProjectileSerializer@?A0xce13ec8a@@` -`class BGSStaticCollection`: VTable [0x0000000002F3D540, 0x0000000000000000 offset, 125 functions] `.?AVBGSStaticCollection@@` -`class BGSStaticCollection`: VTable [0x0000000002F3DA00, 0x0000000000000050 offset, 20 functions] `.?AVBGSStaticCollection@@` -`class ConcreteFormFactory`: VTable [0x0000000002F3DAD0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSStaticCollection@@$0CD@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F3DB20, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSStaticCollection@@$0CD@$0EF@$02@@` -`class BSMapBase * __ptr64>`: VTable [0x0000000002F3DBE0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESObjectSTAT@@PEAV?$BSSimpleList@UREF_COL_DATA@BGSStaticCollection@@@@@@` -`class BSMap * __ptr64>`: VTable [0x0000000002F3DC30, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEAVTESObjectSTAT@@PEAV?$BSSimpleList@UREF_COL_DATA@BGSStaticCollection@@@@@@` -`class NiTArray >`: VTable [0x0000000002F3E568, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@UINVALID_REF_DATA@@V?$NiTMallocInterface@UINVALID_REF_DATA@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000002F3E580, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@UINVALID_REF_DATA@@@@` -`class NiTArray >`: VTable [0x0000000002F3E878, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@UREF_COL_DATA@BGSStaticCollection@@V?$NiTMallocInterface@UREF_COL_DATA@BGSStaticCollection@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000002F3E890, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@UREF_COL_DATA@BGSStaticCollection@@@@` -`class BGSTalkingActivator`: VTable [0x0000000002F3E998, 0x0000000000000000 offset, 126 functions] `.?AVBGSTalkingActivator@@` -`class BGSTalkingActivator`: VTable [0x0000000002F3EE60, 0x0000000000000050 offset, 16 functions] `.?AVBGSTalkingActivator@@` -`class BGSTalkingActivator`: VTable [0x0000000002F3EF08, 0x0000000000000068 offset, 20 functions] `.?AVBGSTalkingActivator@@` -`class BGSTalkingActivator`: VTable [0x0000000002F3EFD8, 0x00000000000000B0 offset, 14 functions] `.?AVBGSTalkingActivator@@` -`class BGSTalkingActivator`: VTable [0x0000000002F3F068, 0x00000000000000C0 offset, 4 functions] `.?AVBGSTalkingActivator@@` -`class BGSTalkingActivator`: VTable [0x0000000002F3F098, 0x00000000000000C8 offset, 16 functions] `.?AVBGSTalkingActivator@@` -`class ConcreteFormFactory`: VTable [0x0000000002F3F140, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSTalkingActivator@@$0BJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F3F190, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSTalkingActivator@@$0BJ@$0CB@$0A@@@` -`class TESAmmo`: VTable [0x0000000002F3F368, 0x0000000000000000 offset, 125 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000002F3F828, 0x0000000000000050 offset, 16 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000002F3F8D0, 0x0000000000000068 offset, 20 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000002F3F9A0, 0x00000000000000B0 offset, 20 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000002F3FA70, 0x00000000000000D8 offset, 14 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000002F3FB00, 0x0000000000000108 offset, 14 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000002F3FB90, 0x0000000000000118 offset, 14 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000002F3FC20, 0x0000000000000128 offset, 14 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000002F3FCB0, 0x0000000000000138 offset, 14 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000002F3FD40, 0x0000000000000150 offset, 14 functions] `.?AVTESAmmo@@` -`class TESAmmo`: VTable [0x0000000002F3FDD0, 0x0000000000000178 offset, 16 functions] `.?AVTESAmmo@@` -`class ConcreteFormFactory`: VTable [0x0000000002F3FE78, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESAmmo@@$0CK@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F3FEC8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESAmmo@@$0CK@$0BE@$00@@` -`class TESCombatStyle`: VTable [0x0000000002F402A8, 0x0000000000000000 offset, 101 functions] `.?AVTESCombatStyle@@` -`class ConcreteFormFactory`: VTable [0x0000000002F40680, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESCombatStyle@@$0FA@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F406D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESCombatStyle@@$0FA@$0BJ@$03@@` -`class TESEffectShader`: VTable [0x0000000002F40A48, 0x0000000000000000 offset, 101 functions] `.?AVTESEffectShader@@` -`class ConcreteFormFactory`: VTable [0x0000000002F40E70, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESEffectShader@@$0FF@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F40EC0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESEffectShader@@$0FF@$0BP@$05@@` -`class JSONSerializerBase`: VTable [0x0000000002F418E0, 0x0000000000000000 offset, 3 functions] `.?AV?$JSONSerializerBase@VEffectShaderSerializer@?A0xecf5f44a@@VTESEffectShader@@$0FF@@@` -`class `anonymous namespace'::EffectShaderSerializer`: VTable [0x0000000002F41908, 0x0000000000000000 offset, 3 functions] `.?AVEffectShaderSerializer@?A0xecf5f44a@@` -`class TESFlora`: VTable [0x0000000002F41FE8, 0x0000000000000000 offset, 125 functions] `.?AVTESFlora@@` -`class TESFlora`: VTable [0x0000000002F424A8, 0x0000000000000050 offset, 16 functions] `.?AVTESFlora@@` -`class TESFlora`: VTable [0x0000000002F42550, 0x0000000000000068 offset, 20 functions] `.?AVTESFlora@@` -`class TESFlora`: VTable [0x0000000002F42620, 0x00000000000000B0 offset, 14 functions] `.?AVTESFlora@@` -`class TESFlora`: VTable [0x0000000002F426B0, 0x00000000000000C0 offset, 4 functions] `.?AVTESFlora@@` -`class TESFlora`: VTable [0x0000000002F426E0, 0x00000000000000C8 offset, 16 functions] `.?AVTESFlora@@` -`class TESFlora`: VTable [0x0000000002F42788, 0x0000000000000138 offset, 14 functions] `.?AVTESFlora@@` -`class ConcreteFormFactory`: VTable [0x0000000002F42818, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESFlora@@$0CH@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F42868, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESFlora@@$0CH@$0BF@$02@@` -`class TESFurniture`: VTable [0x0000000002F42C58, 0x0000000000000000 offset, 125 functions] `.?AVTESFurniture@@` -`class TESFurniture`: VTable [0x0000000002F43118, 0x0000000000000050 offset, 16 functions] `.?AVTESFurniture@@` -`class TESFurniture`: VTable [0x0000000002F431C0, 0x0000000000000068 offset, 20 functions] `.?AVTESFurniture@@` -`class TESFurniture`: VTable [0x0000000002F43290, 0x00000000000000B0 offset, 14 functions] `.?AVTESFurniture@@` -`class TESFurniture`: VTable [0x0000000002F43320, 0x00000000000000C0 offset, 4 functions] `.?AVTESFurniture@@` -`class TESFurniture`: VTable [0x0000000002F43350, 0x00000000000000C8 offset, 16 functions] `.?AVTESFurniture@@` -`class ConcreteFormFactory`: VTable [0x0000000002F43428, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESFurniture@@$0CI@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F43478, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESFurniture@@$0CI@$0BG@$02@@` -`class TESGrass`: VTable [0x0000000002F43E28, 0x0000000000000000 offset, 151 functions] `.?AVTESGrass@@` -`class TESGrass`: VTable [0x0000000002F443E0, 0x0000000000000050 offset, 20 functions] `.?AVTESGrass@@` -`class ConcreteFormFactory`: VTable [0x0000000002F444D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESGrass@@$0CF@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F44520, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESGrass@@$0CF@$08$02@@` -`class TESKey`: VTable [0x0000000002F446B0, 0x0000000000000000 offset, 128 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x0000000002F44B88, 0x0000000000000050 offset, 16 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x0000000002F44C30, 0x0000000000000068 offset, 20 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x0000000002F44D00, 0x00000000000000B0 offset, 20 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x0000000002F44DD0, 0x00000000000000D8 offset, 14 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x0000000002F44E60, 0x00000000000000E8 offset, 14 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x0000000002F44EF0, 0x00000000000000F8 offset, 14 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x0000000002F44F80, 0x0000000000000108 offset, 14 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x0000000002F45010, 0x0000000000000138 offset, 14 functions] `.?AVTESKey@@` -`class TESKey`: VTable [0x0000000002F450A0, 0x0000000000000150 offset, 16 functions] `.?AVTESKey@@` -`class ConcreteFormFactory`: VTable [0x0000000002F45148, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESKey@@$0CN@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F45198, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESKey@@$0CN@$0BD@$00@@` -`class TESLevCharacter`: VTable [0x0000000002F45318, 0x0000000000000000 offset, 125 functions] `.?AVTESLevCharacter@@` -`class TESLevCharacter`: VTable [0x0000000002F457D8, 0x0000000000000050 offset, 23 functions] `.?AVTESLevCharacter@@` -`class TESLevCharacter`: VTable [0x0000000002F458C0, 0x0000000000000070 offset, 20 functions] `.?AVTESLevCharacter@@` -`class ConcreteFormFactory`: VTable [0x0000000002F45990, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLevCharacter@@$0CM@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F459E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLevCharacter@@$0CM@$0O@$0A@@@` -`class TESLevItem`: VTable [0x0000000002F45D38, 0x0000000000000000 offset, 125 functions] `.?AVTESLevItem@@` -`class TESLevItem`: VTable [0x0000000002F461F8, 0x0000000000000050 offset, 23 functions] `.?AVTESLevItem@@` -`class ConcreteFormFactory`: VTable [0x0000000002F462E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLevItem@@$0DF@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F46330, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLevItem@@$0DF@$0BC@$00@@` -`class TESLevSpell`: VTable [0x0000000002F46578, 0x0000000000000000 offset, 125 functions] `.?AVTESLevSpell@@` -`class TESLevSpell`: VTable [0x0000000002F46A38, 0x0000000000000050 offset, 23 functions] `.?AVTESLevSpell@@` -`class ConcreteFormFactory`: VTable [0x0000000002F46B20, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLevSpell@@$0FC@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F46B70, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLevSpell@@$0FC@$0BL@$01@@` -`class TESObjectLIGH`: VTable [0x0000000002F46E08, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x0000000002F472C8, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x0000000002F47370, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x0000000002F47440, 0x00000000000000B0 offset, 20 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x0000000002F47510, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x0000000002F475A0, 0x0000000000000108 offset, 14 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x0000000002F47630, 0x0000000000000118 offset, 14 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x0000000002F476C0, 0x0000000000000128 offset, 14 functions] `.?AVTESObjectLIGH@@` -`class TESObjectLIGH`: VTable [0x0000000002F47750, 0x0000000000000138 offset, 16 functions] `.?AVTESObjectLIGH@@` -`class ConcreteFormFactory`: VTable [0x0000000002F47B28, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectLIGH@@$0BP@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F47B78, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectLIGH@@$0BP@$05$02@@` -`class TESObject`: VTable [0x0000000002F48458, 0x0000000000000000 offset, 114 functions] `.?AVTESObject@@` -`class TESBoundObject`: VTable [0x0000000002F488A8, 0x0000000000000000 offset, 125 functions] `.?AVTESBoundObject@@` -`class TESBoundAnimObject`: VTable [0x0000000002F48D68, 0x0000000000000000 offset, 125 functions] `.?AVTESBoundAnimObject@@` -`class BGSOpenCloseForm`: VTable [0x0000000002F49668, 0x0000000000000000 offset, 4 functions] `.?AVBGSOpenCloseForm@@` -`class TESObjectACTI`: VTable [0x0000000002F49698, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectACTI@@` -`class TESObjectACTI`: VTable [0x0000000002F49B58, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectACTI@@` -`class TESObjectACTI`: VTable [0x0000000002F49C00, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectACTI@@` -`class TESObjectACTI`: VTable [0x0000000002F49CD0, 0x00000000000000B0 offset, 14 functions] `.?AVTESObjectACTI@@` -`class TESObjectACTI`: VTable [0x0000000002F49D60, 0x00000000000000C0 offset, 4 functions] `.?AVTESObjectACTI@@` -`class TESObjectACTI`: VTable [0x0000000002F49D90, 0x00000000000000C8 offset, 16 functions] `.?AVTESObjectACTI@@` -`class ConcreteFormFactory`: VTable [0x0000000002F49E38, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectACTI@@$0BI@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F49E88, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectACTI@@$0BI@$0A@$02@@` -`class TESObjectANIO`: VTable [0x0000000002F4A1F8, 0x0000000000000000 offset, 101 functions] `.?AVTESObjectANIO@@` -`class TESObjectANIO`: VTable [0x0000000002F4A5D0, 0x0000000000000028 offset, 20 functions] `.?AVTESObjectANIO@@` -`class ConcreteFormFactory`: VTable [0x0000000002F4A6A0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectANIO@@$0FD@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F4A6F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectANIO@@$0FD@$0BM@$03@@` -`class TESObjectARMA`: VTable [0x0000000002F4A950, 0x0000000000000000 offset, 114 functions] `.?AVTESObjectARMA@@` -`class TESObjectARMA`: VTable [0x0000000002F4ADA0, 0x0000000000000030 offset, 14 functions] `.?AVTESObjectARMA@@` -`class TESObjectARMA`: VTable [0x0000000002F4AE30, 0x0000000000000040 offset, 14 functions] `.?AVTESObjectARMA@@` -`class ConcreteFormFactory`: VTable [0x0000000002F4AF00, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectARMA@@$0GG@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F4AF50, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectARMA@@$0GG@$0DJ@$00@@` -`class TESObjectARMO`: VTable [0x0000000002F4B4A0, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4B960, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4BA08, 0x0000000000000068 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4BA98, 0x0000000000000078 offset, 15 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4BB38, 0x0000000000000090 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4BBC8, 0x00000000000000A0 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4BC58, 0x00000000000000B0 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4BCE8, 0x00000000000000C0 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4BD78, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4BE08, 0x0000000000000250 offset, 16 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4BEB0, 0x0000000000000260 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4BF40, 0x0000000000000270 offset, 14 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4BFD0, 0x0000000000000288 offset, 16 functions] `.?AVTESObjectARMO@@` -`class TESObjectARMO`: VTable [0x0000000002F4C078, 0x00000000000002A0 offset, 14 functions] `.?AVTESObjectARMO@@` -`class ConcreteFormFactory`: VTable [0x0000000002F4C1E8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectARMO@@$0BK@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F4C238, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectARMO@@$0BK@$00$00@@` -`class TESObjectBOOK`: VTable [0x0000000002F4C6D0, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000002F4CB90, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000002F4CC38, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000002F4CD08, 0x00000000000000B0 offset, 20 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000002F4CDD8, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000002F4CE68, 0x00000000000000E8 offset, 14 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000002F4CEF8, 0x00000000000000F8 offset, 14 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000002F4CF88, 0x0000000000000120 offset, 14 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000002F4D018, 0x0000000000000130 offset, 14 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000002F4D0A8, 0x0000000000000160 offset, 14 functions] `.?AVTESObjectBOOK@@` -`class TESObjectBOOK`: VTable [0x0000000002F4D138, 0x0000000000000178 offset, 16 functions] `.?AVTESObjectBOOK@@` -`class ConcreteFormFactory`: VTable [0x0000000002F4D1E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectBOOK@@$0BL@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F4D230, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectBOOK@@$0BL@$01$00@@` -`class BSStreamParserData`: VTable [0x0000000002F4D450, 0x0000000000000000 offset, 4 functions] `.?AVBSStreamParserData@@` -`class BSResourceStreamParser`: VTable [0x0000000002F4D480, 0x0000000000000000 offset, 6 functions] `.?AVBSResourceStreamParser@@` -`class BSResourceStreamParser`: VTable [0x0000000002F4D4C8, 0x0000000000000038 offset, 4 functions] `.?AVBSResourceStreamParser@@` -`class TESObjectCONT`: VTable [0x0000000002F4D858, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectCONT@@` -`class TESObjectCONT`: VTable [0x0000000002F4DD18, 0x0000000000000050 offset, 15 functions] `.?AVTESObjectCONT@@` -`class TESObjectCONT`: VTable [0x0000000002F4DDB8, 0x0000000000000068 offset, 16 functions] `.?AVTESObjectCONT@@` -`class TESObjectCONT`: VTable [0x0000000002F4DE60, 0x0000000000000080 offset, 20 functions] `.?AVTESObjectCONT@@` -`class TESObjectCONT`: VTable [0x0000000002F4DF30, 0x00000000000000C8 offset, 14 functions] `.?AVTESObjectCONT@@` -`class TESObjectCONT`: VTable [0x0000000002F4DFC0, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectCONT@@` -`class TESObjectCONT`: VTable [0x0000000002F4E050, 0x00000000000000E8 offset, 4 functions] `.?AVTESObjectCONT@@` -`class ConcreteFormFactory`: VTable [0x0000000002F4E080, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectCONT@@$0BM@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F4E0D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectCONT@@$0BM@$02$02@@` -`class TESObjectDOOR`: VTable [0x0000000002F4E6B0, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectDOOR@@` -`class TESObjectDOOR`: VTable [0x0000000002F4EB70, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectDOOR@@` -`class TESObjectDOOR`: VTable [0x0000000002F4EC18, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectDOOR@@` -`class TESObjectDOOR`: VTable [0x0000000002F4ECE8, 0x00000000000000B0 offset, 14 functions] `.?AVTESObjectDOOR@@` -`class TESObjectDOOR`: VTable [0x0000000002F4ED78, 0x00000000000000C0 offset, 4 functions] `.?AVTESObjectDOOR@@` -`class ConcreteFormFactory`: VTable [0x0000000002F4EEE0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectDOOR@@$0BN@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F4EF30, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectDOOR@@$0BN@$03$02@@` -`class TESObjectMISC`: VTable [0x0000000002F4F320, 0x0000000000000000 offset, 128 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000002F4F7F8, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000002F4F8A0, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000002F4F970, 0x00000000000000B0 offset, 20 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000002F4FA40, 0x00000000000000D8 offset, 14 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000002F4FAD0, 0x00000000000000E8 offset, 14 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000002F4FB60, 0x00000000000000F8 offset, 14 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000002F4FBF0, 0x0000000000000108 offset, 14 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000002F4FC80, 0x0000000000000138 offset, 14 functions] `.?AVTESObjectMISC@@` -`class TESObjectMISC`: VTable [0x0000000002F4FD10, 0x0000000000000150 offset, 16 functions] `.?AVTESObjectMISC@@` -`class ConcreteFormFactory`: VTable [0x0000000002F4FDB8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectMISC@@$0CA@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F4FE08, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectMISC@@$0CA@$06$00@@` -`class TESObjectSTAT`: VTable [0x0000000002F50010, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectSTAT@@` -`class TESObjectSTAT`: VTable [0x0000000002F504D0, 0x0000000000000050 offset, 20 functions] `.?AVTESObjectSTAT@@` -`class ConcreteFormFactory`: VTable [0x0000000002F505A0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectSTAT@@$0CC@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F505F0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectSTAT@@$0CC@$07$02@@` -`class TESObjectTREE`: VTable [0x0000000002F50920, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectTREE@@` -`class TESObjectTREE`: VTable [0x0000000002F50DE0, 0x0000000000000050 offset, 20 functions] `.?AVTESObjectTREE@@` -`class TESObjectTREE`: VTable [0x0000000002F50EB0, 0x0000000000000080 offset, 16 functions] `.?AVTESObjectTREE@@` -`class TESObjectTREE`: VTable [0x0000000002F50F58, 0x0000000000000098 offset, 14 functions] `.?AVTESObjectTREE@@` -`class ConcreteFormFactory`: VTable [0x0000000002F50FE8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectTREE@@$0CG@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F51038, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectTREE@@$0CG@$09$02@@` -`class TESObjectWEAP`: VTable [0x0000000002F516F8, 0x0000000000000000 offset, 125 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F51BB8, 0x0000000000000050 offset, 16 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F51C60, 0x0000000000000068 offset, 20 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F51D30, 0x00000000000000B0 offset, 20 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F51E00, 0x00000000000000D8 offset, 15 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F51EA0, 0x00000000000000F0 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F51F30, 0x0000000000000100 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F51FC0, 0x0000000000000110 offset, 15 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F52060, 0x0000000000000120 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F520F0, 0x0000000000000130 offset, 16 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F52198, 0x0000000000000140 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F52228, 0x0000000000000148 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F522B8, 0x0000000000000178 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F52348, 0x0000000000000190 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F523D8, 0x00000000000001A8 offset, 16 functions] `.?AVTESObjectWEAP@@` -`class TESObjectWEAP`: VTable [0x0000000002F52480, 0x00000000000001C0 offset, 14 functions] `.?AVTESObjectWEAP@@` -`class ConcreteFormFactory`: VTable [0x0000000002F52510, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectWEAP@@$0CJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F52560, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESObjectWEAP@@$0CJ@$0M@$00@@` -`class TESSoulGem`: VTable [0x0000000002F52FD0, 0x0000000000000000 offset, 128 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000002F534A8, 0x0000000000000050 offset, 16 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000002F53550, 0x0000000000000068 offset, 20 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000002F53620, 0x00000000000000B0 offset, 20 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000002F536F0, 0x00000000000000D8 offset, 14 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000002F53780, 0x00000000000000E8 offset, 14 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000002F53810, 0x00000000000000F8 offset, 14 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000002F538A0, 0x0000000000000108 offset, 14 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000002F53930, 0x0000000000000138 offset, 14 functions] `.?AVTESSoulGem@@` -`class TESSoulGem`: VTable [0x0000000002F539C0, 0x0000000000000150 offset, 16 functions] `.?AVTESSoulGem@@` -`class ConcreteFormFactory`: VTable [0x0000000002F53A68, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESSoulGem@@$0DE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F53AB8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESSoulGem@@$0DE@$0GB@$00@@` -`class BGSEncounterZone`: VTable [0x0000000002F53EA0, 0x0000000000000000 offset, 101 functions] `.?AVBGSEncounterZone@@` -`class ConcreteFormFactory`: VTable [0x0000000002F54278, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSEncounterZone@@$0GH@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F542C8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSEncounterZone@@$0GH@$0DN@$06@@` -`class BGSLightingTemplate`: VTable [0x0000000002F54D98, 0x0000000000000000 offset, 103 functions] `.?AVBGSLightingTemplate@@` -`class ConcreteFormFactory`: VTable [0x0000000002F55180, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSLightingTemplate@@$0GM@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F551D0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSLightingTemplate@@$0GM@$0FH@$06@@` -`class BGSLocation`: VTable [0x0000000002F56040, 0x0000000000000000 offset, 101 functions] `.?AVBGSLocation@@` -`class BGSLocation`: VTable [0x0000000002F56418, 0x0000000000000028 offset, 16 functions] `.?AVBGSLocation@@` -`class BGSLocation`: VTable [0x0000000002F564C0, 0x0000000000000040 offset, 16 functions] `.?AVBGSLocation@@` -`class ConcreteFormFactory`: VTable [0x0000000002F56568, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSLocation@@$0GI@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F565B8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSLocation@@$0GI@$0EH@$06@@` -`class QueuedPromoteLocationReferencesTask`: VTable [0x0000000002F569F0, 0x0000000000000000 offset, 10 functions] `.?AVQueuedPromoteLocationReferencesTask@@` -`class BSMapBase`: VTable [0x0000000002F57CC0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@IPEBUUnloadedRefData@@@@` -`class BSScrapMap`: VTable [0x0000000002F57D10, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@IPEBUUnloadedRefData@@@@` -`class BSMapBase`: VTable [0x0000000002F57D60, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESNPC@@PEBUUniqueNPCData@@@@` -`class BSScrapMap`: VTable [0x0000000002F57DB0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@PEAVTESNPC@@PEBUUniqueNPCData@@@@` -`class BSMapBase`: VTable [0x0000000002F57E00, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@IPEBUSpecialRefData@@@@` -`class BSScrapMap`: VTable [0x0000000002F57E50, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@IPEBUSpecialRefData@@@@` -`class BGSLocationRefType`: VTable [0x0000000002F58050, 0x0000000000000000 offset, 101 functions] `.?AVBGSLocationRefType@@` -`class ConcreteFormFactory`: VTable [0x0000000002F58428, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSLocationRefType@@$04@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F58478, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSLocationRefType@@$04$0EI@$06@@` -`class BGSReferenceEffect`: VTable [0x0000000002F58718, 0x0000000000000000 offset, 101 functions] `.?AVBGSReferenceEffect@@` -`class ConcreteFormFactory`: VTable [0x0000000002F58AF0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSReferenceEffect@@$0DJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F58B40, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSReferenceEffect@@$0DJ@$0FJ@$06@@` -`class BGSShaderParticleGeometryData`: VTable [0x0000000002F58ED0, 0x0000000000000000 offset, 101 functions] `.?AVBGSShaderParticleGeometryData@@` -`class BSParticleShaderEmitter`: VTable [0x0000000002F593A0, 0x0000000000000000 offset, 4 functions] `.?AVBSParticleShaderEmitter@@` -`class BSParticleShaderCubeEmitter`: VTable [0x0000000002F593D0, 0x0000000000000000 offset, 4 functions] `.?AVBSParticleShaderCubeEmitter@@` -`class BSParticleShaderRainEmitter`: VTable [0x0000000002F59400, 0x0000000000000000 offset, 4 functions] `.?AVBSParticleShaderRainEmitter@@` -`class BSParticleShaderSnowEmitter`: VTable [0x0000000002F59430, 0x0000000000000000 offset, 4 functions] `.?AVBSParticleShaderSnowEmitter@@` -`class ConcreteFormFactory`: VTable [0x0000000002F59460, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSShaderParticleGeometryData@@$0DI@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F594B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSShaderParticleGeometryData@@$0DI@$0FI@$06@@` -`class CellLoaderTask`: VTable [0x0000000002F59CF0, 0x0000000000000000 offset, 10 functions] `.?AVCellLoaderTask@@` -`class ImageSpaceModifierInstance`: VTable [0x0000000002F5A318, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstance@@` -`class ImageSpaceModifierInstanceForm`: VTable [0x0000000002F5A4C0, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstanceForm@@` -`class ImageSpaceModifierInstanceTemp`: VTable [0x0000000002F5A668, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstanceTemp@@` -`class ImageSpaceModifierInstanceDOF`: VTable [0x0000000002F5A810, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstanceDOF@@` -`class ImageSpaceModifierInstanceRB`: VTable [0x0000000002F5A9B8, 0x0000000000000000 offset, 43 functions] `.?AVImageSpaceModifierInstanceRB@@` -`class BSResource::EntryDB`: VTable [0x0000000002F5B4C8, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@MaxHeightDB@@@BSResource@@` -`class TESClimate`: VTable [0x0000000002F5B728, 0x0000000000000000 offset, 101 functions] `.?AVTESClimate@@` -`class ConcreteFormFactory`: VTable [0x0000000002F5BB00, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESClimate@@$0DH@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F5BB50, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESClimate@@$0DH@$0DI@$06@@` -`class TESImageSpace`: VTable [0x0000000002F5C760, 0x0000000000000000 offset, 103 functions] `.?AVTESImageSpace@@` -`class ConcreteFormFactory`: VTable [0x0000000002F5CB48, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESImageSpace@@$0FJ@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F5CB98, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESImageSpace@@$0FJ@$0DL@$05@@` -`class NiFloatData`: VTable [0x0000000002F5CEF8, 0x0000000000000000 offset, 39 functions] `.?AVNiFloatData@@` -`class NiColorData`: VTable [0x0000000002F5D078, 0x0000000000000000 offset, 39 functions] `.?AVNiColorData@@` -`class TESImageSpaceModifier`: VTable [0x0000000002F5D1F8, 0x0000000000000000 offset, 103 functions] `.?AVTESImageSpaceModifier@@` -`class ConcreteFormFactory`: VTable [0x0000000002F5D5E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESImageSpaceModifier@@$0FK@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F5D630, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESImageSpaceModifier@@$0FK@$0DM@$05@@` -`class TESChildCell`: VTable [0x0000000002F5DDF0, 0x0000000000000000 offset, 2 functions] `.?AVTESChildCell@@` -`class hkpMoppCode`: VTable [0x0000000002F5DE10, 0x0000000000000000 offset, 3 functions] `.?AVhkpMoppCode@@` -`class TESObjectLAND`: VTable [0x0000000002F5DE38, 0x0000000000000000 offset, 101 functions] `.?AVTESObjectLAND@@` -`class TESObjectLAND`: VTable [0x0000000002F5E210, 0x0000000000000028 offset, 2 functions] `.?AVTESObjectLAND@@` -`class ConcreteFormFactory`: VTable [0x0000000002F5E250, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectLAND@@$0EI@@@` -`class TESLandTexture`: VTable [0x0000000002F5F038, 0x0000000000000000 offset, 101 functions] `.?AVTESLandTexture@@` -`class ConcreteFormFactory`: VTable [0x0000000002F5F410, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESLandTexture@@$0BE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F5F460, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESLandTexture@@$0BE@$0BI@$03@@` -`class hkpCdPointCollector`: VTable [0x0000000002F62680, 0x0000000000000000 offset, 3 functions] `.?AVhkpCdPointCollector@@` -`class bhkPhantom`: VTable [0x0000000002F626A8, 0x0000000000000000 offset, 55 functions] `.?AVbhkPhantom@@` -`class CheckWithinMultiBoundTask`: VTable [0x0000000002F628C8, 0x0000000000000000 offset, 10 functions] `.?AVCheckWithinMultiBoundTask@@` -`class TESObjectCELL`: VTable [0x0000000002F62938, 0x0000000000000000 offset, 101 functions] `.?AVTESObjectCELL@@` -`class TESObjectCELL`: VTable [0x0000000002F62D10, 0x0000000000000028 offset, 16 functions] `.?AVTESObjectCELL@@` -`class NiTMapBase > > >,class TESForm * __ptr64,class BSPointerHandle > >`: VTable [0x0000000002F62DB8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVTESForm@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@@@PEAVTESForm@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` -`class NiTMap > >`: VTable [0x0000000002F62E08, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVTESForm@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` -`class NiTMapBase >,class NiNode * __ptr64> >,class BSPointerHandle >,class NiNode * __ptr64>`: VTable [0x0000000002F62E58, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@PEAVNiNode@@@@@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@PEAVNiNode@@@@` -`class NiTMap >,class NiNode * __ptr64>`: VTable [0x0000000002F62EA8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@PEAVNiNode@@@@` -`class NiTMapBase >,class NiPointer > >,class BSPointerHandle >,class NiPointer >`: VTable [0x0000000002F62EF8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V?$NiPointer@VBSMultiBoundNode@@@@@@@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V?$NiPointer@VBSMultiBoundNode@@@@@@` -`class NiTMap >,class NiPointer >`: VTable [0x0000000002F62F48, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V?$NiPointer@VBSMultiBoundNode@@@@@@` -`class NiTMapBase > > >,class BSMultiBoundNode * __ptr64,class BSPointerHandle > >`: VTable [0x0000000002F62F98, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEAVBSMultiBoundNode@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@@@PEAVBSMultiBoundNode@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` -`class NiTMap > >`: VTable [0x0000000002F62FE8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEAVBSMultiBoundNode@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` -`class bhkShapePhantom`: VTable [0x0000000002F63090, 0x0000000000000000 offset, 55 functions] `.?AVbhkShapePhantom@@` -`class bhkSimpleShapePhantom`: VTable [0x0000000002F632B0, 0x0000000000000000 offset, 55 functions] `.?AVbhkSimpleShapePhantom@@` -`class hkpAllCdPointTempCollector`: VTable [0x0000000002F634D0, 0x0000000000000000 offset, 3 functions] `.?AVhkpAllCdPointTempCollector@@` -`class ConcreteFormFactory`: VTable [0x0000000002F63740, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESObjectCELL@@$0DM@@@` -`class BSMapBase >,bool>`: VTable [0x0000000002F64200, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@` -`class BSScrapMap >,bool>`: VTable [0x0000000002F64250, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@_N@@` -`class BSTEventSink`: VTable [0x0000000002F646A0, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UTESCellReadyToApplyDecalsEvent@@@@` -`class `anonymous namespace'::DecalApplier`: VTable [0x0000000002F646C0, 0x0000000000000000 offset, 2 functions] `.?AVDecalApplier@?A0xcbd58b20@@` -`class NiTArray >`: VTable [0x0000000002F66810, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVTESObjectREFR@@V?$NiTMallocInterface@PEAVTESObjectREFR@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000002F66828, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVTESObjectREFR@@@@` -`struct `anonymous namespace'::UpdateAllDecalsRefFunctor`: VTable [0x0000000002F672C0, 0x0000000000000000 offset, 2 functions] `.?AUUpdateAllDecalsRefFunctor@?A0x5d454994@@` -`struct `anonymous namespace'::ApplyAllDecalsRefFunctor`: VTable [0x0000000002F672E0, 0x0000000000000000 offset, 2 functions] `.?AUApplyAllDecalsRefFunctor@?A0x5d454994@@` -`class BSHandleRefObject`: VTable [0x0000000002F689F0, 0x0000000000000000 offset, 2 functions] `.?AVBSHandleRefObject@@` -`class hkpShape`: VTable [0x0000000002F68A10, 0x0000000000000000 offset, 11 functions] `.?AVhkpShape@@` -`class hkpPhantomCallbackShape`: VTable [0x0000000002F68A88, 0x0000000000000000 offset, 13 functions] `.?AVhkpPhantomCallbackShape@@` -`class BGSWaterCollisionManager::BGSWaterUpdateI`: VTable [0x0000000002F68B10, 0x0000000000000000 offset, 7 functions] `.?AVBGSWaterUpdateI@BGSWaterCollisionManager@@` -`class BGSWaterCollisionManager::bhkPlaceableWater`: VTable [0x0000000002F68B60, 0x0000000000000000 offset, 14 functions] `.?AVbhkPlaceableWater@BGSWaterCollisionManager@@` -`class BGSWaterCollisionManager::bhkPlaceableWater`: VTable [0x0000000002F68BF0, 0x0000000000000020 offset, 7 functions] `.?AVbhkPlaceableWater@BGSWaterCollisionManager@@` -`class BSTEventSink`: VTable [0x0000000002F68C40, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UBSAnimationGraphEvent@@@@` -`class TESObjectREFR`: VTable [0x0000000002F68C60, 0x0000000000000000 offset, 177 functions] `.?AVTESObjectREFR@@` -`class TESObjectREFR`: VTable [0x0000000002F69310, 0x0000000000000028 offset, 2 functions] `.?AVTESObjectREFR@@` -`class TESObjectREFR`: VTable [0x0000000002F69330, 0x0000000000000030 offset, 2 functions] `.?AVTESObjectREFR@@` -`class TESObjectREFR`: VTable [0x0000000002F69350, 0x0000000000000040 offset, 2 functions] `.?AVTESObjectREFR@@` -`class TESObjectREFR`: VTable [0x0000000002F69370, 0x0000000000000048 offset, 19 functions] `.?AVTESObjectREFR@@` -`class bhkPCollisionObject`: VTable [0x0000000002F69430, 0x0000000000000000 offset, 52 functions] `.?AVbhkPCollisionObject@@` -`class `anonymous namespace'::HavokLink`: VTable [0x0000000002F696F8, 0x0000000000000000 offset, 3 functions] `.?AVHavokLink@?A0xedc2e1b7@@` -`class `anonymous namespace'::TESObjectREFRFactory`: VTable [0x0000000002F69720, 0x0000000000000000 offset, 7 functions] `.?AVTESObjectREFRFactory@?A0xedc2e1b7@@` -`class NiTMapBase >,class BSPointerHandle > > >,class BSPointerHandle >,class BSPointerHandle > >`: VTable [0x0000000002F6AD40, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V1@@@@@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V2@@@` -`class NiTMap >,class BSPointerHandle > >`: VTable [0x0000000002F6AD90, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@V1@@@` -`class TESObjectREFRDef::ILinkedReferenceFunctor`: VTable [0x0000000002F6C058, 0x0000000000000000 offset, 2 functions] `.?AVILinkedReferenceFunctor@TESObjectREFRDef@@` -`class ExtraMasterFileCell`: VTable [0x0000000002F6C078, 0x0000000000000000 offset, 3 functions] `.?AVExtraMasterFileCell@@` -`class `anonymous namespace'::CollectMatchingLinkedRefFunctor`: VTable [0x0000000002F6C130, 0x0000000000000000 offset, 2 functions] `.?AVCollectMatchingLinkedRefFunctor@?A0x844c7f8d@@` -`class `anonymous namespace'::CopyLinkedRefsFunctor`: VTable [0x0000000002F6C150, 0x0000000000000000 offset, 2 functions] `.?AVCopyLinkedRefsFunctor@?A0x844c7f8d@@` -`class `anonymous namespace'::AddLinkedRefChildToListFunctor`: VTable [0x0000000002F6CCF0, 0x0000000000000000 offset, 2 functions] `.?AVAddLinkedRefChildToListFunctor@?A0x844c7f8d@@` -`class DrawRefLinksFunctor`: VTable [0x0000000002F6DAE8, 0x0000000000000000 offset, 2 functions] `.?AVDrawRefLinksFunctor@@` -`class RedrawRefLinksFunctor`: VTable [0x0000000002F6DB18, 0x0000000000000000 offset, 2 functions] `.?AVRedrawRefLinksFunctor@@` -`class BSMapBase`: VTable [0x0000000002F6DC20, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEAVTESObjectREFR@@_N@@` -`class BSMap`: VTable [0x0000000002F6DC70, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEAVTESObjectREFR@@_N@@` -`class BSScrapMap`: VTable [0x0000000002F6DD50, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@PEAVTESObjectREFR@@_N@@` -`class BSMapBase`: VTable [0x0000000002F6DE08, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@I_N@@` -`class BSScrapMap`: VTable [0x0000000002F6DE58, 0x0000000000000000 offset, 7 functions] `.?AV?$BSScrapMap@I_N@@` -`class TESWaterForm`: VTable [0x0000000002F6E128, 0x0000000000000000 offset, 101 functions] `.?AVTESWaterForm@@` -`class TESWaterForm`: VTable [0x0000000002F6E500, 0x0000000000000028 offset, 16 functions] `.?AVTESWaterForm@@` -`class TESWaterForm`: VTable [0x0000000002F6E5A8, 0x0000000000000040 offset, 15 functions] `.?AVTESWaterForm@@` -`class ConcreteFormFactory`: VTable [0x0000000002F6E690, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESWaterForm@@$0FE@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F6E6E0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESWaterForm@@$0FE@$0BN@$06@@` -`class TESTexture1024`: VTable [0x0000000002F6EF28, 0x0000000000000000 offset, 20 functions] `.?AVTESTexture1024@@` -`struct TESWeather::SkyStaticFunctor`: VTable [0x0000000002F6EFF8, 0x0000000000000000 offset, 1 functions] `.?AUSkyStaticFunctor@TESWeather@@` -`class TESWeather`: VTable [0x0000000002F6F010, 0x0000000000000000 offset, 101 functions] `.?AVTESWeather@@` -`class ConcreteFormFactory`: VTable [0x0000000002F6F458, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESWeather@@$0DG@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F6F4A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VTESWeather@@$0DG@$0DH@$06@@` -`struct SkyStaticFunctors::SkyStaticSaver`: VTable [0x0000000002F6F508, 0x0000000000000000 offset, 1 functions] `.?AUSkyStaticSaver@SkyStaticFunctors@@` -`class DialogExtraWeather`: VTable [0x0000000002F6FD80, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraWeather@@` -`class TESWeatherList`: VTable [0x0000000002F70040, 0x0000000000000000 offset, 6 functions] `.?AVTESWeatherList@@` -`class TESWorldSpace`: VTable [0x0000000002F70B18, 0x0000000000000000 offset, 103 functions] `.?AVTESWorldSpace@@` -`class TESWorldSpace`: VTable [0x0000000002F70F00, 0x0000000000000028 offset, 16 functions] `.?AVTESWorldSpace@@` -`class TESWorldSpace`: VTable [0x0000000002F70FA8, 0x0000000000000040 offset, 20 functions] `.?AVTESWorldSpace@@` -`class ConcreteFormFactory`: VTable [0x0000000002F710A8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VTESWorldSpace@@$0EH@@@` -`class AlchemyItem`: VTable [0x0000000002F72560, 0x0000000000000000 offset, 160 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000002F72B70, 0x0000000000000050 offset, 16 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000002F72C18, 0x0000000000000068 offset, 16 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000002F72CC0, 0x0000000000000268 offset, 20 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000002F72D90, 0x00000000000002B0 offset, 20 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000002F72E60, 0x00000000000002D8 offset, 14 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000002F72EF0, 0x0000000000000308 offset, 14 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000002F72F80, 0x0000000000000318 offset, 16 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000002F73028, 0x0000000000000328 offset, 14 functions] `.?AVAlchemyItem@@` -`class AlchemyItem`: VTable [0x0000000002F730B8, 0x0000000000000338 offset, 14 functions] `.?AVAlchemyItem@@` -`class ConcreteFormFactory`: VTable [0x0000000002F73148, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VAlchemyItem@@$0CO@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F73198, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VAlchemyItem@@$0CO@$0BB@$01@@` -`class BGSDualCastData`: VTable [0x0000000002F73508, 0x0000000000000000 offset, 125 functions] `.?AVBGSDualCastData@@` -`class ConcreteFormFactory`: VTable [0x0000000002F739C8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSDualCastData@@$0IB@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F73A18, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSDualCastData@@$0IB@$0FP@$01@@` -`class EffectSetting`: VTable [0x0000000002F74790, 0x0000000000000000 offset, 101 functions] `.?AVEffectSetting@@` -`class EffectSetting`: VTable [0x0000000002F74B68, 0x0000000000000028 offset, 16 functions] `.?AVEffectSetting@@` -`class EffectSetting`: VTable [0x0000000002F74C10, 0x0000000000000040 offset, 15 functions] `.?AVEffectSetting@@` -`class EffectSetting`: VTable [0x0000000002F74CB0, 0x0000000000000050 offset, 16 functions] `.?AVEffectSetting@@` -`class ConcreteFormFactory`: VTable [0x0000000002F74D58, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VEffectSetting@@$0BC@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F74DA8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VEffectSetting@@$0BC@$0ED@$01@@` -`class EffectSettingCollection`: VTable [0x0000000002F75880, 0x0000000000000000 offset, 1 functions] `.?AVEffectSettingCollection@@` -`class EnchantmentItem`: VTable [0x0000000002F759E0, 0x0000000000000000 offset, 160 functions] `.?AVEnchantmentItem@@` -`class EnchantmentItem`: VTable [0x0000000002F75FF0, 0x0000000000000050 offset, 16 functions] `.?AVEnchantmentItem@@` -`class EnchantmentItem`: VTable [0x0000000002F76098, 0x0000000000000068 offset, 16 functions] `.?AVEnchantmentItem@@` -`class ConcreteFormFactory`: VTable [0x0000000002F76140, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VEnchantmentItem@@$0BF@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F76190, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VEnchantmentItem@@$0BF@$0BA@$01@@` -`class `anonymous namespace'::IsValidEnchantmentForWeaponFunctor`: VTable [0x0000000002F76370, 0x0000000000000000 offset, 1 functions] `.?AVIsValidEnchantmentForWeaponFunctor@?A0xa16bb075@@` -`class `anonymous namespace'::IsValidEnchantmentForArmorFunctor`: VTable [0x0000000002F76388, 0x0000000000000000 offset, 1 functions] `.?AVIsValidEnchantmentForArmorFunctor@?A0xa16bb075@@` -`class IngredientItem`: VTable [0x0000000002F764E0, 0x0000000000000000 offset, 160 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x0000000002F76AF0, 0x0000000000000050 offset, 16 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x0000000002F76B98, 0x0000000000000068 offset, 16 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x0000000002F76C40, 0x0000000000000268 offset, 20 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x0000000002F76D10, 0x00000000000002B0 offset, 20 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x0000000002F76DE0, 0x00000000000002D8 offset, 14 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x0000000002F76E70, 0x00000000000002E8 offset, 16 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x0000000002F76F18, 0x00000000000002F8 offset, 14 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x0000000002F76FA8, 0x0000000000000308 offset, 14 functions] `.?AVIngredientItem@@` -`class IngredientItem`: VTable [0x0000000002F77038, 0x0000000000000320 offset, 14 functions] `.?AVIngredientItem@@` -`class ConcreteFormFactory`: VTable [0x0000000002F77160, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VIngredientItem@@$0BO@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F771B0, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VIngredientItem@@$0BO@$04$00@@` -`class MagicItem`: VTable [0x0000000002F77540, 0x0000000000000000 offset, 160 functions] `.?AVMagicItem@@` -`class MagicItem`: VTable [0x0000000002F77B50, 0x0000000000000050 offset, 16 functions] `.?AVMagicItem@@` -`class MagicItem`: VTable [0x0000000002F77BF8, 0x0000000000000068 offset, 16 functions] `.?AVMagicItem@@` -`class MagicItemTraversalFunctor`: VTable [0x0000000002F77CA0, 0x0000000000000000 offset, 2 functions] `.?AVMagicItemTraversalFunctor@@` -`class MagicItemFindFunctor`: VTable [0x0000000002F77CC0, 0x0000000000000000 offset, 3 functions] `.?AVMagicItemFindFunctor@@` -`class MagicItemFindKeywordFunctor`: VTable [0x0000000002F77CE8, 0x0000000000000000 offset, 3 functions] `.?AVMagicItemFindKeywordFunctor@@` -`class FindNonExcludedDeliveryFunctor`: VTable [0x0000000002F77D10, 0x0000000000000000 offset, 3 functions] `.?AVFindNonExcludedDeliveryFunctor@@` -`class FindEqualsFunctor`: VTable [0x0000000002F77F38, 0x0000000000000000 offset, 3 functions] `.?AVFindEqualsFunctor@@` -`class GetCostliestEffectFunctor`: VTable [0x0000000002F77F60, 0x0000000000000000 offset, 2 functions] `.?AVGetCostliestEffectFunctor@@` -`class LongestDurationFunctor`: VTable [0x0000000002F77F80, 0x0000000000000000 offset, 2 functions] `.?AVLongestDurationFunctor@@` -`class LargestAreaFunctor`: VTable [0x0000000002F77FA0, 0x0000000000000000 offset, 2 functions] `.?AVLargestAreaFunctor@@` -`class GetMagicItemDescriptionFunctor`: VTable [0x0000000002F78A50, 0x0000000000000000 offset, 2 functions] `.?AVGetMagicItemDescriptionFunctor@@` -`class ScrollItem`: VTable [0x0000000002F78DC0, 0x0000000000000000 offset, 160 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x0000000002F793D0, 0x0000000000000050 offset, 16 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x0000000002F79478, 0x0000000000000068 offset, 16 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x0000000002F79520, 0x0000000000000268 offset, 16 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x0000000002F795C8, 0x0000000000000278 offset, 15 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x0000000002F79668, 0x0000000000000288 offset, 14 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x0000000002F796F8, 0x00000000000002D8 offset, 20 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x0000000002F797C8, 0x0000000000000320 offset, 14 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x0000000002F79858, 0x0000000000000330 offset, 14 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x0000000002F798E8, 0x0000000000000348 offset, 14 functions] `.?AVScrollItem@@` -`class ScrollItem`: VTable [0x0000000002F79978, 0x0000000000000358 offset, 14 functions] `.?AVScrollItem@@` -`class ConcreteFormFactory`: VTable [0x0000000002F79A08, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VScrollItem@@$0BH@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F79A58, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VScrollItem@@$0BH@$0GE@$01@@` -`class SpellItem`: VTable [0x0000000002F79BC8, 0x0000000000000000 offset, 160 functions] `.?AVSpellItem@@` -`class SpellItem`: VTable [0x0000000002F7A1D8, 0x0000000000000050 offset, 16 functions] `.?AVSpellItem@@` -`class SpellItem`: VTable [0x0000000002F7A280, 0x0000000000000068 offset, 16 functions] `.?AVSpellItem@@` -`class SpellItem`: VTable [0x0000000002F7A328, 0x0000000000000268 offset, 16 functions] `.?AVSpellItem@@` -`class SpellItem`: VTable [0x0000000002F7A3D0, 0x0000000000000278 offset, 15 functions] `.?AVSpellItem@@` -`class SpellItem`: VTable [0x0000000002F7A470, 0x0000000000000288 offset, 14 functions] `.?AVSpellItem@@` -`class ConcreteFormFactory`: VTable [0x0000000002F7A500, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VSpellItem@@$0BG@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002F7A550, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VSpellItem@@$0BG@$0P@$01@@` -`class bhkEntityListener`: VTable [0x0000000002F7A828, 0x0000000000000000 offset, 10 functions] `.?AVbhkEntityListener@@` -`class BGSAcousticSpaceListener`: VTable [0x0000000002F7A898, 0x0000000000000000 offset, 10 functions] `.?AVBGSAcousticSpaceListener@@` -`class bhkTTNode > >`: VTable [0x0000000002F7AB40, 0x0000000000000000 offset, 1 functions] `.?AV?$bhkTTNode@V?$BSPointerHandle@VTESObjectREFR@@V?$BSUntypedPointerHandle@$0BE@$05@@@@@@` -`class TargetEntry`: VTable [0x0000000002F7AB58, 0x0000000000000000 offset, 3 functions] `.?AVTargetEntry@@` -`class ZoneEntry`: VTable [0x0000000002F7AB80, 0x0000000000000000 offset, 3 functions] `.?AVZoneEntry@@` -`class BGSZoneTargetListener`: VTable [0x0000000002F7ABA8, 0x0000000000000000 offset, 3 functions] `.?AVBGSZoneTargetListener@@` -`class TrapTargetEntry`: VTable [0x0000000002F7ABD0, 0x0000000000000000 offset, 3 functions] `.?AVTrapTargetEntry@@` -`class BSTaskletData`: VTable [0x0000000002F7AF58, 0x0000000000000000 offset, 4 functions] `.?AVBSTaskletData@@` -`class BSWin32TaskletData`: VTable [0x0000000002F7AF88, 0x0000000000000000 offset, 4 functions] `.?AVBSWin32TaskletData@@` -`class bhkBvTreeShape`: VTable [0x0000000002F7AFB8, 0x0000000000000000 offset, 59 functions] `.?AVbhkBvTreeShape@@` -`class bhkTriSampledHeightFieldBvTreeShape`: VTable [0x0000000002F7B1F8, 0x0000000000000000 offset, 59 functions] `.?AVbhkTriSampledHeightFieldBvTreeShape@@` -`class CellMopp::HeightFieldWeldingTasklet`: VTable [0x0000000002F7B438, 0x0000000000000000 offset, 4 functions] `.?AVHeightFieldWeldingTasklet@CellMopp@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000002F7B468, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VbhkRigidBody@@@@V?$NiTNewInterface@V?$NiPointer@VbhkRigidBody@@@@@@@@` -`class NiTObjectArray >`: VTable [0x0000000002F7B480, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VbhkRigidBody@@@@@@` -`class CellMopp`: VTable [0x0000000002F7B498, 0x0000000000000000 offset, 2 functions] `.?AVCellMopp@@` -`class BSTasklet`: VTable [0x0000000002F7B4B8, 0x0000000000000000 offset, 1 functions] `.?AVBSTasklet@@` -`class hkError`: VTable [0x0000000002F7B9D0, 0x0000000000000000 offset, 9 functions] `.?AVhkError@@` -`class hkStreamReader`: VTable [0x0000000002F7BA30, 0x0000000000000000 offset, 12 functions] `.?AVhkStreamReader@@` -`class hkStreamWriter`: VTable [0x0000000002F7BAB0, 0x0000000000000000 offset, 9 functions] `.?AVhkStreamWriter@@` -`class hkFileSystem`: VTable [0x0000000002F7BB10, 0x0000000000000000 offset, 6 functions] `.?AVhkFileSystem@@` -`class HavokStreambufReader`: VTable [0x0000000002F7BB58, 0x0000000000000000 offset, 12 functions] `.?AVHavokStreambufReader@@` -`class HavokStreambufWriter`: VTable [0x0000000002F7BBD8, 0x0000000000000000 offset, 9 functions] `.?AVHavokStreambufWriter@@` -`class HavokFileStreambufReader`: VTable [0x0000000002F7BC38, 0x0000000000000000 offset, 13 functions] `.?AVHavokFileStreambufReader@@` -`class HavokFileStreambufWriter`: VTable [0x0000000002F7BCC0, 0x0000000000000000 offset, 9 functions] `.?AVHavokFileStreambufWriter@@` -`class hkNativeFileSystem`: VTable [0x0000000002F7BD20, 0x0000000000000000 offset, 6 functions] `.?AVhkNativeFileSystem@@` -`class HavokStreambufFactory`: VTable [0x0000000002F7BD68, 0x0000000000000000 offset, 6 functions] `.?AVHavokStreambufFactory@@` -`class HavokError`: VTable [0x0000000002F7BDB0, 0x0000000000000000 offset, 17 functions] `.?AVHavokError@@` -`class hkpCdBodyPairCollector`: VTable [0x0000000002F7C718, 0x0000000000000000 offset, 3 functions] `.?AVhkpCdBodyPairCollector@@` -`class hkpPhantomListener`: VTable [0x0000000002F7C740, 0x0000000000000000 offset, 5 functions] `.?AVhkpPhantomListener@@` -`class bhkTrapListener`: VTable [0x0000000002F7C780, 0x0000000000000000 offset, 10 functions] `.?AVbhkTrapListener@@` -`class bhkTrapListener`: VTable [0x0000000002F7C7F0, 0x0000000000000018 offset, 5 functions] `.?AVbhkTrapListener@@` -`class TrapEntry`: VTable [0x0000000002F7C830, 0x0000000000000000 offset, 3 functions] `.?AVTrapEntry@@` -`class BSListBase`: VTable [0x0000000002F7C858, 0x0000000000000000 offset, 3 functions] `.?AV?$BSListBase@PEAUTriggerEvent@TriggerEntry@@@@` -`class BSPointerListBase`: VTable [0x0000000002F7C880, 0x0000000000000000 offset, 3 functions] `.?AV?$BSPointerListBase@PEAUTriggerEvent@TriggerEntry@@@@` -`class BSList`: VTable [0x0000000002F7C8A8, 0x0000000000000000 offset, 3 functions] `.?AV?$BSList@PEAUTriggerEvent@TriggerEntry@@@@` -`class TriggerEntry`: VTable [0x0000000002F7C8D0, 0x0000000000000000 offset, 1 functions] `.?AVTriggerEntry@@` -`class TESTrapListener`: VTable [0x0000000002F7C8E8, 0x0000000000000000 offset, 3 functions] `.?AVTESTrapListener@@` -`class TESTrapListener`: VTable [0x0000000002F7C910, 0x0000000000000010 offset, 10 functions] `.?AVTESTrapListener@@` -`class TESTrapListener`: VTable [0x0000000002F7C980, 0x0000000000000028 offset, 5 functions] `.?AVTESTrapListener@@` -`class hkpAllCdBodyPairTempCollector`: VTable [0x0000000002F7C9C0, 0x0000000000000000 offset, 3 functions] `.?AVhkpAllCdBodyPairTempCollector@@` -`class Atmosphere`: VTable [0x0000000002F7CB90, 0x0000000000000000 offset, 5 functions] `.?AVAtmosphere@@` -`class Clouds`: VTable [0x0000000002F7CD68, 0x0000000000000000 offset, 4 functions] `.?AVClouds@@` -`class Moon`: VTable [0x0000000002F7CF50, 0x0000000000000000 offset, 4 functions] `.?AVMoon@@` -`class Precipitation`: VTable [0x0000000002F7D220, 0x0000000000000000 offset, 1 functions] `.?AVPrecipitation@@` -`class Sky`: VTable [0x0000000002F7D6B0, 0x0000000000000000 offset, 1 functions] `.?AVSky@@` -`class SkyStaticFindFunctor`: VTable [0x0000000002F7DB60, 0x0000000000000000 offset, 1 functions] `.?AVSkyStaticFindFunctor@@` -`class SkyObject`: VTable [0x0000000002F7DC28, 0x0000000000000000 offset, 4 functions] `.?AVSkyObject@@` -`class Stars`: VTable [0x0000000002F7DDA8, 0x0000000000000000 offset, 4 functions] `.?AVStars@@` -`class Sun`: VTable [0x0000000002F7E058, 0x0000000000000000 offset, 4 functions] `.?AVSun@@` -`class NiBillboardNode`: VTable [0x0000000002F7E088, 0x0000000000000000 offset, 64 functions] `.?AVNiBillboardNode@@` -`class BSFaceGenAnimationData`: VTable [0x0000000002F9A4D0, 0x0000000000000000 offset, 41 functions] `.?AVBSFaceGenAnimationData@@` -`class FutBinaryFileC`: VTable [0x0000000002F9AD68, 0x0000000000000000 offset, 12 functions] `.?AVFutBinaryFileC@@` -`class BSResourceFaceGenBinaryFile`: VTable [0x0000000002F9ADE8, 0x0000000000000000 offset, 12 functions] `.?AVBSResourceFaceGenBinaryFile@@` -`class BSResource::EntryDB`: VTable [0x0000000002F9C700, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@TRI@BSFaceGenDB@@@BSResource@@` -`class BSResource::EntryDB`: VTable [0x0000000002F9C748, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@FG@BSFaceGenDB@@@BSResource@@` -`class BSFaceGenKeyframe`: VTable [0x0000000002F9CB88, 0x0000000000000000 offset, 14 functions] `.?AVBSFaceGenKeyframe@@` -`class BSFaceGenKeyframeExclusive`: VTable [0x0000000002F9CC18, 0x0000000000000000 offset, 18 functions] `.?AVBSFaceGenKeyframeExclusive@@` -`class BSFaceGenKeyframeMultiple`: VTable [0x0000000002F9CCD0, 0x0000000000000000 offset, 16 functions] `.?AVBSFaceGenKeyframeMultiple@@` -`class BSQueuedResourceCollection,2>`: VTable [0x0000000002F9D320, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@TRI@BSFaceGenDB@@@BSResource@@$01@@` -`class BSQueuedResourceCollection,2>`: VTable [0x0000000002F9D3F0, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@TRI@BSFaceGenDB@@@BSResource@@$01@@` -`class BSFaceGenDB::TRI::QueuedHandles`: VTable [0x0000000002F9D418, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHandles@TRI@BSFaceGenDB@@` -`class BSFaceGenDB::TRI::QueuedHandles`: VTable [0x0000000002F9D4E8, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHandles@TRI@BSFaceGenDB@@` -`class BSAutoQueuedResourceCollection`: VTable [0x0000000002F9D858, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAutoQueuedResourceCollection@VQueuedHandles@TRI@BSFaceGenDB@@@@` -`class BSFaceGenModel`: VTable [0x0000000002F9DC40, 0x0000000000000000 offset, 2 functions] `.?AVBSFaceGenModel@@` -`class BSFaceGenModelExtraData`: VTable [0x0000000002F9DC60, 0x0000000000000000 offset, 41 functions] `.?AVBSFaceGenModelExtraData@@` -`class BSFaceGenModelMap::Entry`: VTable [0x0000000002F9E1A8, 0x0000000000000000 offset, 2 functions] `.?AVEntry@BSFaceGenModelMap@@` -`class BSFaceGenMorphData`: VTable [0x0000000002F9E608, 0x0000000000000000 offset, 23 functions] `.?AVBSFaceGenMorphData@@` -`class BSFaceGenMorphDataHead`: VTable [0x0000000002F9E6F0, 0x0000000000000000 offset, 23 functions] `.?AVBSFaceGenMorphDataHead@@` -`class BSFaceGenMorphDataHair`: VTable [0x0000000002F9E7D8, 0x0000000000000000 offset, 23 functions] `.?AVBSFaceGenMorphDataHair@@` -`class BSFaceGenBaseMorphExtraData`: VTable [0x0000000002F9E8C0, 0x0000000000000000 offset, 41 functions] `.?AVBSFaceGenBaseMorphExtraData@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002F9EE68, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$03@@@@` -`class BSFaceGenNiNode`: VTable [0x0000000002F9F098, 0x0000000000000000 offset, 65 functions] `.?AVBSFaceGenNiNode@@` -`class BSFadeNodeCuller`: VTable [0x0000000002FA0480, 0x0000000000000000 offset, 25 functions] `.?AVBSFadeNodeCuller@@` -`class BSTreeNodeUtils::TreeNodeCollisionPicker`: VTable [0x0000000002FA06C8, 0x0000000000000000 offset, 3 functions] `.?AVTreeNodeCollisionPicker@BSTreeNodeUtils@@` -`class BSTempEffect`: VTable [0x0000000002FA0890, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffect@@` -`class BSTempEffectGeometryDecal`: VTable [0x0000000002FA0CD8, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectGeometryDecal@@` -`class NiTArray >`: VTable [0x0000000002FA13B8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVNiAVObject@@V?$NiTMallocInterface@PEAVNiAVObject@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000002FA13D0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVNiAVObject@@@@` -`class BSTempEffectParticle`: VTable [0x0000000002FA13E8, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectParticle@@` -`class BGSParticleObjectCloneTask`: VTable [0x0000000002FA1600, 0x0000000000000000 offset, 10 functions] `.?AVBGSParticleObjectCloneTask@@` -`class BSTempEffectSimpleDecal`: VTable [0x0000000002FA18E0, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectSimpleDecal@@` -`class BSTempEffectSPG`: VTable [0x0000000002FA1DF0, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectSPG@@` -`class BSTempEffectWeaponBlood`: VTable [0x0000000002FA21B0, 0x0000000000000000 offset, 51 functions] `.?AVBSTempEffectWeaponBlood@@` -`class NavMesh`: VTable [0x0000000002FA3390, 0x0000000000000000 offset, 101 functions] `.?AVNavMesh@@` -`class NavMesh`: VTable [0x0000000002FA3768, 0x0000000000000028 offset, 2 functions] `.?AVNavMesh@@` -`class NavMesh`: VTable [0x0000000002FA3788, 0x0000000000000030 offset, 2 functions] `.?AVNavMesh@@` -`class hkpClosestRayHitCollector`: VTable [0x0000000002FA37A8, 0x0000000000000000 offset, 2 functions] `.?AVhkpClosestRayHitCollector@@` -`class ConcreteFormFactory`: VTable [0x0000000002FA37C8, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VNavMesh@@$0EJ@@@` -`class BSPathingStreamRead`: VTable [0x0000000002FA4F30, 0x0000000000000000 offset, 20 functions] `.?AVBSPathingStreamRead@@` -`class BSPathingStreamWrite`: VTable [0x0000000002FA5000, 0x0000000000000000 offset, 17 functions] `.?AVBSPathingStreamWrite@@` -`class PathingStreamMasterFileRead`: VTable [0x0000000002FA50B0, 0x0000000000000000 offset, 20 functions] `.?AVPathingStreamMasterFileRead@@` -`class MasterFilePathingStreamWriteToBuffer`: VTable [0x0000000002FA5180, 0x0000000000000000 offset, 17 functions] `.?AVMasterFilePathingStreamWriteToBuffer@@` -`class MasterFilePathingStreamGetSize`: VTable [0x0000000002FA5230, 0x0000000000000000 offset, 17 functions] `.?AVMasterFilePathingStreamGetSize@@` -`class NavMeshNodeExtraData`: VTable [0x0000000002FA6328, 0x0000000000000000 offset, 41 functions] `.?AVNavMeshNodeExtraData@@` -`class BSPathingCellManager`: VTable [0x0000000002FA7DD0, 0x0000000000000000 offset, 11 functions] `.?AVBSPathingCellManager@@` -`class Pathing`: VTable [0x0000000002FA7E48, 0x0000000000000000 offset, 9 functions] `.?AVPathing@@` -`class Pathing`: VTable [0x0000000002FA7EA8, 0x0000000000000018 offset, 11 functions] `.?AVPathing@@` -`class Pathing`: VTable [0x0000000002FA7F20, 0x0000000000000020 offset, 2 functions] `.?AVPathing@@` -`class PathingCoverLocation`: VTable [0x0000000002FA7F40, 0x0000000000000000 offset, 3 functions] `.?AVPathingCoverLocation@@` -`struct BSPathfindingTemporary`: VTable [0x0000000002FA7FB8, 0x0000000000000000 offset, 7 functions] `.?AU?$BSPathfindingTemporary@VPathingRequestSafeStraightLine@@@@` -`class BSPathingCell`: VTable [0x0000000002FA8740, 0x0000000000000000 offset, 12 functions] `.?AVBSPathingCell@@` -`class PathingCell`: VTable [0x0000000002FA87C0, 0x0000000000000000 offset, 12 functions] `.?AVPathingCell@@` -`struct IBSTCreator`: VTable [0x0000000002FA8868, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSPathingCell@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FA8890, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingCell@@VBSPathingCell@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FA88B8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingCell@@VBSPathingCell@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingCell@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FA88E0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingCell@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingCell@@$0EA@@@@@` -`class PathingDebugGeometry`: VTable [0x0000000002FA8ED8, 0x0000000000000000 offset, 2 functions] `.?AVPathingDebugGeometry@@` -`class BSPathingDoor`: VTable [0x0000000002FA97B0, 0x0000000000000000 offset, 18 functions] `.?AVBSPathingDoor@@` -`class PathingDoor`: VTable [0x0000000002FA9868, 0x0000000000000000 offset, 18 functions] `.?AVPathingDoor@@` -`struct IBSTCreator`: VTable [0x0000000002FA9920, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSPathingDoor@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FA9948, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingDoor@@VBSPathingDoor@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FA9970, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingDoor@@VBSPathingDoor@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingDoor@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FA9998, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingDoor@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingDoor@@$0EA@@@@@` -`class BSPathingNumericIDVisitor`: VTable [0x0000000002FA9C20, 0x0000000000000000 offset, 2 functions] `.?AVBSPathingNumericIDVisitor@@` -`class PathingNumericIDVisitor`: VTable [0x0000000002FA9C40, 0x0000000000000000 offset, 2 functions] `.?AVPathingNumericIDVisitor@@` -`class PathingRequest`: VTable [0x0000000002FA9DE0, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequest@@` -`struct IBSTCreator`: VTable [0x0000000002FA9E30, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSPathingRequest@@@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FA9E58, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequest@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FA9E80, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequest@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FA9EA8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequest@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FA9ED0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequest@@VBSPathingRequest@@$0EA@@@` -`class BSPathingSpace`: VTable [0x0000000002FAA060, 0x0000000000000000 offset, 4 functions] `.?AVBSPathingSpace@@` -`class PathingSpace`: VTable [0x0000000002FAA090, 0x0000000000000000 offset, 4 functions] `.?AVPathingSpace@@` -`class AStarSearch`: VTable [0x0000000002FAA5D0, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@UParentSpaceNode@@UTeleportLink@@$00@@` -`class TeleportDoorSearch`: VTable [0x0000000002FAA5F8, 0x0000000000000000 offset, 3 functions] `.?AVTeleportDoorSearch@@` -`struct BSPathfindingTemporary`: VTable [0x0000000002FAA620, 0x0000000000000000 offset, 18 functions] `.?AU?$BSPathfindingTemporary@VPathingDoor@@@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002FAA738, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$07@@@@` -`struct BSNavmeshInfoMap::IVisitor`: VTable [0x0000000002FABF68, 0x0000000000000000 offset, 2 functions] `.?AUIVisitor@BSNavmeshInfoMap@@` -`class NavMeshInfoMap`: VTable [0x0000000002FABFC8, 0x0000000000000000 offset, 101 functions] `.?AVNavMeshInfoMap@@` -`class NavMeshInfoMap`: VTable [0x0000000002FAC3A0, 0x0000000000000028 offset, 6 functions] `.?AVNavMeshInfoMap@@` -`class RecomputeBoundsTaskData`: VTable [0x0000000002FACE00, 0x0000000000000000 offset, 4 functions] `.?AVRecomputeBoundsTaskData@@` -`struct `anonymous namespace'::ClearPrecomputedPathFlag`: VTable [0x0000000002FACF10, 0x0000000000000000 offset, 2 functions] `.?AUClearPrecomputedPathFlag@?A0x11808b5e@@` -`class NavMeshObstacleManager`: VTable [0x0000000002FAE468, 0x0000000000000000 offset, 2 functions] `.?AVNavMeshObstacleManager@@` -`class BSNavmeshReferenceObstacleArray`: VTable [0x0000000002FAE488, 0x0000000000000000 offset, 2 functions] `.?AVBSNavmeshReferenceObstacleArray@@` -`class hkpEntityActivationListener`: VTable [0x0000000002FAE4A8, 0x0000000000000000 offset, 3 functions] `.?AVhkpEntityActivationListener@@` -`class bhkObstacleDeactivationListener`: VTable [0x0000000002FAE5F0, 0x0000000000000000 offset, 3 functions] `.?AVbhkObstacleDeactivationListener@@` -`class bhkObstacleRemovalListener`: VTable [0x0000000002FAE618, 0x0000000000000000 offset, 6 functions] `.?AVbhkObstacleRemovalListener@@` -`class ObstacleTaskData`: VTable [0x0000000002FAEAF8, 0x0000000000000000 offset, 4 functions] `.?AVObstacleTaskData@@` -`class AStarSearch`: VTable [0x0000000002FAF068, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@UBSFastNavmeshTriLocation@@UBSFastNavmeshEdgeHandle@@$02@@` -`class NavMeshSearchClosePoint`: VTable [0x0000000002FAF090, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchClosePoint@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002FAF350, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0BI@@@@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002FAF380, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0EA@@@@@` -`class AStarSearch`: VTable [0x0000000002FAF710, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@UBSFastNavmeshTriLocation@@PEAX$02@@` -`class NavMeshSearchFitSphere`: VTable [0x0000000002FAF738, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchFitSphere@@` -`class NavMeshSearchFlee`: VTable [0x0000000002FAF8E0, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchFlee@@` -`class NavMeshSearchHide`: VTable [0x0000000002FAFA08, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchHide@@` -`struct BSNavmeshSearchHideFilter`: VTable [0x0000000002FAFA30, 0x0000000000000000 offset, 2 functions] `.?AUBSNavmeshSearchHideFilter@@` -`class NavMeshSearchLOS`: VTable [0x0000000002FAFB10, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchLOS@@` -`class NavMeshSearchMaxCost`: VTable [0x0000000002FAFCD8, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchMaxCost@@` -`struct BSNavmeshSearchMaxCostFilters`: VTable [0x0000000002FAFD00, 0x0000000000000000 offset, 2 functions] `.?AUBSNavmeshSearchMaxCostFilters@@` -`class NavMeshSearchMultipleGoals`: VTable [0x0000000002FAFD80, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchMultipleGoals@@` -`class NavMeshSearchSLPoint`: VTable [0x0000000002FAFEE0, 0x0000000000000000 offset, 3 functions] `.?AVNavMeshSearchSLPoint@@` -`class PathingRequestClosePoint`: VTable [0x0000000002FB0058, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestClosePoint@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB00A8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestClosePoint@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB00D0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestClosePoint@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB00F8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestClosePoint@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB0120, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestClosePoint@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestClosestGoal`: VTable [0x0000000002FB06A8, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestClosestGoal@@` -`class IPathBuilderFactoryBase`: VTable [0x0000000002FB06F8, 0x0000000000000000 offset, 2 functions] `.?AVIPathBuilderFactoryBase@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB0718, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestClosestGoal@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB0740, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestClosestGoal@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB0768, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestClosestGoal@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB0790, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestClosestGoal@@VBSPathingRequest@@$0EA@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB07B8, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestClosestGoal@@UPathBuilder@1@@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002FB09C0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0HA@@@@@` -`class PathingRequestCover`: VTable [0x0000000002FB0C00, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestCover@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB0C50, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestCover@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB0C78, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestCover@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB0CA0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestCover@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB0CC8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestCover@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFlee`: VTable [0x0000000002FB0D98, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlee@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB0DE8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlee@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB0E10, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlee@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB0E38, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlee@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB0E60, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlee@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFly`: VTable [0x0000000002FB0FC0, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFly@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB1010, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFly@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB1038, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFly@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB1060, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFly@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB1088, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFly@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFlyAction`: VTable [0x0000000002FB11E8, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyAction@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB1238, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyAction@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB1260, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyAction@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB1288, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyAction@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB12B0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyAction@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFlyHover`: VTable [0x0000000002FB1568, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyHover@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB15B8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyHover@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB15E0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyHover@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB1608, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyHover@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB1630, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyHover@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFlyLand`: VTable [0x0000000002FB1798, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyLand@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB17E8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyLand@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB1810, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyLand@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB1838, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyLand@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB1860, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyLand@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFlyOrbit`: VTable [0x0000000002FB19C8, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyOrbit@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB1A18, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyOrbit@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB1A40, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyOrbit@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB1A68, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyOrbit@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB1A90, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyOrbit@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestFlyTakeOff`: VTable [0x0000000002FB1B68, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestFlyTakeOff@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB1BB8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestFlyTakeOff@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB1BE0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestFlyTakeOff@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB1C08, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestFlyTakeOff@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB1C30, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestFlyTakeOff@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestHide`: VTable [0x0000000002FB1D68, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestHide@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB1DB8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestHide@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB1DE0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestHide@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB1E08, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestHide@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB1E30, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestHide@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestLOS`: VTable [0x0000000002FB1F90, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestLOS@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB1FE0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestLOS@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB2008, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestLOS@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB2030, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestLOS@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB2058, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestLOS@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestOptimalLocation`: VTable [0x0000000002FB2158, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestOptimalLocation@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB21A8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestOptimalLocation@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB21D0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestOptimalLocation@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB21F8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestOptimalLocation@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB2220, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestOptimalLocation@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestRotate`: VTable [0x0000000002FB2360, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestRotate@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB23B0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestRotate@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB23D8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestRotate@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB2400, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestRotate@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB2428, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestRotate@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestSafeStraightLine`: VTable [0x0000000002FB2530, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestSafeStraightLine@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB2580, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestSafeStraightLine@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB25A8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestSafeStraightLine@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB25D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestSafeStraightLine@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB25F8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestSafeStraightLine@@VBSPathingRequest@@$0EA@@@` -`class PathingRequestStopMoving`: VTable [0x0000000002FB2708, 0x0000000000000000 offset, 7 functions] `.?AVPathingRequestStopMoving@@` -`struct BSTDerivedCreator`: VTable [0x0000000002FB2758, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VPathingRequestStopMoving@@VBSPathingRequest@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x0000000002FB2780, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VPathingRequestStopMoving@@VBSPathingRequest@@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000002FB27A8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VPathingRequestStopMoving@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterSmartPtrDerivedPathingType`: VTable [0x0000000002FB27D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterSmartPtrDerivedPathingType@VPathingRequestStopMoving@@VBSPathingRequest@@$0EA@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB2998, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestClosePoint@@VPathBuilderClosePointPath@?A0xdc957804@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB2CF0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequest@@VPathBuilderPathingRequest@?A0x746b3427@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB2D10, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestStopMoving@@VPathBuilderStopMovingPath@?A0x746b3427@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB2D30, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestRotate@@VPathBuilderRotatePath@?A0x746b3427@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB2E10, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlee@@VPathBuilderFleePath@PathBuilderFlee@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB3860, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFly@@VPathBuilderFlyPath@PathBuilderFlight@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB3880, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyAction@@VPathBuilderFlyActionPath@PathBuilderFlight@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB38A0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyHover@@VPathBuilderFlyHoverPath@PathBuilderFlight@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB38C0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyOrbit@@VPathBuilderFlyOrbitPath@PathBuilderFlight@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB38E0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyLand@@VPathBuilderFlyLandPath@PathBuilderFlight@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB3900, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestFlyTakeOff@@VPathBuilderFlyTakeOffPath@PathBuilderFlight@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB3A18, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestHide@@VPathBuilderHidePath@PathBuilderHide@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB3BE0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestLOS@@VPathBuilderLOSPath@PathBuilderLOS@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB3D80, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestOptimalLocation@@VPathBuilderOptimalLocationPath@PathBuilderOptimalLocation@@@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x0000000002FB3ED0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VPathingRequestSafeStraightLine@@VPathBuilderSafeStraightLinePath@PathBuilderSafeStraightLine@@@@` -`class BSHEAttributeBase`: VTable [0x0000000002FB41E8, 0x0000000000000000 offset, 1 functions] `.?AVBSHEAttributeBase@@` -`class BSHECollapseConstraint`: VTable [0x0000000002FB4258, 0x0000000000000000 offset, 1 functions] `.?AVBSHECollapseConstraint@@` -`class BSHEAttribute`: VTable [0x0000000002FB4270, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@VNiPoint3@@@@` -`class BSHEAttribute`: VTable [0x0000000002FB4288, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@VNiPoint2@@@@` -`class BGSTerrainMeshCollapseConstraint`: VTable [0x0000000002FB42A0, 0x0000000000000000 offset, 1 functions] `.?AVBGSTerrainMeshCollapseConstraint@@` -`class BGSTerrainMeshCollapseConstraintInternal`: VTable [0x0000000002FB42B8, 0x0000000000000000 offset, 1 functions] `.?AVBGSTerrainMeshCollapseConstraintInternal@@` -`class BGSQueuedTerrainUpdate`: VTable [0x0000000002FB48D8, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedTerrainUpdate@@` -`class BGSQueuedTerrainUpgrade`: VTable [0x0000000002FB4920, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedTerrainUpgrade@@` -`class BGSQueuedTerrainDowngrade`: VTable [0x0000000002FB4968, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedTerrainDowngrade@@` -`class BGSQueuedTerrainInitialLoad`: VTable [0x0000000002FB49B0, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedTerrainInitialLoad@@` -`class BGSQueuedObjectUpgrade`: VTable [0x0000000002FB49F8, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedObjectUpgrade@@` -`class BGSQueuedObjectDowngrade`: VTable [0x0000000002FB4A40, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedObjectDowngrade@@` -`class BGSQueuedObjectInitialLoad`: VTable [0x0000000002FB4A88, 0x0000000000000000 offset, 6 functions] `.?AVBGSQueuedObjectInitialLoad@@` -`class std::basic_stringstream,class std::allocator >`: VTable [0x0000000002FB64C0, 0x0000000000000098 offset, 1 functions] `.?AV?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@` -`class BSResource::EntryDB`: VTable [0x0000000002FB7CD0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BGSBtoDB@@@BSResource@@` -`class BSResource::EntryDB`: VTable [0x0000000002FB8DA0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BGSBttDB@@@BSResource@@` -`class BSResource::EntryDB`: VTable [0x0000000002FB9AD0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BGSBtrDB@@@BSResource@@` -`class BGSTerrainBuildThread`: VTable [0x0000000002FBADA0, 0x0000000000000000 offset, 3 functions] `.?AVBGSTerrainBuildThread@@` -`class BGSTerrainBuildDispatcherThread`: VTable [0x0000000002FBADC8, 0x0000000000000000 offset, 3 functions] `.?AVBGSTerrainBuildDispatcherThread@@` -`class BGSTerrainVisibilityFinderTestThread`: VTable [0x0000000002FBC118, 0x0000000000000000 offset, 3 functions] `.?AVBGSTerrainVisibilityFinderTestThread@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002FBCEE8, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0GM@@@@@` -`class bhkAabbPhantom`: VTable [0x0000000002FBD4B8, 0x0000000000000000 offset, 55 functions] `.?AVbhkAabbPhantom@@` -`class BGSWaterCollisionManager::bhkWaterfall`: VTable [0x0000000002FBD6D8, 0x0000000000000000 offset, 13 functions] `.?AVbhkWaterfall@BGSWaterCollisionManager@@` -`class BGSWaterCollisionManager::bhkWaterfall`: VTable [0x0000000002FBD760, 0x0000000000000020 offset, 7 functions] `.?AVbhkWaterfall@BGSWaterCollisionManager@@` -`class BGSWaterCollisionManager::bhkAutoWater`: VTable [0x0000000002FBD7B0, 0x0000000000000000 offset, 55 functions] `.?AVbhkAutoWater@BGSWaterCollisionManager@@` -`class BGSWaterCollisionManager::bshkAutoWater`: VTable [0x0000000002FBDB58, 0x0000000000000000 offset, 15 functions] `.?AVbshkAutoWater@BGSWaterCollisionManager@@` -`class BGSWaterCollisionManager::bshkAutoWater`: VTable [0x0000000002FBDBF8, 0x0000000000000130 offset, 7 functions] `.?AVbshkAutoWater@BGSWaterCollisionManager@@` -`class TESWaterObject`: VTable [0x0000000002FBE2A8, 0x0000000000000000 offset, 2 functions] `.?AVTESWaterObject@@` -`class TESWaterReflections`: VTable [0x0000000002FBE2C8, 0x0000000000000000 offset, 2 functions] `.?AVTESWaterReflections@@` -`class TESWaterNormals`: VTable [0x0000000002FBE2E8, 0x0000000000000000 offset, 2 functions] `.?AVTESWaterNormals@@` -`class ConcreteFormFactory`: VTable [0x0000000002FC0268, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSStoryManagerBranchNode@@$0HA@@@` -`class BGSStoryManagerEventNode`: VTable [0x0000000002FC03C0, 0x0000000000000000 offset, 113 functions] `.?AVBGSStoryManagerEventNode@@` -`class ConcreteFormFactory`: VTable [0x0000000002FC0808, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSStoryManagerEventNode@@$0HC@@@` -`class ConcreteObjectFormFactory`: VTable [0x0000000002FC0858, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteObjectFormFactory@VBGSStoryManagerEventNode@@$0HC@$0FN@$04@@` -`class DialogExtraStoryManagerData`: VTable [0x0000000002FC0AB0, 0x0000000000000000 offset, 3 functions] `.?AVDialogExtraStoryManagerData@@` -`class BGSStoryManagerQuestNode`: VTable [0x0000000002FC10E0, 0x0000000000000000 offset, 113 functions] `.?AVBGSStoryManagerQuestNode@@` -`class ConcreteFormFactory`: VTable [0x0000000002FC1528, 0x0000000000000000 offset, 7 functions] `.?AV?$ConcreteFormFactory@VBGSStoryManagerQuestNode@@$0HB@@@` -`class BGSLOSData`: VTable [0x0000000002FC17A8, 0x0000000000000000 offset, 2 functions] `.?AVBGSLOSData@@` -`class BGSLOSQuadGrid`: VTable [0x0000000002FC2240, 0x0000000000000000 offset, 5 functions] `.?AVBGSLOSQuadGrid@@` -`class BGSLOSGenParallelTask`: VTable [0x0000000002FC2280, 0x0000000000000000 offset, 2 functions] `.?AVBGSLOSGenParallelTask@@` -`class BGSLOSQuadGridDefault`: VTable [0x0000000002FC2590, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSLOSQuadGridDefault@VBGSLOSQuadInterior@@@@` -`class BGSLOSQuadGridSparse`: VTable [0x0000000002FC25E0, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSLOSQuadGridSparse@VBGSLOSQuadInterior@@@@` -`class BGSLOSQuadGridDefault`: VTable [0x0000000002FC2630, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSLOSQuadGridDefault@VBGSLOSQuadExterior@@@@` -`class BGSLOSQuadGridSparse`: VTable [0x0000000002FC2680, 0x0000000000000000 offset, 7 functions] `.?AV?$BGSLOSQuadGridSparse@VBGSLOSQuadExterior@@@@` -`class BGSLOSGenParallelTaskDelegate`: VTable [0x0000000002FC26D0, 0x0000000000000000 offset, 2 functions] `.?AV?$BGSLOSGenParallelTaskDelegate@VBGSLOSGenCellGrid@@@@` -`class BGSLOSGenParallelTaskDelegate`: VTable [0x0000000002FC26F0, 0x0000000000000000 offset, 2 functions] `.?AV?$BGSLOSGenParallelTaskDelegate@VHammingWeightComputer@@@@` -`class hkpBroadPhaseCastCollector`: VTable [0x0000000002FC28F0, 0x0000000000000000 offset, 2 functions] `.?AVhkpBroadPhaseCastCollector@@` -`class hkpWorldRayCaster`: VTable [0x0000000002FC2910, 0x0000000000000000 offset, 2 functions] `.?AVhkpWorldRayCaster@@` -`class bhkFirstRayHitCollector`: VTable [0x0000000002FC2930, 0x0000000000000000 offset, 2 functions] `.?AVbhkFirstRayHitCollector@@` -`class BGSLOSGenParallelTaskDelegate`: VTable [0x0000000002FC2E38, 0x0000000000000000 offset, 2 functions] `.?AV?$BGSLOSGenParallelTaskDelegate@VBGSLOSGenLOSArray@@@@` -`class BGSLOSGenParallelTaskDelegate`: VTable [0x0000000002FC33B0, 0x0000000000000000 offset, 2 functions] `.?AV?$BGSLOSGenParallelTaskDelegate@VBGSLOSGenOcclusionArray@@@@` -`class BSLinearTaskThread`: VTable [0x0000000002FC3558, 0x0000000000000000 offset, 7 functions] `.?AVBSLinearTaskThread@@` -`class BGSLOSGenParallelTaskThread`: VTable [0x0000000002FC35A8, 0x0000000000000000 offset, 7 functions] `.?AVBGSLOSGenParallelTaskThread@@` -`struct FindTriangleForLocationFilter`: VTable [0x0000000002FC3AD0, 0x0000000000000000 offset, 2 functions] `.?AUFindTriangleForLocationFilter@@` -`struct FindTriangleForLocationFilterCheckDeltaZ`: VTable [0x0000000002FC3AF0, 0x0000000000000000 offset, 2 functions] `.?AUFindTriangleForLocationFilterCheckDeltaZ@@` -`class BSShapeConstructor`: VTable [0x0000000002FC3B10, 0x0000000000000000 offset, 3 functions] `.?AVBSShapeConstructor@@` -`class BSBoxConstructor`: VTable [0x0000000002FC3B38, 0x0000000000000000 offset, 3 functions] `.?AVBSBoxConstructor@@` -`class BGSLOSGenQuadBoxConstructor`: VTable [0x0000000002FC3CB8, 0x0000000000000000 offset, 3 functions] `.?AVBGSLOSGenQuadBoxConstructor@@` -`class AnimationClipDataSingleton`: VTable [0x0000000002FC45E8, 0x0000000000000000 offset, 1 functions] `.?AVAnimationClipDataSingleton@@` -`class AnimationSystemUtils::QueuedReferenceAnimationTask`: VTable [0x0000000002FC5640, 0x0000000000000000 offset, 22 functions] `.?AVQueuedReferenceAnimationTask@AnimationSystemUtils@@` -`class AnimationSystemUtils::QueuedReferenceAnimationTask`: VTable [0x0000000002FC5720, 0x0000000000000038 offset, 3 functions] `.?AVQueuedReferenceAnimationTask@AnimationSystemUtils@@` -`class BSIFootIkRaycastInterfaceDB`: VTable [0x0000000002FC6230, 0x0000000000000000 offset, 3 functions] `.?AVBSIFootIkRaycastInterfaceDB@@` -`class hkaRaycastInterface`: VTable [0x0000000002FC6258, 0x0000000000000000 offset, 3 functions] `.?AVhkaRaycastInterface@@` -`class BGSFootIkRaycastInterfaceDB`: VTable [0x0000000002FC6280, 0x0000000000000000 offset, 3 functions] `.?AVBGSFootIkRaycastInterfaceDB@@` -`class CachedRaycastData`: VTable [0x0000000002FC62F8, 0x0000000000000000 offset, 3 functions] `.?AVCachedRaycastData@@` -`class IGamebryoSequenceGeneratorHolderSingleton`: VTable [0x0000000002FC6510, 0x0000000000000000 offset, 4 functions] `.?AVIGamebryoSequenceGeneratorHolderSingleton@@` -`class BGSGamebryoSequenceGeneratorHolderSingleton`: VTable [0x0000000002FC6540, 0x0000000000000000 offset, 4 functions] `.?AVBGSGamebryoSequenceGeneratorHolderSingleton@@` -`class BSSynchronizedClipGenerator::hkbSynchronizedAnimationScene`: VTable [0x0000000002FC7190, 0x0000000000000000 offset, 10 functions] `.?AVhkbSynchronizedAnimationScene@BSSynchronizedClipGenerator@@` -`class BGSSynchronizedAnimationInstance`: VTable [0x0000000002FC7200, 0x0000000000000000 offset, 10 functions] `.?AVBGSSynchronizedAnimationInstance@@` -`class BSAnimGraphVisit::BShkbVisitor`: VTable [0x0000000002FC7270, 0x0000000000000000 offset, 2 functions] `.?AVBShkbVisitor@BSAnimGraphVisit@@` -`class `anonymous namespace'::SynchronizedClipGenVisitor`: VTable [0x0000000002FC7378, 0x0000000000000000 offset, 2 functions] `.?AVSynchronizedClipGenVisitor@?A0x2bf83fbc@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000002FC7860, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0EI@@@@@` -`class BSLimbIKModifierUtilityCastInfo`: VTable [0x0000000002FC7A80, 0x0000000000000000 offset, 1 functions] `.?AVBSLimbIKModifierUtilityCastInfo@@` -`class BSLimbIKModifierUtility`: VTable [0x0000000002FC7A98, 0x0000000000000000 offset, 4 functions] `.?AVBSLimbIKModifierUtility@@` -`class hkpAllRayHitTempCollector`: VTable [0x0000000002FC7AC8, 0x0000000000000000 offset, 2 functions] `.?AVhkpAllRayHitTempCollector@@` -`class IAnimationGraphManagerHolder`: VTable [0x0000000002FC8670, 0x0000000000000000 offset, 19 functions] `.?AVIAnimationGraphManagerHolder@@` -`class IAnimationGraphManagerLoadingTask`: VTable [0x0000000002FC8730, 0x0000000000000000 offset, 22 functions] `.?AVIAnimationGraphManagerLoadingTask@@` -`class IAnimationGraphManagerLoadingTask`: VTable [0x0000000002FC8810, 0x0000000000000038 offset, 3 functions] `.?AVIAnimationGraphManagerLoadingTask@@` -`class SimpleAnimationGraphManagerHolder`: VTable [0x0000000002FC8D68, 0x0000000000000000 offset, 20 functions] `.?AVSimpleAnimationGraphManagerHolder@@` -`class SimpleAnimationGraphManagerLoadingTask`: VTable [0x0000000002FC8E38, 0x0000000000000000 offset, 22 functions] `.?AVSimpleAnimationGraphManagerLoadingTask@@` -`class SimpleAnimationGraphManagerLoadingTask`: VTable [0x0000000002FC8F18, 0x0000000000000038 offset, 3 functions] `.?AVSimpleAnimationGraphManagerLoadingTask@@` -`class WeaponAnimationGraphManagerHolder`: VTable [0x0000000002FC91F0, 0x0000000000000000 offset, 21 functions] `.?AVWeaponAnimationGraphManagerHolder@@` -`class TailAnimationGraphManagerHolder`: VTable [0x0000000002FC92C8, 0x0000000000000000 offset, 21 functions] `.?AVTailAnimationGraphManagerHolder@@` -`class BSTEventSink`: VTable [0x0000000002FC94F0, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UNameFoundEvent@BSResource@@@@` -`class `anonymous namespace'::LooseAudioRegistrar`: VTable [0x0000000002FC9510, 0x0000000000000000 offset, 2 functions] `.?AVLooseAudioRegistrar@?A0x561e66ec@@` -`class BSResource::EntryDB`: VTable [0x0000000002FCA5F0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BGSTerrainVisibilityDataDB@@@BSResource@@` -`class TESCamera`: VTable [0x0000000002FCA758, 0x0000000000000000 offset, 3 functions] `.?AVTESCamera@@` -`class TESRegionDataGrassEditor`: VTable [0x0000000002FCA870, 0x0000000000000000 offset, 17 functions] `.?AVTESRegionDataGrassEditor@@` -`class TESRegionDataLandscapeEditor`: VTable [0x0000000002FCAAF8, 0x0000000000000000 offset, 17 functions] `.?AVTESRegionDataLandscapeEditor@@` -`class TESRegionDataMapEditor`: VTable [0x0000000002FCAC68, 0x0000000000000000 offset, 14 functions] `.?AVTESRegionDataMapEditor@@` -`class TESRegionDataObjectsEditor`: VTable [0x0000000002FCB4A8, 0x0000000000000000 offset, 19 functions] `.?AVTESRegionDataObjectsEditor@@` -`class TESRegionDataSoundEditor`: VTable [0x0000000002FCBF18, 0x0000000000000000 offset, 15 functions] `.?AVTESRegionDataSoundEditor@@` -`class TESRegionDataWeatherEditor`: VTable [0x0000000002FCC050, 0x0000000000000000 offset, 15 functions] `.?AVTESRegionDataWeatherEditor@@` -`class NiTMapBase >,char const * __ptr64,class HeightField * __ptr64>`: VTable [0x0000000002FCE7F0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$DFALL@V?$NiTMapItem@PEBDPEAVHeightField@@@@@@PEBDPEAVHeightField@@@@` -`class NiTMap`: VTable [0x0000000002FCE840, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMap@PEBDPEAVHeightField@@@@` -`class NiTStringTemplateMap,class HeightField * __ptr64>`: VTable [0x0000000002FCE890, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTMap@PEBDPEAVHeightField@@@@PEAVHeightField@@@@` -`class NiTStringMap`: VTable [0x0000000002FCE8E0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringMap@PEAVHeightField@@@@` -`class BSHEMeshDebugger::StepCallback`: VTable [0x0000000002FCF490, 0x0000000000000000 offset, 7 functions] `.?AVStepCallback@BSHEMeshDebugger@@` -`class BGSMeshDebuggerValidatorThread`: VTable [0x0000000002FCF4E0, 0x0000000000000000 offset, 3 functions] `.?AVBGSMeshDebuggerValidatorThread@@` -`class BGSMeshDebuggerTestThread`: VTable [0x0000000002FCF508, 0x0000000000000000 offset, 3 functions] `.?AVBGSMeshDebuggerTestThread@@` -`class StepCallback`: VTable [0x0000000002FCF530, 0x0000000000000000 offset, 7 functions] `.?AVStepCallback@@` -`class NavMeshEditObject`: VTable [0x0000000002FD0F18, 0x0000000000000000 offset, 33 functions] `.?AVNavMeshEditObject@@` -`class NavMeshEditVertex`: VTable [0x0000000002FD1060, 0x0000000000000000 offset, 35 functions] `.?AVNavMeshEditVertex@@` -`class NavMeshEditTriangle`: VTable [0x0000000002FD11C0, 0x0000000000000000 offset, 33 functions] `.?AVNavMeshEditTriangle@@` -`class NavMeshEditEdge`: VTable [0x0000000002FD1308, 0x0000000000000000 offset, 34 functions] `.?AVNavMeshEditEdge@@` -`class NavGenUtil::NavGenMeshRecastImport`: VTable [0x0000000002FD3688, 0x0000000000000000 offset, 2 functions] `.?AVNavGenMeshRecastImport@NavGenUtil@@` -`class CSScript::FragmentSystem::BaseObjectFragmentData`: VTable [0x0000000002FD8728, 0x0000000000000000 offset, 5 functions] `.?AVBaseObjectFragmentData@FragmentSystem@CSScript@@` -`class CSScript::FragmentSystem::QuestFragmentData`: VTable [0x0000000002FD8768, 0x0000000000000000 offset, 5 functions] `.?AVQuestFragmentData@FragmentSystem@CSScript@@` -`class CSScript::FragmentSystem::TopicInfoFragmentData`: VTable [0x0000000002FD87A8, 0x0000000000000000 offset, 5 functions] `.?AVTopicInfoFragmentData@FragmentSystem@CSScript@@` -`class CSScript::FragmentSystem::SceneFragmentData`: VTable [0x0000000002FD87E8, 0x0000000000000000 offset, 5 functions] `.?AVSceneFragmentData@FragmentSystem@CSScript@@` -`class CSScript::FragmentSystem::PackageFragmentData`: VTable [0x0000000002FD8828, 0x0000000000000000 offset, 5 functions] `.?AVPackageFragmentData@FragmentSystem@CSScript@@` -`class CSScript::FragmentSystem::PerkFragmentData`: VTable [0x0000000002FD8868, 0x0000000000000000 offset, 5 functions] `.?AVPerkFragmentData@FragmentSystem@CSScript@@` -`class CSScript::`anonymous namespace'::FindBaseObjVisitor`: VTable [0x0000000002FD8E10, 0x0000000000000000 offset, 4 functions] `.?AVFindBaseObjVisitor@?A0xa75dd658@CSScript@@` -`class CSScript::Internal::ScriptManager`: VTable [0x0000000002FD9748, 0x0000000000000000 offset, 6 functions] `.?AVScriptManager@Internal@CSScript@@` -`class CSScript::IScriptManager`: VTable [0x0000000002FD99D0, 0x0000000000000000 offset, 6 functions] `.?AVIScriptManager@CSScript@@` -`struct BSPerforce::IForEachOtherCheckoutFunctor`: VTable [0x0000000002FDB5E0, 0x0000000000000000 offset, 1 functions] `.?AUIForEachOtherCheckoutFunctor@BSPerforce@@` -`struct CSScript::`anonymous namespace'::GetUserListFunctor`: VTable [0x0000000002FDB670, 0x0000000000000000 offset, 1 functions] `.?AUGetUserListFunctor@?A0x16807f52@CSScript@@` -`class CSScript::ModalDialog`: VTable [0x0000000002FDBEA0, 0x0000000000000000 offset, 2 functions] `.?AVModalDialog@CSScript@@` -`class CSScript::`anonymous namespace'::ControlValidationBase`: VTable [0x0000000002FDBF10, 0x0000000000000000 offset, 2 functions] `.?AVControlValidationBase@?A0xffa1544d@CSScript@@` -`class CSScript::`anonymous namespace'::IdentValidation`: VTable [0x0000000002FDBF30, 0x0000000000000000 offset, 2 functions] `.?AVIdentValidation@?A0xffa1544d@CSScript@@` -`class CSScript::`anonymous namespace'::ScriptnameValidation`: VTable [0x0000000002FDBF50, 0x0000000000000000 offset, 2 functions] `.?AVScriptnameValidation@?A0xffa1544d@CSScript@@` -`class CSScript::`anonymous namespace'::DocstringValidation`: VTable [0x0000000002FDBF70, 0x0000000000000000 offset, 2 functions] `.?AVDocstringValidation@?A0xffa1544d@CSScript@@` -`class CSScript::`anonymous namespace'::IntegerValidation`: VTable [0x0000000002FDBF90, 0x0000000000000000 offset, 2 functions] `.?AVIntegerValidation@?A0xffa1544d@CSScript@@` -`class CSScript::`anonymous namespace'::FloatValidation`: VTable [0x0000000002FDBFB0, 0x0000000000000000 offset, 2 functions] `.?AVFloatValidation@?A0xffa1544d@CSScript@@` -`class CSScript::`anonymous namespace'::NewScriptDlg`: VTable [0x0000000002FDBFD0, 0x0000000000000000 offset, 2 functions] `.?AVNewScriptDlg@?A0xffa1544d@CSScript@@` -`class CSScript::`anonymous namespace'::ScriptRenameDialog`: VTable [0x0000000002FDC270, 0x0000000000000000 offset, 2 functions] `.?AVScriptRenameDialog@?A0xffa1544d@CSScript@@` -`struct BSScript::ILoader`: VTable [0x0000000002FDC9B0, 0x0000000000000000 offset, 4 functions] `.?AUILoader@BSScript@@` -`struct BSScript::IObjectHandlePolicy`: VTable [0x0000000002FDC9E0, 0x0000000000000000 offset, 12 functions] `.?AUIObjectHandlePolicy@BSScript@@` -`class BSScript::ObjectBindPolicy`: VTable [0x0000000002FDCA60, 0x0000000000000000 offset, 13 functions] `.?AVObjectBindPolicy@BSScript@@` -`class BSScript::IFreezeQuery`: VTable [0x0000000002FDCAE8, 0x0000000000000000 offset, 2 functions] `.?AVIFreezeQuery@BSScript@@` -`class BSScript::IStackCallbackSaveInterface`: VTable [0x0000000002FDCB08, 0x0000000000000000 offset, 3 functions] `.?AVIStackCallbackSaveInterface@BSScript@@` -`class BSScript::ISavePatcherInterface`: VTable [0x0000000002FDCB30, 0x0000000000000000 offset, 2 functions] `.?AVISavePatcherInterface@BSScript@@` -`class CSScript::Logger`: VTable [0x0000000002FDCB50, 0x0000000000000000 offset, 3 functions] `.?AVLogger@CSScript@@` -`class CSScript::HandlePolicy`: VTable [0x0000000002FDCB98, 0x0000000000000000 offset, 12 functions] `.?AVHandlePolicy@CSScript@@` -`class CSScript::ObjectBindPolicy`: VTable [0x0000000002FDCC18, 0x0000000000000000 offset, 13 functions] `.?AVObjectBindPolicy@CSScript@@` -`class BSScript::IStore`: VTable [0x0000000002FDCCA0, 0x0000000000000000 offset, 12 functions] `.?AVIStore@BSScript@@` -`class CSScript::Store`: VTable [0x0000000002FDCD20, 0x0000000000000000 offset, 12 functions] `.?AVStore@CSScript@@` -`class ConstructionSetVM`: VTable [0x0000000002FDCDA0, 0x0000000000000000 offset, 2 functions] `.?AVConstructionSetVM@@` -`class ConstructionSetVM`: VTable [0x0000000002FDCDC0, 0x0000000000000008 offset, 3 functions] `.?AVConstructionSetVM@@` -`class std::_Func_impl_no_alloc,bool>`: VTable [0x0000000002FDD200, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@_N$$V@std@@` -`class CSScript::ChooseScriptDlg`: VTable [0x0000000002FDD620, 0x0000000000000000 offset, 2 functions] `.?AVChooseScriptDlg@CSScript@@` -`class BSResource::LocationTraverser`: VTable [0x0000000002FDDB28, 0x0000000000000000 offset, 1 functions] `.?AVLocationTraverser@BSResource@@` -`class CSScript::CompileDlg`: VTable [0x0000000002FDDB40, 0x0000000000000000 offset, 2 functions] `.?AVCompileDlg@CSScript@@` -`class CSScript::PickScriptsToCompileDlg`: VTable [0x0000000002FDDB60, 0x0000000000000000 offset, 2 functions] `.?AVPickScriptsToCompileDlg@CSScript@@` -`class CSScript::`anonymous namespace'::ObtainFilenames`: VTable [0x0000000002FDDB80, 0x0000000000000000 offset, 1 functions] `.?AVObtainFilenames@?A0x599477fc@CSScript@@` -`class CSScript::Internal::CompileScriptsThread`: VTable [0x0000000002FDDB98, 0x0000000000000000 offset, 3 functions] `.?AVCompileScriptsThread@Internal@CSScript@@` -`class CSScript::EditDlg`: VTable [0x0000000002FDDF38, 0x0000000000000000 offset, 2 functions] `.?AVEditDlg@CSScript@@` -`class CSScript::ErrorDlg`: VTable [0x0000000002FDE180, 0x0000000000000000 offset, 2 functions] `.?AVErrorDlg@CSScript@@` -`class CSScript::IEditDlgUIHandler`: VTable [0x0000000002FDE8C0, 0x0000000000000000 offset, 3 functions] `.?AVIEditDlgUIHandler@CSScript@@` -`class CSScript::FragmentDlg`: VTable [0x0000000002FDE8E8, 0x0000000000000000 offset, 2 functions] `.?AVFragmentDlg@CSScript@@` -`class CSScript::`anonymous namespace'::EditDialogBase`: VTable [0x0000000002FDE908, 0x0000000000000000 offset, 9 functions] `.?AVEditDialogBase@?A0xe3d49f85@CSScript@@` -`class CSScript::`anonymous namespace'::EditFragmentHandler`: VTable [0x0000000002FDE968, 0x0000000000000000 offset, 3 functions] `.?AVEditFragmentHandler@?A0xe3d49f85@CSScript@@` -`class CSScript::`anonymous namespace'::EditResultHandler`: VTable [0x0000000002FDE990, 0x0000000000000000 offset, 3 functions] `.?AVEditResultHandler@?A0xe3d49f85@CSScript@@` -`class CSScript::Internal::FragmentEditDlg`: VTable [0x0000000002FDE9B8, 0x0000000000000000 offset, 9 functions] `.?AVFragmentEditDlg@Internal@CSScript@@` -`class CSScript::Internal::ResultScriptEditDlg`: VTable [0x0000000002FDEA48, 0x0000000000000000 offset, 9 functions] `.?AVResultScriptEditDlg@Internal@CSScript@@` -`class CSScript::Internal::AdvancedFragmentDlg`: VTable [0x0000000002FDEAA8, 0x0000000000000000 offset, 2 functions] `.?AVAdvancedFragmentDlg@Internal@CSScript@@` -`class CSScript::ListDlg`: VTable [0x0000000002FDF760, 0x0000000000000000 offset, 2 functions] `.?AVListDlg@CSScript@@` -`class CSScript::`anonymous namespace'::ScriptUIHandler`: VTable [0x0000000002FDF7A0, 0x0000000000000000 offset, 3 functions] `.?AVScriptUIHandler@?A0xe44bde8d@CSScript@@` -`class CSScript::ModelessDialog`: VTable [0x0000000002FE0090, 0x0000000000000000 offset, 2 functions] `.?AVModelessDialog@CSScript@@` -`class CSScript::Internal::ScriptManagerDlg`: VTable [0x0000000002FE00B0, 0x0000000000000000 offset, 2 functions] `.?AVScriptManagerDlg@Internal@CSScript@@` -`class CSScript::PropertiesDlg`: VTable [0x0000000002FE1530, 0x0000000000000000 offset, 2 functions] `.?AVPropertiesDlg@CSScript@@` -`class CSScript::`anonymous namespace'::NewPropertyDlg`: VTable [0x0000000002FE15A8, 0x0000000000000000 offset, 2 functions] `.?AVNewPropertyDlg@?A0x12afb06e@CSScript@@` -`class CSScript::PropDlgInternal::BoolEditPane`: VTable [0x0000000002FE1760, 0x0000000000000000 offset, 2 functions] `.?AVBoolEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::EditPaneBase`: VTable [0x0000000002FE1780, 0x0000000000000000 offset, 2 functions] `.?AVEditPaneBase@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::IntEditPane`: VTable [0x0000000002FE17A0, 0x0000000000000000 offset, 2 functions] `.?AVIntEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::FloatEditPane`: VTable [0x0000000002FE17D0, 0x0000000000000000 offset, 2 functions] `.?AVFloatEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::StringEditPane`: VTable [0x0000000002FE1800, 0x0000000000000000 offset, 2 functions] `.?AVStringEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::ObjEditPane`: VTable [0x0000000002FE1830, 0x0000000000000000 offset, 2 functions] `.?AVObjEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::AliasEditPane::ScriptFilterFunctor`: VTable [0x0000000002FE1850, 0x0000000000000000 offset, 2 functions] `.?AVScriptFilterFunctor@AliasEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::AliasEditPane`: VTable [0x0000000002FE1870, 0x0000000000000000 offset, 2 functions] `.?AVAliasEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::RefEditPane`: VTable [0x0000000002FE1890, 0x0000000000000000 offset, 2 functions] `.?AVRefEditPane@PropDlgInternal@CSScript@@` -`class CSScript::PropDlgInternal::ArrayEditPane`: VTable [0x0000000002FE18B0, 0x0000000000000000 offset, 2 functions] `.?AVArrayEditPane@PropDlgInternal@CSScript@@` -`class CSScript::Internal::ScriptUseInfoDlg`: VTable [0x0000000002FE1DB8, 0x0000000000000000 offset, 2 functions] `.?AVScriptUseInfoDlg@Internal@CSScript@@` -`class BSPerforce::IErrorLogger`: VTable [0x0000000002FE2080, 0x0000000000000000 offset, 2 functions] `.?AVIErrorLogger@BSPerforce@@` -`class BSPerforce::ILoginInterface`: VTable [0x0000000002FE20A0, 0x0000000000000000 offset, 3 functions] `.?AVILoginInterface@BSPerforce@@` -`class CSPerforce::PerforceInternal::ErrorLogger`: VTable [0x0000000002FE20C8, 0x0000000000000000 offset, 2 functions] `.?AVErrorLogger@PerforceInternal@CSPerforce@@` -`class CSPerforce::PerforceInternal::LoginInterface`: VTable [0x0000000002FE20F8, 0x0000000000000000 offset, 3 functions] `.?AVLoginInterface@PerforceInternal@CSPerforce@@` -`class CSPerforce::Perforce`: VTable [0x0000000002FE2120, 0x0000000000000000 offset, 1 functions] `.?AVPerforce@CSPerforce@@` -`class std::exception`: VTable [0x0000000002FE4F08, 0x0000000000000000 offset, 2 functions] `.?AVexception@std@@` -`class Json::CharReader::Factory`: VTable [0x0000000002FE4F58, 0x0000000000000000 offset, 2 functions] `.?AVFactory@CharReader@Json@@` -`class Json::CharReader`: VTable [0x0000000002FE4F78, 0x0000000000000000 offset, 2 functions] `.?AVCharReader@Json@@` -`class Json::CharReaderBuilder`: VTable [0x0000000002FE4F98, 0x0000000000000000 offset, 2 functions] `.?AVCharReaderBuilder@Json@@` -`class Json::StreamWriter::Factory`: VTable [0x0000000002FE4FB8, 0x0000000000000000 offset, 2 functions] `.?AVFactory@StreamWriter@Json@@` -`class Json::StreamWriter`: VTable [0x0000000002FE4FD8, 0x0000000000000000 offset, 2 functions] `.?AVStreamWriter@Json@@` -`class Json::StreamWriterBuilder`: VTable [0x0000000002FE4FF8, 0x0000000000000000 offset, 2 functions] `.?AVStreamWriterBuilder@Json@@` -`class Json::Writer`: VTable [0x0000000002FE5018, 0x0000000000000000 offset, 2 functions] `.?AVWriter@Json@@` -`class Json::StyledWriter`: VTable [0x0000000002FE5038, 0x0000000000000000 offset, 2 functions] `.?AVStyledWriter@Json@@` -`class Json::OurCharReader`: VTable [0x0000000002FE5508, 0x0000000000000000 offset, 2 functions] `.?AVOurCharReader@Json@@` -`class Json::Exception`: VTable [0x0000000002FE5788, 0x0000000000000000 offset, 2 functions] `.?AVException@Json@@` -`class Json::RuntimeError`: VTable [0x0000000002FE57A8, 0x0000000000000000 offset, 2 functions] `.?AVRuntimeError@Json@@` -`class Json::LogicError`: VTable [0x0000000002FE57C8, 0x0000000000000000 offset, 2 functions] `.?AVLogicError@Json@@` -`struct Json::BuiltStyledStreamWriter`: VTable [0x0000000002FE60D8, 0x0000000000000000 offset, 2 functions] `.?AUBuiltStyledStreamWriter@Json@@` -`class hkaDefaultAnimationControl`: VTable [0x0000000002FEA538, 0x0000000000000000 offset, 14 functions] `.?AVhkaDefaultAnimationControl@@` -`class hkaDefaultAnimationControlMapperData`: VTable [0x0000000002FEA5C8, 0x0000000000000000 offset, 3 functions] `.?AVhkaDefaultAnimationControlMapperData@@` -`class hkaFootPlacementIkSolver`: VTable [0x0000000002FEA7B0, 0x0000000000000000 offset, 3 functions] `.?AVhkaFootPlacementIkSolver@@` -`class hkaAnimationControl`: VTable [0x0000000002FEA7F0, 0x0000000000000000 offset, 14 functions] `.?AVhkaAnimationControl@@` -`class hkaSkeletonMapper`: VTable [0x0000000002FEA8D0, 0x0000000000000000 offset, 3 functions] `.?AVhkaSkeletonMapper@@` -`class hkMemoryAllocator`: VTable [0x0000000002FEABD0, 0x0000000000000000 offset, 11 functions] `.?AVhkMemoryAllocator@@` -`class hkLifoAllocator`: VTable [0x0000000002FEAC48, 0x0000000000000000 offset, 11 functions] `.?AVhkLifoAllocator@@` -`struct hkContainerTempAllocator::Allocator`: VTable [0x0000000002FEACC0, 0x0000000000000000 offset, 11 functions] `.?AUAllocator@hkContainerTempAllocator@@` -`struct hkContainerHeapAllocator::Allocator`: VTable [0x0000000002FEAD38, 0x0000000000000000 offset, 11 functions] `.?AUAllocator@hkContainerHeapAllocator@@` -`struct hkContainerDebugAllocator::Allocator`: VTable [0x0000000002FEADB0, 0x0000000000000000 offset, 11 functions] `.?AUAllocator@hkContainerDebugAllocator@@` -`class hkReferencedObjectLock`: VTable [0x0000000002FEB328, 0x0000000000000000 offset, 3 functions] `.?AVhkReferencedObjectLock@@` -`class hkErrStream`: VTable [0x0000000002FEBD60, 0x0000000000000000 offset, 3 functions] `.?AVhkErrStream@@` -`class hkOstream`: VTable [0x0000000002FEBF98, 0x0000000000000000 offset, 3 functions] `.?AVhkOstream@@` -`class hkMemoryTrackStreamWriter`: VTable [0x0000000002FEBFC0, 0x0000000000000000 offset, 10 functions] `.?AVhkMemoryTrackStreamWriter@@` -`class hkArrayStreamWriter`: VTable [0x0000000002FEC030, 0x0000000000000000 offset, 10 functions] `.?AVhkArrayStreamWriter@@` -`class hkLocalFrame`: VTable [0x0000000002FF0310, 0x0000000000000000 offset, 15 functions] `.?AVhkLocalFrame@@` -`class hkLocalFrameGroup`: VTable [0x0000000002FF03B0, 0x0000000000000000 offset, 3 functions] `.?AVhkLocalFrameGroup@@` -`class hkSimpleLocalFrame`: VTable [0x0000000002FF03D8, 0x0000000000000000 offset, 15 functions] `.?AVhkSimpleLocalFrame@@` -`class hkBufferedStreamReader`: VTable [0x0000000002FF0620, 0x0000000000000000 offset, 13 functions] `.?AVhkBufferedStreamReader@@` -`class hkBufferedStreamWriter`: VTable [0x0000000002FF06A8, 0x0000000000000000 offset, 9 functions] `.?AVhkBufferedStreamWriter@@` -`class hkSeekableStreamReader`: VTable [0x0000000002FF0738, 0x0000000000000000 offset, 12 functions] `.?AVhkSeekableStreamReader@@` -`class hkStdioStreamReader`: VTable [0x0000000002FF07B8, 0x0000000000000000 offset, 12 functions] `.?AVhkStdioStreamReader@@` -`class hkStdioStreamWriter`: VTable [0x0000000002FF0838, 0x0000000000000000 offset, 10 functions] `.?AVhkStdioStreamWriter@@` -`class hkMemoryTrackStreamReader`: VTable [0x0000000002FF08A8, 0x0000000000000000 offset, 12 functions] `.?AVhkMemoryTrackStreamReader@@` -`class hkCrcStreamWriter`: VTable [0x0000000002FF0998, 0x0000000000000000 offset, 9 functions] `.?AV?$hkCrcStreamWriter@I$0ONLIIDCA@@@` -`class hkCrc32StreamWriter`: VTable [0x0000000002FF09F8, 0x0000000000000000 offset, 9 functions] `.?AVhkCrc32StreamWriter@@` -`class hkStatisticsCollector`: VTable [0x0000000002FF0A58, 0x0000000000000000 offset, 8 functions] `.?AVhkStatisticsCollector@@` -`class hkStackTracer`: VTable [0x0000000002FF0E78, 0x0000000000000000 offset, 3 functions] `.?AVhkStackTracer@@` -`class hkDummySingleton`: VTable [0x0000000002FF13B0, 0x0000000000000000 offset, 4 functions] `.?AVhkDummySingleton@@` -`class hkTrackerSerializableScanSnapshot`: VTable [0x0000000002FF13F8, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerSerializableScanSnapshot@@` -`class hkTrackerTypeTreeTextCache`: VTable [0x0000000002FF1420, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerTypeTreeTextCache@@` -`class hkOArchive`: VTable [0x0000000002FF1448, 0x0000000000000000 offset, 3 functions] `.?AVhkOArchive@@` -`class hkDefaultError`: VTable [0x0000000002FF1470, 0x0000000000000000 offset, 10 functions] `.?AVhkDefaultError@@` -`class hkSocket::ReaderAdapter`: VTable [0x0000000002FF1548, 0x0000000000000000 offset, 12 functions] `.?AVReaderAdapter@hkSocket@@` -`class hkSocket::WriterAdapter`: VTable [0x0000000002FF15C8, 0x0000000000000000 offset, 9 functions] `.?AVWriterAdapter@hkSocket@@` -`class hkSocket`: VTable [0x0000000002FF1628, 0x0000000000000000 offset, 12 functions] `.?AVhkSocket@@` -`class hkTrackerScanSnapshot`: VTable [0x0000000002FF16A8, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerScanSnapshot@@` -`class hkBsdSocket`: VTable [0x0000000002FF17D0, 0x0000000000000000 offset, 12 functions] `.?AVhkBsdSocket@@` -`class hkTrackerTypeTreeCache`: VTable [0x0000000002FF19B8, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerTypeTreeCache@@` -`class hkMemoryTracker`: VTable [0x0000000002FF1D38, 0x0000000000000000 offset, 9 functions] `.?AVhkMemoryTracker@@` -`class hkDefaultMemoryTracker`: VTable [0x0000000002FF1D98, 0x0000000000000000 offset, 9 functions] `.?AVhkDefaultMemoryTracker@@` -`class hkMemorySystem`: VTable [0x0000000002FF1E18, 0x0000000000000000 offset, 23 functions] `.?AVhkMemorySystem@@` -`class hkDummyMemoryTrackerImpl`: VTable [0x0000000002FF1F50, 0x0000000000000000 offset, 9 functions] `.?AVhkDummyMemoryTrackerImpl@@` -`class hkTrackerTypeLayout`: VTable [0x0000000002FF1FB0, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerTypeLayout@@` -`class hkTrackerLayoutHandler`: VTable [0x0000000002FF1FD8, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerLayoutHandler@@` -`class hkTrackerLayoutCalculator`: VTable [0x0000000002FF2020, 0x0000000000000000 offset, 3 functions] `.?AVhkTrackerLayoutCalculator@@` -`class hkTrackerArrayLayoutHandler`: VTable [0x0000000002FF2048, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerArrayLayoutHandler@@` -`class hkTrackerRefPtrLayoutHandler`: VTable [0x0000000002FF2090, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerRefPtrLayoutHandler@@` -`class hkTrackerStringPtrLayoutHandler`: VTable [0x0000000002FF20D8, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerStringPtrLayoutHandler@@` -`class hkTrackerCachedHashMapLayoutHandler`: VTable [0x0000000002FF2120, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerCachedHashMapLayoutHandler@@` -`class hkTrackerStringMapLayoutHandler`: VTable [0x0000000002FF2168, 0x0000000000000000 offset, 6 functions] `.?AVhkTrackerStringMapLayoutHandler@@` -`class hkbRagdollDriver`: VTable [0x0000000002FF22E0, 0x0000000000000000 offset, 3 functions] `.?AVhkbRagdollDriver@@` -`class hkbBindable`: VTable [0x0000000002FF2308, 0x0000000000000000 offset, 4 functions] `.?AVhkbBindable@@` -`class hkbNode`: VTable [0x0000000002FF2338, 0x0000000000000000 offset, 23 functions] `.?AVhkbNode@@` -`class hkbGenerator`: VTable [0x0000000002FF2420, 0x0000000000000000 offset, 28 functions] `.?AVhkbGenerator@@` -`class hkbVariableValueSet`: VTable [0x0000000002FF2538, 0x0000000000000000 offset, 3 functions] `.?AVhkbVariableValueSet@@` -`class hkbBehaviorGraph::GlobalTransitionData`: VTable [0x0000000002FF2560, 0x0000000000000000 offset, 3 functions] `.?AVGlobalTransitionData@hkbBehaviorGraph@@` -`class hkbBehaviorGraph`: VTable [0x0000000002FF2588, 0x0000000000000000 offset, 28 functions] `.?AVhkbBehaviorGraph@@` -`class hkbNodeInternalStateInfo`: VTable [0x0000000002FF26A0, 0x0000000000000000 offset, 3 functions] `.?AVhkbNodeInternalStateInfo@@` -`class hkbAnimationBindingSet`: VTable [0x0000000002FF2B68, 0x0000000000000000 offset, 3 functions] `.?AVhkbAnimationBindingSet@@` -`class hkbCharacter`: VTable [0x0000000002FF2B90, 0x0000000000000000 offset, 5 functions] `.?AVhkbCharacter@@` -`class hkpAllCdPointCollector`: VTable [0x0000000002FF2BD0, 0x0000000000000000 offset, 3 functions] `.?AVhkpAllCdPointCollector@@` -`class hkbBindableCollector`: VTable [0x0000000002FF2C18, 0x0000000000000000 offset, 2 functions] `.?AVhkbBindableCollector@@` -`class hkbBindable::CacheBindablesCollector`: VTable [0x0000000002FF2C38, 0x0000000000000000 offset, 2 functions] `.?AVCacheBindablesCollector@hkbBindable@@` -`class hkbNode::BoundVariablesCollector`: VTable [0x0000000002FF2C58, 0x0000000000000000 offset, 2 functions] `.?AVBoundVariablesCollector@hkbNode@@` -`class hkbAttachmentSetup`: VTable [0x0000000003014188, 0x0000000000000000 offset, 3 functions] `.?AVhkbAttachmentSetup@@` -`class hkbEventPayload`: VTable [0x0000000003014210, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventPayload@@` -`class hkbRealEventPayload`: VTable [0x0000000003014238, 0x0000000000000000 offset, 3 functions] `.?AVhkbRealEventPayload@@` -`class hkbIntEventPayload`: VTable [0x0000000003014260, 0x0000000000000000 offset, 3 functions] `.?AVhkbIntEventPayload@@` -`class hkbStringEventPayload`: VTable [0x0000000003014288, 0x0000000000000000 offset, 3 functions] `.?AVhkbStringEventPayload@@` -`class hkbNamedEventPayload`: VTable [0x00000000030142B0, 0x0000000000000000 offset, 3 functions] `.?AVhkbNamedEventPayload@@` -`class hkbNamedRealEventPayload`: VTable [0x00000000030142D8, 0x0000000000000000 offset, 3 functions] `.?AVhkbNamedRealEventPayload@@` -`class hkbNamedIntEventPayload`: VTable [0x0000000003014300, 0x0000000000000000 offset, 3 functions] `.?AVhkbNamedIntEventPayload@@` -`class hkbNamedStringEventPayload`: VTable [0x0000000003014328, 0x0000000000000000 offset, 3 functions] `.?AVhkbNamedStringEventPayload@@` -`class hkbEventPayloadList`: VTable [0x0000000003014350, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventPayloadList@@` -`class hkbVariableBindingSet`: VTable [0x0000000003014378, 0x0000000000000000 offset, 3 functions] `.?AVhkbVariableBindingSet@@` -`class hkbHandle`: VTable [0x00000000030143A0, 0x0000000000000000 offset, 3 functions] `.?AVhkbHandle@@` -`class hkbTransitionEffect`: VTable [0x00000000030143C8, 0x0000000000000000 offset, 33 functions] `.?AVhkbTransitionEffect@@` -`class hkbProjectStringData`: VTable [0x0000000003014510, 0x0000000000000000 offset, 3 functions] `.?AVhkbProjectStringData@@` -`class hkbBehaviorGraphStringData`: VTable [0x0000000003014720, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorGraphStringData@@` -`class hkbBehaviorGraphData`: VTable [0x0000000003014748, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorGraphData@@` -`class hkbBehaviorGraphInternalState`: VTable [0x00000000030147B0, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorGraphInternalState@@` -`class hkbBoneIndexArray`: VTable [0x00000000030148B0, 0x0000000000000000 offset, 4 functions] `.?AVhkbBoneIndexArray@@` -`class hkbBoneWeightArray`: VTable [0x0000000003014910, 0x0000000000000000 offset, 4 functions] `.?AVhkbBoneWeightArray@@` -`class hkbCharacterStringData`: VTable [0x0000000003014990, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterStringData@@` -`class hkbFootIkDriverInfo`: VTable [0x00000000030149B8, 0x0000000000000000 offset, 3 functions] `.?AVhkbFootIkDriverInfo@@` -`class hkbHandIkDriverInfo`: VTable [0x00000000030149E0, 0x0000000000000000 offset, 3 functions] `.?AVhkbHandIkDriverInfo@@` -`class hkbMirroredSkeletonInfo`: VTable [0x0000000003014A08, 0x0000000000000000 offset, 3 functions] `.?AVhkbMirroredSkeletonInfo@@` -`class hkbCondition`: VTable [0x0000000003014B78, 0x0000000000000000 offset, 4 functions] `.?AVhkbCondition@@` -`class hkbCompiledExpressionSet`: VTable [0x0000000003014BA8, 0x0000000000000000 offset, 3 functions] `.?AVhkbCompiledExpressionSet@@` -`class hkbExpressionCondition`: VTable [0x0000000003014BD0, 0x0000000000000000 offset, 4 functions] `.?AVhkbExpressionCondition@@` -`class hkbStringCondition`: VTable [0x0000000003014C40, 0x0000000000000000 offset, 4 functions] `.?AVhkbStringCondition@@` -`class hkbBehaviorReferenceGenerator`: VTable [0x0000000003015068, 0x0000000000000000 offset, 28 functions] `.?AVhkbBehaviorReferenceGenerator@@` -`class hkbBlenderGeneratorChild`: VTable [0x00000000030151D0, 0x0000000000000000 offset, 4 functions] `.?AVhkbBlenderGeneratorChild@@` -`class hkbBlenderGenerator`: VTable [0x0000000003015200, 0x0000000000000000 offset, 28 functions] `.?AVhkbBlenderGenerator@@` -`class hkbBlenderGeneratorInternalState`: VTable [0x00000000030153F8, 0x0000000000000000 offset, 3 functions] `.?AVhkbBlenderGeneratorInternalState@@` -`class hkbClipTriggerArray`: VTable [0x0000000003015470, 0x0000000000000000 offset, 3 functions] `.?AVhkbClipTriggerArray@@` -`class hkbClipGeneratorInternalState`: VTable [0x00000000030155E8, 0x0000000000000000 offset, 3 functions] `.?AVhkbClipGeneratorInternalState@@` -`class hkbRegisteredGenerator`: VTable [0x0000000003015660, 0x0000000000000000 offset, 4 functions] `.?AVhkbRegisteredGenerator@@` -`class hkbManualSelectorGenerator`: VTable [0x00000000030156D0, 0x0000000000000000 offset, 28 functions] `.?AVhkbManualSelectorGenerator@@` -`class hkbManualSelectorGeneratorInternalState`: VTable [0x0000000003015830, 0x0000000000000000 offset, 3 functions] `.?AVhkbManualSelectorGeneratorInternalState@@` -`class hkbModifier`: VTable [0x00000000030158C0, 0x0000000000000000 offset, 25 functions] `.?AVhkbModifier@@` -`class hkbModifierGenerator`: VTable [0x00000000030159C0, 0x0000000000000000 offset, 28 functions] `.?AVhkbModifierGenerator@@` -`class hkbPoseMatchingGenerator`: VTable [0x0000000003015B18, 0x0000000000000000 offset, 28 functions] `.?AVhkbPoseMatchingGenerator@@` -`class hkbPoseMatchingGeneratorInternalState`: VTable [0x0000000003015C88, 0x0000000000000000 offset, 3 functions] `.?AVhkbPoseMatchingGeneratorInternalState@@` -`class hkbReferencePoseGenerator`: VTable [0x0000000003015D10, 0x0000000000000000 offset, 28 functions] `.?AVhkbReferencePoseGenerator@@` -`class hkbAttachmentModifier`: VTable [0x0000000003015F28, 0x0000000000000000 offset, 25 functions] `.?AVhkbAttachmentModifier@@` -`class hkbAttributeModifier`: VTable [0x0000000003016068, 0x0000000000000000 offset, 25 functions] `.?AVhkbAttributeModifier@@` -`class hkbCharacterControllerModifier`: VTable [0x0000000003016250, 0x0000000000000000 offset, 25 functions] `.?AVhkbCharacterControllerModifier@@` -`class hkbCharacterControllerModifierInternalState`: VTable [0x00000000030163F8, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterControllerModifierInternalState@@` -`class hkbCombineTransformsModifier`: VTable [0x0000000003016490, 0x0000000000000000 offset, 25 functions] `.?AVhkbCombineTransformsModifier@@` -`class hkbCombineTransformsModifierInternalState`: VTable [0x00000000030165E0, 0x0000000000000000 offset, 3 functions] `.?AVhkbCombineTransformsModifierInternalState@@` -`class hkbComputeDirectionModifier`: VTable [0x0000000003016678, 0x0000000000000000 offset, 25 functions] `.?AVhkbComputeDirectionModifier@@` -`class hkbComputeDirectionModifierInternalState`: VTable [0x00000000030167C8, 0x0000000000000000 offset, 3 functions] `.?AVhkbComputeDirectionModifierInternalState@@` -`class hkbComputeRotationFromAxisAngleModifier`: VTable [0x0000000003016860, 0x0000000000000000 offset, 25 functions] `.?AVhkbComputeRotationFromAxisAngleModifier@@` -`class hkbComputeRotationFromAxisAngleModifierInternalState`: VTable [0x00000000030169C8, 0x0000000000000000 offset, 3 functions] `.?AVhkbComputeRotationFromAxisAngleModifierInternalState@@` -`class hkbComputeRotationToTargetModifier`: VTable [0x0000000003016A70, 0x0000000000000000 offset, 25 functions] `.?AVhkbComputeRotationToTargetModifier@@` -`class hkbComputeRotationToTargetModifierInternalState`: VTable [0x0000000003016BD0, 0x0000000000000000 offset, 3 functions] `.?AVhkbComputeRotationToTargetModifierInternalState@@` -`class hkbDampingModifier`: VTable [0x0000000003016C78, 0x0000000000000000 offset, 25 functions] `.?AVhkbDampingModifier@@` -`class hkbDampingModifierInternalState`: VTable [0x0000000003016DA8, 0x0000000000000000 offset, 3 functions] `.?AVhkbDampingModifierInternalState@@` -`class hkbModifierWrapper`: VTable [0x0000000003016E20, 0x0000000000000000 offset, 25 functions] `.?AVhkbModifierWrapper@@` -`class hkbDelayedModifier`: VTable [0x0000000003016F20, 0x0000000000000000 offset, 25 functions] `.?AVhkbDelayedModifier@@` -`class hkbDelayedModifierInternalState`: VTable [0x0000000003017050, 0x0000000000000000 offset, 3 functions] `.?AVhkbDelayedModifierInternalState@@` -`class hkbDetectCloseToGroundModifier`: VTable [0x00000000030170C8, 0x0000000000000000 offset, 25 functions] `.?AVhkbDetectCloseToGroundModifier@@` -`class hkbDetectCloseToGroundModifierInternalState`: VTable [0x0000000003017218, 0x0000000000000000 offset, 3 functions] `.?AVhkbDetectCloseToGroundModifierInternalState@@` -`class hkbExpressionDataArray`: VTable [0x00000000030172B0, 0x0000000000000000 offset, 3 functions] `.?AVhkbExpressionDataArray@@` -`class hkbEvaluateExpressionModifier`: VTable [0x00000000030172D8, 0x0000000000000000 offset, 25 functions] `.?AVhkbEvaluateExpressionModifier@@` -`class hkbEvaluateExpressionModifierInternalState`: VTable [0x0000000003017520, 0x0000000000000000 offset, 3 functions] `.?AVhkbEvaluateExpressionModifierInternalState@@` -`class hkbEvaluateHandleModifier`: VTable [0x00000000030175B8, 0x0000000000000000 offset, 25 functions] `.?AVhkbEvaluateHandleModifier@@` -`class hkbEventDrivenModifier`: VTable [0x0000000003017758, 0x0000000000000000 offset, 25 functions] `.?AVhkbEventDrivenModifier@@` -`class hkbEventDrivenModifierInternalState`: VTable [0x0000000003017898, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventDrivenModifierInternalState@@` -`class hkbEventRangeDataArray`: VTable [0x0000000003017920, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventRangeDataArray@@` -`class hkbEventsFromRangeModifier`: VTable [0x0000000003017948, 0x0000000000000000 offset, 25 functions] `.?AVhkbEventsFromRangeModifier@@` -`class hkbEventsFromRangeModifierInternalState`: VTable [0x0000000003017B00, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventsFromRangeModifierInternalState@@` -`class hkbFootIkControlsModifier`: VTable [0x0000000003017BD0, 0x0000000000000000 offset, 25 functions] `.?AVhkbFootIkControlsModifier@@` -`class hkbFootIkModifier`: VTable [0x0000000003017D90, 0x0000000000000000 offset, 25 functions] `.?AVhkbFootIkModifier@@` -`class hkbGetHandleOnBoneModifier`: VTable [0x0000000003017FB8, 0x0000000000000000 offset, 25 functions] `.?AVhkbGetHandleOnBoneModifier@@` -`class hkbGetUpModifier`: VTable [0x0000000003018100, 0x0000000000000000 offset, 25 functions] `.?AVhkbGetUpModifier@@` -`class hkbGetUpModifierInternalState`: VTable [0x0000000003018230, 0x0000000000000000 offset, 3 functions] `.?AVhkbGetUpModifierInternalState@@` -`class hkbGetWorldFromModelModifier`: VTable [0x00000000030182A8, 0x0000000000000000 offset, 25 functions] `.?AVhkbGetWorldFromModelModifier@@` -`class hkbGetWorldFromModelModifierInternalState`: VTable [0x00000000030183F8, 0x0000000000000000 offset, 3 functions] `.?AVhkbGetWorldFromModelModifierInternalState@@` -`class hkbHandIkControlsModifier`: VTable [0x00000000030184D8, 0x0000000000000000 offset, 25 functions] `.?AVhkbHandIkControlsModifier@@` -`class hkbHandIkModifier`: VTable [0x0000000003018668, 0x0000000000000000 offset, 25 functions] `.?AVhkbHandIkModifier@@` -`class hkbModifierList`: VTable [0x00000000030187F0, 0x0000000000000000 offset, 25 functions] `.?AVhkbModifierList@@` -`class hkbLookAtModifier`: VTable [0x0000000003018920, 0x0000000000000000 offset, 25 functions] `.?AVhkbLookAtModifier@@` -`class hkbLookAtModifierInternalState`: VTable [0x0000000003018A50, 0x0000000000000000 offset, 3 functions] `.?AVhkbLookAtModifierInternalState@@` -`class hkbMirrorModifier`: VTable [0x0000000003018AC8, 0x0000000000000000 offset, 25 functions] `.?AVhkbMirrorModifier@@` -`class hkbMoveCharacterModifier`: VTable [0x0000000003018BF8, 0x0000000000000000 offset, 25 functions] `.?AVhkbMoveCharacterModifier@@` -`class hkbMoveCharacterModifierInternalState`: VTable [0x0000000003018D38, 0x0000000000000000 offset, 3 functions] `.?AVhkbMoveCharacterModifierInternalState@@` -`class hkbProxyModifier`: VTable [0x0000000003018DC0, 0x0000000000000000 offset, 25 functions] `.?AVhkbProxyModifier@@` -`class hkbExtractRagdollPoseModifier`: VTable [0x0000000003019098, 0x0000000000000000 offset, 25 functions] `.?AVhkbExtractRagdollPoseModifier@@` -`class hkbKeyframeBonesModifier`: VTable [0x00000000030191E8, 0x0000000000000000 offset, 25 functions] `.?AVhkbKeyframeBonesModifier@@` -`class hkbPoweredRagdollControlsModifier`: VTable [0x00000000030193D8, 0x0000000000000000 offset, 25 functions] `.?AVhkbPoweredRagdollControlsModifier@@` -`class hkbRigidBodyRagdollControlsModifier`: VTable [0x0000000003019580, 0x0000000000000000 offset, 25 functions] `.?AVhkbRigidBodyRagdollControlsModifier@@` -`class hkbRotateCharacterModifier`: VTable [0x0000000003019720, 0x0000000000000000 offset, 25 functions] `.?AVhkbRotateCharacterModifier@@` -`class hkbRotateCharacterModifierInternalState`: VTable [0x0000000003019868, 0x0000000000000000 offset, 3 functions] `.?AVhkbRotateCharacterModifierInternalState@@` -`class hkbSenseHandleModifier`: VTable [0x00000000030198F8, 0x0000000000000000 offset, 25 functions] `.?AVhkbSenseHandleModifier@@` -`class hkbSetWorldFromModelModifier`: VTable [0x0000000003019B10, 0x0000000000000000 offset, 25 functions] `.?AVhkbSetWorldFromModelModifier@@` -`class hkbTimerModifier`: VTable [0x0000000003019C60, 0x0000000000000000 offset, 25 functions] `.?AVhkbTimerModifier@@` -`class hkbTimerModifierInternalState`: VTable [0x0000000003019D90, 0x0000000000000000 offset, 3 functions] `.?AVhkbTimerModifierInternalState@@` -`class hkbTransformVectorModifier`: VTable [0x0000000003019E08, 0x0000000000000000 offset, 25 functions] `.?AVhkbTransformVectorModifier@@` -`class hkbTransformVectorModifierInternalState`: VTable [0x0000000003019F50, 0x0000000000000000 offset, 3 functions] `.?AVhkbTransformVectorModifierInternalState@@` -`class hkbTwistModifier`: VTable [0x0000000003019FE0, 0x0000000000000000 offset, 25 functions] `.?AVhkbTwistModifier@@` -`class hkbSequenceStringData`: VTable [0x000000000301A260, 0x0000000000000000 offset, 3 functions] `.?AVhkbSequenceStringData@@` -`class hkbSequence`: VTable [0x000000000301A288, 0x0000000000000000 offset, 25 functions] `.?AVhkbSequence@@` -`class hkbSequenceInternalState`: VTable [0x000000000301A3A8, 0x0000000000000000 offset, 3 functions] `.?AVhkbSequenceInternalState@@` -`class hkbSequencedData`: VTable [0x000000000301A450, 0x0000000000000000 offset, 4 functions] `.?AVhkbSequencedData@@` -`class hkbEventSequencedData`: VTable [0x000000000301A480, 0x0000000000000000 offset, 4 functions] `.?AVhkbEventSequencedData@@` -`class hkbRealVariableSequencedData`: VTable [0x000000000301A4B0, 0x0000000000000000 offset, 4 functions] `.?AVhkbRealVariableSequencedData@@` -`class hkbBoolVariableSequencedData`: VTable [0x000000000301A4E0, 0x0000000000000000 offset, 4 functions] `.?AVhkbBoolVariableSequencedData@@` -`class hkbIntVariableSequencedData`: VTable [0x000000000301A510, 0x0000000000000000 offset, 4 functions] `.?AVhkbIntVariableSequencedData@@` -`class hkbStateListener`: VTable [0x000000000301A818, 0x0000000000000000 offset, 7 functions] `.?AVhkbStateListener@@` -`class hkbStateMachine::TransitionInfoArray`: VTable [0x000000000301A898, 0x0000000000000000 offset, 3 functions] `.?AVTransitionInfoArray@hkbStateMachine@@` -`class hkbStateMachine::EventPropertyArray`: VTable [0x000000000301A8C0, 0x0000000000000000 offset, 3 functions] `.?AVEventPropertyArray@hkbStateMachine@@` -`class hkbStateMachine::StateInfo`: VTable [0x000000000301A8E8, 0x0000000000000000 offset, 4 functions] `.?AVStateInfo@hkbStateMachine@@` -`class hkbStateMachineInternalState`: VTable [0x000000000301AD48, 0x0000000000000000 offset, 3 functions] `.?AVhkbStateMachineInternalState@@` -`class hkbBlendingTransitionEffect`: VTable [0x000000000301ADC0, 0x0000000000000000 offset, 39 functions] `.?AVhkbBlendingTransitionEffect@@` -`class hkbBlendingTransitionEffectInternalState`: VTable [0x000000000301AFB0, 0x0000000000000000 offset, 3 functions] `.?AVhkbBlendingTransitionEffectInternalState@@` -`class hkbGeneratorTransitionEffect`: VTable [0x000000000301B048, 0x0000000000000000 offset, 33 functions] `.?AVhkbGeneratorTransitionEffect@@` -`class hkbGeneratorTransitionEffectInternalState`: VTable [0x000000000301B1E0, 0x0000000000000000 offset, 3 functions] `.?AVhkbGeneratorTransitionEffectInternalState@@` -`class hkbClipGenerator`: VTable [0x000000000301B580, 0x0000000000000000 offset, 28 functions] `.?AVhkbClipGenerator@@` -`class hkbStateMachine`: VTable [0x000000000301BA08, 0x0000000000000000 offset, 28 functions] `.?AVhkbStateMachine@@` -`class hkbAnimationBindingWithTriggers`: VTable [0x000000000301BFC8, 0x0000000000000000 offset, 3 functions] `.?AVhkbAnimationBindingWithTriggers@@` -`class hkbFootIkDriver`: VTable [0x000000000301C020, 0x0000000000000000 offset, 3 functions] `.?AVhkbFootIkDriver@@` -`class hkbHandIkDriver`: VTable [0x000000000301C0E0, 0x0000000000000000 offset, 3 functions] `.?AVhkbHandIkDriver@@` -`class hkbWorld`: VTable [0x000000000301C140, 0x0000000000000000 offset, 3 functions] `.?AVhkbWorld@@` -`class hkbSceneModifier`: VTable [0x000000000301C168, 0x0000000000000000 offset, 4 functions] `.?AVhkbSceneModifier@@` -`class hkbFootIkSceneModifier`: VTable [0x000000000301C198, 0x0000000000000000 offset, 4 functions] `.?AVhkbFootIkSceneModifier@@` -`class hkbHandIkSceneModifier`: VTable [0x000000000301C1C8, 0x0000000000000000 offset, 4 functions] `.?AVhkbHandIkSceneModifier@@` -`class hkbHandIkFixupSceneModifier`: VTable [0x000000000301C1F8, 0x0000000000000000 offset, 4 functions] `.?AVhkbHandIkFixupSceneModifier@@` -`class hkbCharacterSetup`: VTable [0x000000000301C2E0, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterSetup@@` -`class hkbProjectData`: VTable [0x000000000301C308, 0x0000000000000000 offset, 3 functions] `.?AVhkbProjectData@@` -`class hkbCharacterData`: VTable [0x000000000301C350, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterData@@` -`class hkpCharacterControllerCinfo`: VTable [0x000000000301D030, 0x0000000000000000 offset, 3 functions] `.?AVhkpCharacterControllerCinfo@@` -`class hkpCharacterProxyCinfo`: VTable [0x000000000301D058, 0x0000000000000000 offset, 3 functions] `.?AVhkpCharacterProxyCinfo@@` -`class hkbAttachmentSceneModifier`: VTable [0x000000000301D880, 0x0000000000000000 offset, 4 functions] `.?AVhkbAttachmentSceneModifier@@` -`class hkbAttachmentFixupSceneModifier`: VTable [0x000000000301D8B0, 0x0000000000000000 offset, 4 functions] `.?AVhkbAttachmentFixupSceneModifier@@` -`class hkbRagdollSceneModifier`: VTable [0x000000000301D8E0, 0x0000000000000000 offset, 4 functions] `.?AVhkbRagdollSceneModifier@@` -`class hkbCharacterControllerSceneModifier`: VTable [0x000000000301D910, 0x0000000000000000 offset, 4 functions] `.?AVhkbCharacterControllerSceneModifier@@` -`class hkLocalFrameCollector`: VTable [0x000000000301DEB0, 0x0000000000000000 offset, 4 functions] `.?AVhkLocalFrameCollector@@` -`class hkbClosestLocalFrameCollector`: VTable [0x000000000301DEE0, 0x0000000000000000 offset, 4 functions] `.?AVhkbClosestLocalFrameCollector@@` -`class hkbDefaultRaycastInterface`: VTable [0x000000000301E0A0, 0x0000000000000000 offset, 3 functions] `.?AVhkbDefaultRaycastInterface@@` -`class hkbDefaultRaycastInterface`: VTable [0x000000000301E0C8, 0x0000000000000010 offset, 3 functions] `.?AVhkbDefaultRaycastInterface@@` -`class hkbSymbolIdMap`: VTable [0x000000000301E100, 0x0000000000000000 offset, 3 functions] `.?AVhkbSymbolIdMap@@` -`class hkgpConvexHull`: VTable [0x000000000301E1D0, 0x0000000000000000 offset, 3 functions] `.?AVhkgpConvexHull@@` -`class hkgpAbstractMesh`: VTable [0x000000000301E1F8, 0x0000000000000000 offset, 4 functions] `.?AV?$hkgpAbstractMesh@UEdge@hkgpConvexHullImpl@@UVertex@2@UTriangle@2@UhkContainerHeapAllocator@@@@` -`class hkAabbTree`: VTable [0x000000000301E690, 0x0000000000000000 offset, 1 functions] `.?AV?$hkAabbTree@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::Collector`: VTable [0x000000000301E6A8, 0x0000000000000000 offset, 2 functions] `.?AUCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::ClosestPointCollector`: VTable [0x000000000301E6C8, 0x0000000000000000 offset, 2 functions] `.?AUClosestPointCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkGeometryProcessingInternals::NearestFeaturePolicy`: VTable [0x000000000301E6E8, 0x0000000000000000 offset, 2 functions] `.?AUNearestFeaturePolicy@hkGeometryProcessingInternals@@` -`struct hkGeometryProcessing::IFunction`: VTable [0x000000000301E740, 0x0000000000000000 offset, 2 functions] `.?AU?$IFunction@VhkVector4@@M@hkGeometryProcessing@@` -`struct hkGeometryProcessing::ConstFunction >`: VTable [0x000000000301E760, 0x0000000000000000 offset, 2 functions] `.?AU?$ConstFunction@U?$IFunction@VhkVector4@@M@hkGeometryProcessing@@@hkGeometryProcessing@@` -`class hkAabbTree`: VTable [0x000000000301E7A0, 0x0000000000000000 offset, 1 functions] `.?AV?$hkAabbTree@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`class hkAabbTree`: VTable [0x000000000301E7B8, 0x0000000000000000 offset, 1 functions] `.?AV?$hkAabbTree@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`class hkAabbTree`: VTable [0x000000000301E7D0, 0x0000000000000000 offset, 1 functions] `.?AV?$hkAabbTree@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::TreeTreeCollector`: VTable [0x000000000301E800, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::Collector`: VTable [0x000000000301E820, 0x0000000000000000 offset, 2 functions] `.?AUCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::ClosestPointCollector`: VTable [0x000000000301E840, 0x0000000000000000 offset, 2 functions] `.?AUClosestPointCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::TreeTreeNodePairCollector`: VTable [0x000000000301E860, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeNodePairCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::AllHitsCollector`: VTable [0x000000000301E880, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::AllHitsNodeCollector`: VTable [0x000000000301E8A0, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsNodeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::TreeTreeCollector`: VTable [0x000000000301E8C0, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::Collector`: VTable [0x000000000301E8E0, 0x0000000000000000 offset, 2 functions] `.?AUCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::ClosestPointCollector`: VTable [0x000000000301E900, 0x0000000000000000 offset, 2 functions] `.?AUClosestPointCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::TreeTreeNodePairCollector`: VTable [0x000000000301E920, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeNodePairCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::AllHitsCollector`: VTable [0x000000000301E940, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::AllHitsNodeCollector`: VTable [0x000000000301E960, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsNodeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@G@@` -`struct hkAabbTreeQueryUtils::TreeTreeCollector`: VTable [0x000000000301E980, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::TreeTreeNodePairCollector`: VTable [0x000000000301E9A0, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeNodePairCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::AllHitsCollector`: VTable [0x000000000301E9C0, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::AllHitsNodeCollector`: VTable [0x000000000301E9E0, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsNodeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::TreeTreeCollector`: VTable [0x000000000301EA00, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::Collector`: VTable [0x000000000301EA20, 0x0000000000000000 offset, 2 functions] `.?AUCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::ClosestPointCollector`: VTable [0x000000000301EA40, 0x0000000000000000 offset, 2 functions] `.?AUClosestPointCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::TreeTreeNodePairCollector`: VTable [0x000000000301EA60, 0x0000000000000000 offset, 2 functions] `.?AUTreeTreeNodePairCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::AllHitsCollector`: VTable [0x000000000301EA80, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`struct hkAabbTreeQueryUtils::AllHitsNodeCollector`: VTable [0x000000000301EAA0, 0x0000000000000000 offset, 2 functions] `.?AUAllHitsNodeCollector@?$hkAabbTreeQueryUtils@UhkAabbTreeAabb16@hkAabbTreeData@@I@@` -`class hkgpTriangulatorBase`: VTable [0x000000000301EAF0, 0x0000000000000000 offset, 3 functions] `.?AVhkgpTriangulatorBase@@` -`struct hkgpJobQueue::IJob`: VTable [0x000000000301EB18, 0x0000000000000000 offset, 2 functions] `.?AUIJob@hkgpJobQueue@@` -`class hkgpAbstractMesh`: VTable [0x000000000301EB38, 0x0000000000000000 offset, 4 functions] `.?AV?$hkgpAbstractMesh@UEdge@hkgpMeshBase@@UVertex@2@UTriangle@2@UhkContainerHeapAllocator@@@@` -`class hkgpMesh::IConvexOverlap::IConvexShape`: VTable [0x000000000301EB68, 0x0000000000000000 offset, 4 functions] `.?AVIConvexShape@IConvexOverlap@hkgpMesh@@` -`class hkgpMesh::IConvexOverlap`: VTable [0x000000000301EB98, 0x0000000000000000 offset, 3 functions] `.?AVIConvexOverlap@hkgpMesh@@` -`struct hkgpMesh::TriangleShape`: VTable [0x000000000301EBC0, 0x0000000000000000 offset, 4 functions] `.?AUTriangleShape@hkgpMesh@@` -`struct hkgpMesh::ExternShape`: VTable [0x000000000301EBF0, 0x0000000000000000 offset, 4 functions] `.?AUExternShape@hkgpMesh@@` -`struct hkgpMesh::CollideShapeTriangle`: VTable [0x000000000301EC20, 0x0000000000000000 offset, 2 functions] `.?AUCollideShapeTriangle@hkgpMesh@@` -`struct hkgpMesh::NearestFeaturePolicy`: VTable [0x000000000301EC40, 0x0000000000000000 offset, 2 functions] `.?AUNearestFeaturePolicy@hkgpMesh@@` -`class hkgpMesh`: VTable [0x000000000301EC60, 0x0000000000000000 offset, 4 functions] `.?AVhkgpMesh@@` -`struct hkGskShape`: VTable [0x000000000301ED40, 0x0000000000000000 offset, 3 functions] `.?AUhkGskShape@@` -`class hkgpAbstractMesh,struct hkgpTriangulatorBase::SparseEdgeDataPolicy,struct hkContainerHeapAllocator>,-1,4,15,0>::Edge,struct hkgpTriangulatorType,struct hkgpTriangulatorBase::SparseEdgeDataPolicy,struct hkContainerHeapAllocator>,-1,4,15,0>::Vertex,struct hkgpTriangulatorType,struct hkgpTriangulatorBase::SparseEdgeDataPolicy,struct hkContainerHeapAllocator>,-1,4,15,0>::Triangle,struct hkContainerHeapAllocator>`: VTable [0x000000000301EE18, 0x0000000000000000 offset, 4 functions] `.?AV?$hkgpAbstractMesh@UEdge@?$hkgpTriangulatorType@UhkContainerHeapAllocator@@UVertexBase@hkgpTriangulatorBase@@UTriangleBase@3@U?$DefaultEdgeData@UhkContainerHeapAllocator@@@3@U?$SparseEdgeDataPolicy@U?$DefaultEdgeData@UhkContainerHeapAllocator@@@hkgpTriangulatorBase@@UhkContainerHeapAllocator@@@3@$0?0$03$0P@$0A@@@UVertex@2@UTriangle@2@UhkContainerHeapAllocator@@@@` -`class hkgpTriangulatorType,struct hkgpTriangulatorBase::SparseEdgeDataPolicy,struct hkContainerHeapAllocator>,-1,4,15,0>`: VTable [0x000000000301EE48, 0x0000000000000000 offset, 3 functions] `.?AV?$hkgpTriangulatorType@UhkContainerHeapAllocator@@UVertexBase@hkgpTriangulatorBase@@UTriangleBase@3@U?$DefaultEdgeData@UhkContainerHeapAllocator@@@3@U?$SparseEdgeDataPolicy@U?$DefaultEdgeData@UhkContainerHeapAllocator@@@hkgpTriangulatorBase@@UhkContainerHeapAllocator@@@3@$0?0$03$0P@$0A@@@` -`struct hkgpMeshInternals::SimpleCollector`: VTable [0x000000000301EE70, 0x0000000000000000 offset, 2 functions] `.?AUSimpleCollector@hkgpMeshInternals@@` -`struct hkgpMeshInternals::TriangleOverlap`: VTable [0x000000000301EE90, 0x0000000000000000 offset, 2 functions] `.?AUTriangleOverlap@hkgpMeshInternals@@` -`struct hkgpMeshInternals::RayCaster`: VTable [0x000000000301EEB0, 0x0000000000000000 offset, 2 functions] `.?AURayCaster@hkgpMeshInternals@@` -`struct IConvexOverlapImpl::ShapeBridge`: VTable [0x000000000301EED0, 0x0000000000000000 offset, 3 functions] `.?AUShapeBridge@IConvexOverlapImpl@@` -`struct IConvexOverlapImpl`: VTable [0x000000000301EEF8, 0x0000000000000000 offset, 3 functions] `.?AUIConvexOverlapImpl@@` -`struct hkgpJobQueue::Box`: VTable [0x000000000301F1C0, 0x0000000000000000 offset, 2 functions] `.?AU?$Box@UHandle@ConcaveEdgeJob@hkgpMeshInternals@@@hkgpJobQueue@@` -`class hkVtableClassRegistry`: VTable [0x000000000301F438, 0x0000000000000000 offset, 6 functions] `.?AVhkVtableClassRegistry@@` -`class hkDynamicClassNameRegistry`: VTable [0x000000000301F480, 0x0000000000000000 offset, 11 functions] `.?AVhkDynamicClassNameRegistry@@` -`class hkDefaultBuiltinTypeRegistry`: VTable [0x000000000301F510, 0x0000000000000000 offset, 8 functions] `.?AVhkDefaultBuiltinTypeRegistry@@` -`class hkDefaultClassNameRegistry`: VTable [0x000000000301F588, 0x0000000000000000 offset, 11 functions] `.?AVhkDefaultClassNameRegistry@@` -`class hkBuiltinTypeRegistry`: VTable [0x000000000301F618, 0x0000000000000000 offset, 8 functions] `.?AVhkBuiltinTypeRegistry@@` -`class hkClassNameRegistry`: VTable [0x000000000301F670, 0x0000000000000000 offset, 6 functions] `.?AVhkClassNameRegistry@@` -`class hkTypeInfoRegistry`: VTable [0x000000000301F6B8, 0x0000000000000000 offset, 8 functions] `.?AVhkTypeInfoRegistry@@` -`class hkObjectCopier`: VTable [0x0000000003020318, 0x0000000000000000 offset, 6 functions] `.?AVhkObjectCopier@@` -`class hkStaticClassNameRegistry`: VTable [0x00000000030204A0, 0x0000000000000000 offset, 6 functions] `.?AVhkStaticClassNameRegistry@@` -`class hkResourceBase`: VTable [0x00000000030204E8, 0x0000000000000000 offset, 5 functions] `.?AVhkResourceBase@@` -`class hkResourceHandle`: VTable [0x0000000003020528, 0x0000000000000000 offset, 14 functions] `.?AVhkResourceHandle@@` -`class hkResourceContainer`: VTable [0x00000000030205B8, 0x0000000000000000 offset, 16 functions] `.?AVhkResourceContainer@@` -`class hkResourceMap`: VTable [0x0000000003020660, 0x0000000000000000 offset, 2 functions] `.?AVhkResourceMap@@` -`class hkMemoryResourceHandle`: VTable [0x0000000003020680, 0x0000000000000000 offset, 14 functions] `.?AVhkMemoryResourceHandle@@` -`class hkMemoryResourceContainer`: VTable [0x0000000003020710, 0x0000000000000000 offset, 16 functions] `.?AVhkMemoryResourceContainer@@` -`class hkContainerResourceMap`: VTable [0x00000000030207B8, 0x0000000000000000 offset, 2 functions] `.?AVhkContainerResourceMap@@` -`class hkDebugDisplay`: VTable [0x00000000030208E0, 0x0000000000000000 offset, 3 functions] `.?AVhkDebugDisplay@@` -`class hkpShapeContainer`: VTable [0x0000000003020AD8, 0x0000000000000000 offset, 7 functions] `.?AVhkpShapeContainer@@` -`class hkpSingleShapeContainer`: VTable [0x0000000003020B28, 0x0000000000000000 offset, 7 functions] `.?AVhkpSingleShapeContainer@@` -`class hkpBvShape`: VTable [0x0000000003020B78, 0x0000000000000000 offset, 11 functions] `.?AVhkpBvShape@@` -`class hkpSphereRepShape`: VTable [0x0000000003020DE0, 0x0000000000000000 offset, 13 functions] `.?AVhkpSphereRepShape@@` -`class hkpConvexShape`: VTable [0x0000000003020E68, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexShape@@` -`class hkpSphereShape`: VTable [0x0000000003020F20, 0x0000000000000000 offset, 18 functions] `.?AVhkpSphereShape@@` -`class hkpCapsuleShape`: VTable [0x0000000003021020, 0x0000000000000000 offset, 18 functions] `.?AVhkpCapsuleShape@@` -`class hkpCollidableCollidableFilter`: VTable [0x00000000030210E8, 0x0000000000000000 offset, 2 functions] `.?AVhkpCollidableCollidableFilter@@` -`class hkpRayCollidableFilter`: VTable [0x0000000003021108, 0x0000000000000000 offset, 2 functions] `.?AVhkpRayCollidableFilter@@` -`class hkpShapeCollectionFilter`: VTable [0x0000000003021128, 0x0000000000000000 offset, 4 functions] `.?AVhkpShapeCollectionFilter@@` -`class hkpRayShapeCollectionFilter`: VTable [0x0000000003021158, 0x0000000000000000 offset, 2 functions] `.?AVhkpRayShapeCollectionFilter@@` -`class hkpGroupFilter`: VTable [0x0000000003021178, 0x0000000000000000 offset, 5 functions] `.?AVhkpGroupFilter@@` -`class hkpGroupFilter`: VTable [0x00000000030211B8, 0x0000000000000010 offset, 2 functions] `.?AVhkpGroupFilter@@` -`class hkpGroupFilter`: VTable [0x00000000030211D8, 0x0000000000000018 offset, 4 functions] `.?AVhkpGroupFilter@@` -`class hkpGroupFilter`: VTable [0x0000000003021208, 0x0000000000000020 offset, 2 functions] `.?AVhkpGroupFilter@@` -`class hkpGroupFilter`: VTable [0x0000000003021228, 0x0000000000000028 offset, 2 functions] `.?AVhkpGroupFilter@@` -`class hkpConvexListFilter`: VTable [0x0000000003023990, 0x0000000000000000 offset, 4 functions] `.?AVhkpConvexListFilter@@` -`class hkpDefaultConvexListFilter`: VTable [0x00000000030239C0, 0x0000000000000000 offset, 4 functions] `.?AVhkpDefaultConvexListFilter@@` -`class hkpCollisionFilter`: VTable [0x0000000003023A38, 0x0000000000000000 offset, 4 functions] `.?AVhkpCollisionFilter@@` -`class hkpCollisionFilter`: VTable [0x0000000003023A68, 0x0000000000000010 offset, 2 functions] `.?AVhkpCollisionFilter@@` -`class hkpCollisionFilter`: VTable [0x0000000003023A88, 0x0000000000000018 offset, 4 functions] `.?AVhkpCollisionFilter@@` -`class hkpCollisionFilter`: VTable [0x0000000003023AB8, 0x0000000000000020 offset, 2 functions] `.?AVhkpCollisionFilter@@` -`class hkpCollisionFilter`: VTable [0x0000000003023AD8, 0x0000000000000028 offset, 2 functions] `.?AVhkpCollisionFilter@@` -`class hkpCollisionFilterList`: VTable [0x0000000003023B28, 0x0000000000000000 offset, 4 functions] `.?AVhkpCollisionFilterList@@` -`class hkpCollisionFilterList`: VTable [0x0000000003023B58, 0x0000000000000010 offset, 2 functions] `.?AVhkpCollisionFilterList@@` -`class hkpCollisionFilterList`: VTable [0x0000000003023B78, 0x0000000000000018 offset, 4 functions] `.?AVhkpCollisionFilterList@@` -`class hkpCollisionFilterList`: VTable [0x0000000003023BA8, 0x0000000000000020 offset, 2 functions] `.?AVhkpCollisionFilterList@@` -`class hkpCollisionFilterList`: VTable [0x0000000003023BC8, 0x0000000000000028 offset, 2 functions] `.?AVhkpCollisionFilterList@@` -`class hkpNullCollisionFilter`: VTable [0x0000000003023C28, 0x0000000000000000 offset, 4 functions] `.?AVhkpNullCollisionFilter@@` -`class hkpNullCollisionFilter`: VTable [0x0000000003023C58, 0x0000000000000010 offset, 2 functions] `.?AVhkpNullCollisionFilter@@` -`class hkpNullCollisionFilter`: VTable [0x0000000003023C78, 0x0000000000000018 offset, 4 functions] `.?AVhkpNullCollisionFilter@@` -`class hkpNullCollisionFilter`: VTable [0x0000000003023CA8, 0x0000000000000020 offset, 2 functions] `.?AVhkpNullCollisionFilter@@` -`class hkpNullCollisionFilter`: VTable [0x0000000003023CC8, 0x0000000000000028 offset, 2 functions] `.?AVhkpNullCollisionFilter@@` -`class hkpMoppModifier`: VTable [0x0000000003023EB8, 0x0000000000000000 offset, 3 functions] `.?AVhkpMoppModifier@@` -`class hkpRemoveTerminalsMoppModifier`: VTable [0x0000000003023EE0, 0x0000000000000000 offset, 3 functions] `.?AVhkpRemoveTerminalsMoppModifier@@` -`class hkpRemoveTerminalsMoppModifier`: VTable [0x0000000003023F08, 0x0000000000000010 offset, 3 functions] `.?AVhkpRemoveTerminalsMoppModifier@@` -`class hkpBvTreeShape`: VTable [0x0000000003023F80, 0x0000000000000000 offset, 13 functions] `.?AVhkpBvTreeShape@@` -`class hkMoppBvTreeShapeBase`: VTable [0x0000000003024008, 0x0000000000000000 offset, 14 functions] `.?AVhkMoppBvTreeShapeBase@@` -`class hkpMoppBvTreeShape`: VTable [0x0000000003024098, 0x0000000000000000 offset, 14 functions] `.?AVhkpMoppBvTreeShape@@` -`class hkpConvexTransformShapeBase`: VTable [0x0000000003024190, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexTransformShapeBase@@` -`class hkpBoxShape`: VTable [0x0000000003024248, 0x0000000000000000 offset, 18 functions] `.?AVhkpBoxShape@@` -`class hkpConvexTransformShape`: VTable [0x0000000003024350, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexTransformShape@@` -`class hkpConvexTranslateShape`: VTable [0x0000000003024448, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexTranslateShape@@` -`class hkpConvexVerticesConnectivity`: VTable [0x0000000003024540, 0x0000000000000000 offset, 4 functions] `.?AVhkpConvexVerticesConnectivity@@` -`class hkpTriangleShape`: VTable [0x0000000003024620, 0x0000000000000000 offset, 18 functions] `.?AVhkpTriangleShape@@` -`class hkpConvexListShape`: VTable [0x0000000003024778, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexListShape@@` -`class hkpConvexListShape`: VTable [0x0000000003024830, 0x0000000000000028 offset, 7 functions] `.?AVhkpConvexListShape@@` -`class hkpMultiSphereShape`: VTable [0x00000000030248B0, 0x0000000000000000 offset, 13 functions] `.?AVhkpMultiSphereShape@@` -`class hkpMultiRayShape`: VTable [0x00000000030249A8, 0x0000000000000000 offset, 11 functions] `.?AVhkpMultiRayShape@@` -`class hkpTransformShape`: VTable [0x0000000003024AA8, 0x0000000000000000 offset, 11 functions] `.?AVhkpTransformShape@@` -`class hkpShapeInfo`: VTable [0x0000000003024BF8, 0x0000000000000000 offset, 3 functions] `.?AVhkpShapeInfo@@` -`class hkpShapeCollection`: VTable [0x0000000003024C70, 0x0000000000000000 offset, 13 functions] `.?AVhkpShapeCollection@@` -`class hkpShapeCollection`: VTable [0x0000000003024CF8, 0x0000000000000020 offset, 7 functions] `.?AVhkpShapeCollection@@` -`class hkpListShape`: VTable [0x0000000003024D48, 0x0000000000000000 offset, 13 functions] `.?AVhkpListShape@@` -`class hkpListShape`: VTable [0x0000000003024DD0, 0x0000000000000020 offset, 7 functions] `.?AVhkpListShape@@` -`class hkpRemoveTerminalsMoppModifier2`: VTable [0x0000000003024E60, 0x0000000000000000 offset, 3 functions] `.?AVhkpRemoveTerminalsMoppModifier2@@` -`class hkpRemoveTerminalsMoppModifier2`: VTable [0x0000000003024E88, 0x0000000000000010 offset, 3 functions] `.?AVhkpRemoveTerminalsMoppModifier2@@` -`class hkpCylinderShape`: VTable [0x0000000003025008, 0x0000000000000000 offset, 18 functions] `.?AVhkpCylinderShape@@` -`class hkpContactMgrFactory`: VTable [0x0000000003025208, 0x0000000000000000 offset, 4 functions] `.?AVhkpContactMgrFactory@@` -`class hkpContactMgr`: VTable [0x0000000003025258, 0x0000000000000000 offset, 10 functions] `.?AVhkpContactMgr@@` -`class hkpNullContactMgr`: VTable [0x00000000030252C8, 0x0000000000000000 offset, 10 functions] `.?AVhkpNullContactMgr@@` -`class hkpNullContactMgrFactory`: VTable [0x0000000003025338, 0x0000000000000000 offset, 4 functions] `.?AVhkpNullContactMgrFactory@@` -`class hkpBroadPhaseListener`: VTable [0x0000000003025368, 0x0000000000000000 offset, 3 functions] `.?AVhkpBroadPhaseListener@@` -`class hkpSimpleWorldRayCaster`: VTable [0x0000000003025390, 0x0000000000000000 offset, 2 functions] `.?AVhkpSimpleWorldRayCaster@@` -`class hkpWorldLinearCaster`: VTable [0x00000000030253B0, 0x0000000000000000 offset, 2 functions] `.?AVhkpWorldLinearCaster@@` -`class hkpWorld`: VTable [0x00000000030253D0, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorld@@` -`class hkpPhantomBroadPhaseListener`: VTable [0x00000000030253F8, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhantomBroadPhaseListener@@` -`class hkpPhantomBroadPhaseListener`: VTable [0x0000000003025420, 0x0000000000000010 offset, 3 functions] `.?AVhkpPhantomBroadPhaseListener@@` -`class hkpBroadPhaseBorderListener`: VTable [0x0000000003025448, 0x0000000000000000 offset, 3 functions] `.?AVhkpBroadPhaseBorderListener@@` -`class hkpBroadPhaseBorderListener`: VTable [0x0000000003025470, 0x0000000000000010 offset, 3 functions] `.?AVhkpBroadPhaseBorderListener@@` -`class hkpWorldPostSimulationListener`: VTable [0x0000000003025498, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldPostSimulationListener@@` -`class hkpConstraintListener`: VTable [0x00000000030254C0, 0x0000000000000000 offset, 7 functions] `.?AVhkpConstraintListener@@` -`class hkpCollisionCallbackUtil`: VTable [0x0000000003025510, 0x0000000000000000 offset, 5 functions] `.?AVhkpCollisionCallbackUtil@@` -`class hkpCollisionCallbackUtil`: VTable [0x0000000003025550, 0x0000000000000020 offset, 7 functions] `.?AVhkpCollisionCallbackUtil@@` -`class hkpWorldObject`: VTable [0x0000000003025C80, 0x0000000000000000 offset, 6 functions] `.?AVhkpWorldObject@@` -`class hkpMotion`: VTable [0x0000000003025CC8, 0x0000000000000000 offset, 26 functions] `.?AVhkpMotion@@` -`class hkpKeyframedRigidMotion`: VTable [0x0000000003025DD0, 0x0000000000000000 offset, 28 functions] `.?AVhkpKeyframedRigidMotion@@` -`class hkpMaxSizeMotion`: VTable [0x0000000003025EE8, 0x0000000000000000 offset, 28 functions] `.?AVhkpMaxSizeMotion@@` -`class hkpEntity`: VTable [0x0000000003026000, 0x0000000000000000 offset, 7 functions] `.?AVhkpEntity@@` -`class hkpFixedRigidMotion`: VTable [0x0000000003026050, 0x0000000000000000 offset, 29 functions] `.?AVhkpFixedRigidMotion@@` -`class hkpSphereMotion`: VTable [0x0000000003026170, 0x0000000000000000 offset, 26 functions] `.?AVhkpSphereMotion@@` -`class hkpBoxMotion`: VTable [0x0000000003026278, 0x0000000000000000 offset, 26 functions] `.?AVhkpBoxMotion@@` -`class hkpThinBoxMotion`: VTable [0x0000000003026380, 0x0000000000000000 offset, 26 functions] `.?AVhkpThinBoxMotion@@` -`class hkpCharacterMotion`: VTable [0x0000000003026488, 0x0000000000000000 offset, 26 functions] `.?AVhkpCharacterMotion@@` -`class hkpRigidBody`: VTable [0x0000000003026660, 0x0000000000000000 offset, 8 functions] `.?AVhkpRigidBody@@` -`class hkpPhantom`: VTable [0x00000000030266B8, 0x0000000000000000 offset, 15 functions] `.?AVhkpPhantom@@` -`class hkpAabbPhantom`: VTable [0x0000000003026758, 0x0000000000000000 offset, 15 functions] `.?AVhkpAabbPhantom@@` -`class hkpConstraintInstance`: VTable [0x0000000003026880, 0x0000000000000000 offset, 7 functions] `.?AVhkpConstraintInstance@@` -`class hkpConstraintData`: VTable [0x00000000030268D0, 0x0000000000000000 offset, 19 functions] `.?AVhkpConstraintData@@` -`class hkpLimitedHingeConstraintData`: VTable [0x0000000003026990, 0x0000000000000000 offset, 19 functions] `.?AVhkpLimitedHingeConstraintData@@` -`class hkpRagdollConstraintData`: VTable [0x0000000003026A50, 0x0000000000000000 offset, 19 functions] `.?AVhkpRagdollConstraintData@@` -`class hkpAction`: VTable [0x000000000302E328, 0x0000000000000000 offset, 8 functions] `.?AVhkpAction@@` -`class hkWorldMemoryAvailableWatchDog`: VTable [0x000000000302E3E0, 0x0000000000000000 offset, 6 functions] `.?AVhkWorldMemoryAvailableWatchDog@@` -`class hkpPairCollisionFilter`: VTable [0x000000000302E440, 0x0000000000000000 offset, 4 functions] `.?AVhkpPairCollisionFilter@@` -`class hkpPairCollisionFilter`: VTable [0x000000000302E470, 0x0000000000000010 offset, 2 functions] `.?AVhkpPairCollisionFilter@@` -`class hkpPairCollisionFilter`: VTable [0x000000000302E490, 0x0000000000000018 offset, 4 functions] `.?AVhkpPairCollisionFilter@@` -`class hkpPairCollisionFilter`: VTable [0x000000000302E4C0, 0x0000000000000020 offset, 2 functions] `.?AVhkpPairCollisionFilter@@` -`class hkpPairCollisionFilter`: VTable [0x000000000302E4E0, 0x0000000000000028 offset, 2 functions] `.?AVhkpPairCollisionFilter@@` -`class hkpConstraintCollisionFilter`: VTable [0x000000000302E500, 0x0000000000000000 offset, 4 functions] `.?AVhkpConstraintCollisionFilter@@` -`class hkpConstraintCollisionFilter`: VTable [0x000000000302E530, 0x0000000000000010 offset, 2 functions] `.?AVhkpConstraintCollisionFilter@@` -`class hkpConstraintCollisionFilter`: VTable [0x000000000302E550, 0x0000000000000018 offset, 4 functions] `.?AVhkpConstraintCollisionFilter@@` -`class hkpConstraintCollisionFilter`: VTable [0x000000000302E580, 0x0000000000000020 offset, 2 functions] `.?AVhkpConstraintCollisionFilter@@` -`class hkpConstraintCollisionFilter`: VTable [0x000000000302E5A0, 0x0000000000000028 offset, 2 functions] `.?AVhkpConstraintCollisionFilter@@` -`class hkpConstraintCollisionFilter`: VTable [0x000000000302E5C0, 0x0000000000000060 offset, 7 functions] `.?AVhkpConstraintCollisionFilter@@` -`class hkpBallAndSocketConstraintData`: VTable [0x000000000302E7B0, 0x0000000000000000 offset, 19 functions] `.?AVhkpBallAndSocketConstraintData@@` -`class hkpCogWheelConstraintData`: VTable [0x000000000302E920, 0x0000000000000000 offset, 19 functions] `.?AVhkpCogWheelConstraintData@@` -`class hkpHingeConstraintData`: VTable [0x000000000302EA70, 0x0000000000000000 offset, 19 functions] `.?AVhkpHingeConstraintData@@` -`class hkpParametricCurve`: VTable [0x000000000302EC70, 0x0000000000000000 offset, 14 functions] `.?AVhkpParametricCurve@@` -`class hkpLinearParametricCurve`: VTable [0x000000000302ED00, 0x0000000000000000 offset, 14 functions] `.?AVhkpLinearParametricCurve@@` -`class hkpPointToPathConstraintData`: VTable [0x000000000302EDE8, 0x0000000000000000 offset, 19 functions] `.?AVhkpPointToPathConstraintData@@` -`class hkpPointToPlaneConstraintData`: VTable [0x000000000302EF10, 0x0000000000000000 offset, 19 functions] `.?AVhkpPointToPlaneConstraintData@@` -`class hkpPrismaticConstraintData`: VTable [0x000000000302F080, 0x0000000000000000 offset, 19 functions] `.?AVhkpPrismaticConstraintData@@` -`class hkpRackAndPinionConstraintData`: VTable [0x000000000302F1E0, 0x0000000000000000 offset, 19 functions] `.?AVhkpRackAndPinionConstraintData@@` -`class hkpStiffSpringConstraintData`: VTable [0x000000000302F3E0, 0x0000000000000000 offset, 19 functions] `.?AVhkpStiffSpringConstraintData@@` -`class hkpWheelConstraintData`: VTable [0x000000000302F548, 0x0000000000000000 offset, 19 functions] `.?AVhkpWheelConstraintData@@` -`class hkpRotationalConstraintData`: VTable [0x000000000302F698, 0x0000000000000000 offset, 19 functions] `.?AVhkpRotationalConstraintData@@` -`class hkpHingeLimitsData`: VTable [0x000000000302F8E8, 0x0000000000000000 offset, 19 functions] `.?AVhkpHingeLimitsData@@` -`class hkpRagdollLimitsData`: VTable [0x000000000302FA18, 0x0000000000000000 offset, 19 functions] `.?AVhkpRagdollLimitsData@@` -`class hkpConstraintChainInstance`: VTable [0x000000000302FC28, 0x0000000000000000 offset, 7 functions] `.?AVhkpConstraintChainInstance@@` -`class hkpConstraintChainInstanceAction`: VTable [0x000000000302FCC0, 0x0000000000000000 offset, 8 functions] `.?AVhkpConstraintChainInstanceAction@@` -`class hkpConstraintMotor`: VTable [0x000000000302FEB8, 0x0000000000000000 offset, 4 functions] `.?AVhkpConstraintMotor@@` -`class hkpLimitedForceConstraintMotor`: VTable [0x000000000302FEE8, 0x0000000000000000 offset, 4 functions] `.?AVhkpLimitedForceConstraintMotor@@` -`class hkpCallbackConstraintMotor`: VTable [0x000000000302FF18, 0x0000000000000000 offset, 4 functions] `.?AVhkpCallbackConstraintMotor@@` -`class hkpPositionConstraintMotor`: VTable [0x000000000302FFC0, 0x0000000000000000 offset, 4 functions] `.?AVhkpPositionConstraintMotor@@` -`class hkpSpringDamperConstraintMotor`: VTable [0x0000000003030038, 0x0000000000000000 offset, 4 functions] `.?AVhkpSpringDamperConstraintMotor@@` -`class hkpVelocityConstraintMotor`: VTable [0x00000000030300B8, 0x0000000000000000 offset, 4 functions] `.?AVhkpVelocityConstraintMotor@@` -`class hkpPulleyConstraintData`: VTable [0x0000000003030170, 0x0000000000000000 offset, 19 functions] `.?AVhkpPulleyConstraintData@@` -`class hkpShapePhantom`: VTable [0x00000000030307A8, 0x0000000000000000 offset, 19 functions] `.?AVhkpShapePhantom@@` -`class hkpCachingShapePhantom`: VTable [0x0000000003030868, 0x0000000000000000 offset, 19 functions] `.?AVhkpCachingShapePhantom@@` -`class hkpSimpleShapePhantom`: VTable [0x0000000003030990, 0x0000000000000000 offset, 19 functions] `.?AVhkpSimpleShapePhantom@@` -`class hkpDefaultWorldMemoryWatchDog`: VTable [0x0000000003030AF0, 0x0000000000000000 offset, 6 functions] `.?AVhkpDefaultWorldMemoryWatchDog@@` -`class hkpSimulation`: VTable [0x0000000003030BB0, 0x0000000000000000 offset, 19 functions] `.?AVhkpSimulation@@` -`class hkpPhysicsSystem`: VTable [0x0000000003030D20, 0x0000000000000000 offset, 5 functions] `.?AVhkpPhysicsSystem@@` -`class hkpConstraintOwner`: VTable [0x00000000030310F8, 0x0000000000000000 offset, 7 functions] `.?AVhkpConstraintOwner@@` -`class hkpEntityEntityBroadPhaseListener`: VTable [0x00000000030311D0, 0x0000000000000000 offset, 3 functions] `.?AVhkpEntityEntityBroadPhaseListener@@` -`class hkpEntityEntityBroadPhaseListener`: VTable [0x00000000030311F8, 0x0000000000000010 offset, 3 functions] `.?AVhkpEntityEntityBroadPhaseListener@@` -`class hkpSimulationIsland`: VTable [0x0000000003031220, 0x0000000000000000 offset, 7 functions] `.?AVhkpSimulationIsland@@` -`class hkpPhantomOverlapListener`: VTable [0x0000000003031328, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhantomOverlapListener@@` -`class hkpWorldDeletionListener`: VTable [0x0000000003031350, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldDeletionListener@@` -`class hkpBroadPhaseBorder`: VTable [0x0000000003031378, 0x0000000000000000 offset, 5 functions] `.?AVhkpBroadPhaseBorder@@` -`class hkpBroadPhaseBorder`: VTable [0x00000000030313B8, 0x0000000000000010 offset, 3 functions] `.?AVhkpBroadPhaseBorder@@` -`class hkpBroadPhaseBorder`: VTable [0x00000000030313E0, 0x0000000000000018 offset, 3 functions] `.?AVhkpBroadPhaseBorder@@` -`class hkpBroadPhaseBorder`: VTable [0x0000000003031408, 0x0000000000000020 offset, 3 functions] `.?AVhkpBroadPhaseBorder@@` -`class hkpDynamicsContactMgr`: VTable [0x0000000003031430, 0x0000000000000000 offset, 19 functions] `.?AVhkpDynamicsContactMgr@@` -`class hkpSimpleContactConstraintData`: VTable [0x00000000030314F0, 0x0000000000000000 offset, 21 functions] `.?AVhkpSimpleContactConstraintData@@` -`class hkpSimpleConstraintContactMgr::Factory`: VTable [0x00000000030315C8, 0x0000000000000000 offset, 4 functions] `.?AVFactory@hkpSimpleConstraintContactMgr@@` -`class hkpSimpleConstraintContactMgr`: VTable [0x00000000030315F8, 0x0000000000000000 offset, 20 functions] `.?AVhkpSimpleConstraintContactMgr@@` -`class hkpReportContactMgr::Factory`: VTable [0x00000000030317C8, 0x0000000000000000 offset, 4 functions] `.?AVFactory@hkpReportContactMgr@@` -`class hkpReportContactMgr`: VTable [0x00000000030317F8, 0x0000000000000000 offset, 19 functions] `.?AVhkpReportContactMgr@@` -`class hkpWorldMaintenanceMgr`: VTable [0x0000000003031B90, 0x0000000000000000 offset, 6 functions] `.?AVhkpWorldMaintenanceMgr@@` -`class hkpDefaultWorldMaintenanceMgr`: VTable [0x0000000003031BD8, 0x0000000000000000 offset, 6 functions] `.?AVhkpDefaultWorldMaintenanceMgr@@` -`class hkpWorldExtension`: VTable [0x0000000003031C50, 0x0000000000000000 offset, 5 functions] `.?AVhkpWorldExtension@@` -`class hkpEndOfStepCallbackUtil`: VTable [0x0000000003031C90, 0x0000000000000000 offset, 3 functions] `.?AVhkpEndOfStepCallbackUtil@@` -`class hkpEndOfStepCallbackUtil`: VTable [0x0000000003031CB8, 0x0000000000000010 offset, 3 functions] `.?AVhkpEndOfStepCallbackUtil@@` -`class hkpClosestCdPointCollector`: VTable [0x0000000003031DC8, 0x0000000000000000 offset, 3 functions] `.?AVhkpClosestCdPointCollector@@` -`class hkpMalleableConstraintData`: VTable [0x0000000003031DF8, 0x0000000000000000 offset, 19 functions] `.?AVhkpMalleableConstraintData@@` -`class hkpBreakableConstraintData`: VTable [0x0000000003031EB8, 0x0000000000000000 offset, 19 functions] `.?AVhkpBreakableConstraintData@@` -`class hkpConstraintChainData`: VTable [0x0000000003031F78, 0x0000000000000000 offset, 20 functions] `.?AVhkpConstraintChainData@@` -`class hkpBallSocketChainData`: VTable [0x0000000003032048, 0x0000000000000000 offset, 20 functions] `.?AVhkpBallSocketChainData@@` -`class hkpStiffSpringChainData`: VTable [0x0000000003032118, 0x0000000000000000 offset, 20 functions] `.?AVhkpStiffSpringChainData@@` -`class hkpGenericConstraintData`: VTable [0x00000000030321E8, 0x0000000000000000 offset, 19 functions] `.?AVhkpGenericConstraintData@@` -`class hkpConvexPieceStreamData`: VTable [0x00000000030325B0, 0x0000000000000000 offset, 3 functions] `.?AVhkpConvexPieceStreamData@@` -`class hkpMouseSpringAction`: VTable [0x0000000003032780, 0x0000000000000000 offset, 8 functions] `.?AVhkpMouseSpringAction@@` -`class hkpBinaryAction`: VTable [0x00000000030366B8, 0x0000000000000000 offset, 8 functions] `.?AVhkpBinaryAction@@` -`class hkpAngularDashpotAction`: VTable [0x0000000003036710, 0x0000000000000000 offset, 8 functions] `.?AVhkpAngularDashpotAction@@` -`class hkpDashpotAction`: VTable [0x00000000030367A8, 0x0000000000000000 offset, 8 functions] `.?AVhkpDashpotAction@@` -`class hkpUnaryAction`: VTable [0x0000000003036830, 0x0000000000000000 offset, 8 functions] `.?AVhkpUnaryAction@@` -`class hkpMotorAction`: VTable [0x0000000003036888, 0x0000000000000000 offset, 8 functions] `.?AVhkpMotorAction@@` -`class hkpReorientAction`: VTable [0x0000000003036950, 0x0000000000000000 offset, 8 functions] `.?AVhkpReorientAction@@` -`class hkpSpringAction`: VTable [0x00000000030369D8, 0x0000000000000000 offset, 8 functions] `.?AVhkpSpringAction@@` -`struct hkpCharacterRigidBodyCinfo`: VTable [0x0000000003036AE8, 0x0000000000000000 offset, 3 functions] `.?AUhkpCharacterRigidBodyCinfo@@` -`class hkpPoweredChainMapper`: VTable [0x0000000003036C20, 0x0000000000000000 offset, 3 functions] `.?AVhkpPoweredChainMapper@@` -`class hkpConstrainedSystemFilter`: VTable [0x0000000003036D28, 0x0000000000000000 offset, 4 functions] `.?AVhkpConstrainedSystemFilter@@` -`class hkpConstrainedSystemFilter`: VTable [0x0000000003036D58, 0x0000000000000010 offset, 2 functions] `.?AVhkpConstrainedSystemFilter@@` -`class hkpConstrainedSystemFilter`: VTable [0x0000000003036D78, 0x0000000000000018 offset, 4 functions] `.?AVhkpConstrainedSystemFilter@@` -`class hkpConstrainedSystemFilter`: VTable [0x0000000003036DA8, 0x0000000000000020 offset, 2 functions] `.?AVhkpConstrainedSystemFilter@@` -`class hkpConstrainedSystemFilter`: VTable [0x0000000003036DC8, 0x0000000000000028 offset, 2 functions] `.?AVhkpConstrainedSystemFilter@@` -`class hkpConstrainedSystemFilter`: VTable [0x0000000003036DE8, 0x0000000000000048 offset, 7 functions] `.?AVhkpConstrainedSystemFilter@@` -`class hkpDisableEntityCollisionFilter`: VTable [0x0000000003036E80, 0x0000000000000000 offset, 4 functions] `.?AVhkpDisableEntityCollisionFilter@@` -`class hkpDisableEntityCollisionFilter`: VTable [0x0000000003036EB0, 0x0000000000000010 offset, 2 functions] `.?AVhkpDisableEntityCollisionFilter@@` -`class hkpDisableEntityCollisionFilter`: VTable [0x0000000003036ED0, 0x0000000000000018 offset, 4 functions] `.?AVhkpDisableEntityCollisionFilter@@` -`class hkpDisableEntityCollisionFilter`: VTable [0x0000000003036F00, 0x0000000000000020 offset, 2 functions] `.?AVhkpDisableEntityCollisionFilter@@` -`class hkpDisableEntityCollisionFilter`: VTable [0x0000000003036F20, 0x0000000000000028 offset, 2 functions] `.?AVhkpDisableEntityCollisionFilter@@` -`class hkpDisableEntityCollisionFilter`: VTable [0x0000000003036F40, 0x0000000000000048 offset, 6 functions] `.?AVhkpDisableEntityCollisionFilter@@` -`class hkpGroupCollisionFilter`: VTable [0x0000000003036FD8, 0x0000000000000000 offset, 4 functions] `.?AVhkpGroupCollisionFilter@@` -`class hkpGroupCollisionFilter`: VTable [0x0000000003037008, 0x0000000000000010 offset, 2 functions] `.?AVhkpGroupCollisionFilter@@` -`class hkpGroupCollisionFilter`: VTable [0x0000000003037028, 0x0000000000000018 offset, 4 functions] `.?AVhkpGroupCollisionFilter@@` -`class hkpGroupCollisionFilter`: VTable [0x0000000003037058, 0x0000000000000020 offset, 2 functions] `.?AVhkpGroupCollisionFilter@@` -`class hkpGroupCollisionFilter`: VTable [0x0000000003037078, 0x0000000000000028 offset, 2 functions] `.?AVhkpGroupCollisionFilter@@` -`class hkpPhysicsSystemWithContacts`: VTable [0x00000000030370D8, 0x0000000000000000 offset, 5 functions] `.?AVhkpPhysicsSystemWithContacts@@` -`struct hkpSerializedAgentNnEntry`: VTable [0x0000000003037168, 0x0000000000000000 offset, 3 functions] `.?AUhkpSerializedAgentNnEntry@@` -`class hkpSerializedDisplayMarker`: VTable [0x00000000030372E8, 0x0000000000000000 offset, 3 functions] `.?AVhkpSerializedDisplayMarker@@` -`class hkpSerializedDisplayMarkerList`: VTable [0x0000000003037358, 0x0000000000000000 offset, 3 functions] `.?AVhkpSerializedDisplayMarkerList@@` -`class hkpSerializedDisplayRbTransforms`: VTable [0x00000000030373D0, 0x0000000000000000 offset, 3 functions] `.?AVhkpSerializedDisplayRbTransforms@@` -`struct hkpDisplayBindingData::RigidBody`: VTable [0x00000000030374D0, 0x0000000000000000 offset, 3 functions] `.?AURigidBody@hkpDisplayBindingData@@` -`struct hkpDisplayBindingData::PhysicsSystem`: VTable [0x00000000030374F8, 0x0000000000000000 offset, 3 functions] `.?AUPhysicsSystem@hkpDisplayBindingData@@` -`struct hkpDisplayBindingData`: VTable [0x0000000003037520, 0x0000000000000000 offset, 3 functions] `.?AUhkpDisplayBindingData@@` -`class hkpPhysicsData`: VTable [0x0000000003037638, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhysicsData@@` -`class hkpCharacterProxy`: VTable [0x0000000003037898, 0x0000000000000000 offset, 5 functions] `.?AVhkpCharacterProxy@@` -`class hkpCharacterProxy`: VTable [0x00000000030378D8, 0x0000000000000010 offset, 6 functions] `.?AVhkpCharacterProxy@@` -`class hkpCharacterProxy`: VTable [0x0000000003037920, 0x0000000000000018 offset, 5 functions] `.?AVhkpCharacterProxy@@` -`class hkpContactListener`: VTable [0x0000000003037A50, 0x0000000000000000 offset, 7 functions] `.?AVhkpContactListener@@` -`class hkpTriggerVolume`: VTable [0x0000000003037AA0, 0x0000000000000000 offset, 5 functions] `.?AVhkpTriggerVolume@@` -`class hkpTriggerVolume`: VTable [0x0000000003037AE0, 0x0000000000000010 offset, 7 functions] `.?AVhkpTriggerVolume@@` -`class hkpTriggerVolume`: VTable [0x0000000003037B30, 0x0000000000000018 offset, 3 functions] `.?AVhkpTriggerVolume@@` -`class hkpTriggerVolume`: VTable [0x0000000003037B58, 0x0000000000000020 offset, 6 functions] `.?AVhkpTriggerVolume@@` -`class hkpFirstPersonGun`: VTable [0x0000000003037DA0, 0x0000000000000000 offset, 9 functions] `.?AVhkpFirstPersonGun@@` -`class hkpBallGun`: VTable [0x0000000003037E00, 0x0000000000000000 offset, 9 functions] `.?AVhkpBallGun@@` -`class hkpGravityGun`: VTable [0x0000000003037E90, 0x0000000000000000 offset, 9 functions] `.?AVhkpGravityGun@@` -`class hkpMountedBallGun`: VTable [0x0000000003037F40, 0x0000000000000000 offset, 9 functions] `.?AVhkpMountedBallGun@@` -`class hkpGunProjectile`: VTable [0x0000000003037FD0, 0x0000000000000000 offset, 6 functions] `.?AVhkpGunProjectile@@` -`class hkpGunProjectile`: VTable [0x0000000003038018, 0x0000000000000010 offset, 7 functions] `.?AVhkpGunProjectile@@` -`class hkpProjectileGun`: VTable [0x0000000003038068, 0x0000000000000000 offset, 11 functions] `.?AVhkpProjectileGun@@` -`class hkpSaveContactPointsUtil::EntitySelector`: VTable [0x0000000003038440, 0x0000000000000000 offset, 2 functions] `.?AVEntitySelector@hkpSaveContactPointsUtil@@` -`class `anonymous namespace'::hkEntitySelectorAll`: VTable [0x0000000003038460, 0x0000000000000000 offset, 2 functions] `.?AVhkEntitySelectorAll@?A0x7ce6448c@@` -`class `anonymous namespace'::hkEntitySelectorListed`: VTable [0x0000000003038480, 0x0000000000000000 offset, 2 functions] `.?AVhkEntitySelectorListed@?A0x7ce6448c@@` -`class BSLimbIKModifierCastInfo`: VTable [0x00000000030384A0, 0x0000000000000000 offset, 1 functions] `.?AVBSLimbIKModifierCastInfo@@` -`class BSILimbIKModifierSingleton`: VTable [0x00000000030384B8, 0x0000000000000000 offset, 4 functions] `.?AVBSILimbIKModifierSingleton@@` -`class BGSGamebryoSequenceGenerator`: VTable [0x00000000030384E8, 0x0000000000000000 offset, 28 functions] `.?AVBGSGamebryoSequenceGenerator@@` -`class BSIStateManagerModifier::BSIStateManagerStateListener`: VTable [0x000000000303DC08, 0x0000000000000000 offset, 7 functions] `.?AVBSIStateManagerStateListener@BSIStateManagerModifier@@` -`class BSIStateManagerModifier`: VTable [0x00000000030410B0, 0x0000000000000000 offset, 25 functions] `.?AVBSIStateManagerModifier@@` -`class BSBoneSwitchGenerator`: VTable [0x00000000030412F0, 0x0000000000000000 offset, 28 functions] `.?AVBSBoneSwitchGenerator@@` -`class BSBoneSwitchGeneratorBoneData`: VTable [0x0000000003041518, 0x0000000000000000 offset, 4 functions] `.?AVBSBoneSwitchGeneratorBoneData@@` -`class BSCyclicBlendTransitionGenerator`: VTable [0x0000000003041548, 0x0000000000000000 offset, 28 functions] `.?AVBSCyclicBlendTransitionGenerator@@` -`class BSOffsetAnimationGenerator`: VTable [0x0000000003041988, 0x0000000000000000 offset, 28 functions] `.?AVBSOffsetAnimationGenerator@@` -`class BSiStateTaggingGenerator`: VTable [0x0000000003041CA0, 0x0000000000000000 offset, 28 functions] `.?AVBSiStateTaggingGenerator@@` -`class BSSynchronizedClipGenerator::hkbDefaultSynchronizedScene`: VTable [0x0000000003041DE8, 0x0000000000000000 offset, 10 functions] `.?AVhkbDefaultSynchronizedScene@BSSynchronizedClipGenerator@@` -`class BSSynchronizedClipGenerator`: VTable [0x0000000003041E58, 0x0000000000000000 offset, 28 functions] `.?AVBSSynchronizedClipGenerator@@` -`class BSComputeAddBoneAnimModifier`: VTable [0x0000000003042098, 0x0000000000000000 offset, 25 functions] `.?AVBSComputeAddBoneAnimModifier@@` -`class BSDecomposeVectorModifier`: VTable [0x0000000003042240, 0x0000000000000000 offset, 25 functions] `.?AVBSDecomposeVectorModifier@@` -`class BSDirectAtModifier`: VTable [0x0000000003042340, 0x0000000000000000 offset, 25 functions] `.?AVBSDirectAtModifier@@` -`class BSDistTriggerModifier`: VTable [0x0000000003042460, 0x0000000000000000 offset, 25 functions] `.?AVBSDistTriggerModifier@@` -`class BSEventEveryNEventsModifier`: VTable [0x0000000003042580, 0x0000000000000000 offset, 25 functions] `.?AVBSEventEveryNEventsModifier@@` -`class BSEventOnDeactivateModifier`: VTable [0x00000000030427E0, 0x0000000000000000 offset, 25 functions] `.?AVBSEventOnDeactivateModifier@@` -`class BSEventOnFalseToTrueModifier`: VTable [0x0000000003042918, 0x0000000000000000 offset, 25 functions] `.?AVBSEventOnFalseToTrueModifier@@` -`class BSGetTimeStepModifier`: VTable [0x0000000003042A48, 0x0000000000000000 offset, 25 functions] `.?AVBSGetTimeStepModifier@@` -`class BSInterpValueModifier`: VTable [0x0000000003042B48, 0x0000000000000000 offset, 25 functions] `.?AVBSInterpValueModifier@@` -`class BSIsActiveModifier`: VTable [0x0000000003042C48, 0x0000000000000000 offset, 25 functions] `.?AVBSIsActiveModifier@@` -`class BSLimbIKModifier`: VTable [0x0000000003042D48, 0x0000000000000000 offset, 25 functions] `.?AVBSLimbIKModifier@@` -`class BSLookAtModifier`: VTable [0x0000000003042F30, 0x0000000000000000 offset, 25 functions] `.?AVBSLookAtModifier@@` -`class BSModifyOnceModifier`: VTable [0x0000000003043220, 0x0000000000000000 offset, 25 functions] `.?AVBSModifyOnceModifier@@` -`class BSPassByTargetTriggerModifier`: VTable [0x0000000003043360, 0x0000000000000000 offset, 25 functions] `.?AVBSPassByTargetTriggerModifier@@` -`class BSRagdollContactListenerModifier`: VTable [0x0000000003043488, 0x0000000000000000 offset, 25 functions] `.?AVBSRagdollContactListenerModifier@@` -`class BSRagdollContactListenerModifier`: VTable [0x0000000003043588, 0x0000000000000050 offset, 7 functions] `.?AVBSRagdollContactListenerModifier@@` -`class BSSpeedSamplerModifier`: VTable [0x0000000003043600, 0x0000000000000000 offset, 25 functions] `.?AVBSSpeedSamplerModifier@@` -`class BSTimerModifier`: VTable [0x0000000003043720, 0x0000000000000000 offset, 25 functions] `.?AVBSTimerModifier@@` -`class BSTweenerModifier`: VTable [0x0000000003043820, 0x0000000000000000 offset, 25 functions] `.?AVBSTweenerModifier@@` -`class hkaAnimationBinding`: VTable [0x0000000003043938, 0x0000000000000000 offset, 3 functions] `.?AVhkaAnimationBinding@@` -`class BSSynchronizedClipGeneratorUtils::FindEventFunctor`: VTable [0x0000000003043960, 0x0000000000000000 offset, 2 functions] `.?AVFindEventFunctor@BSSynchronizedClipGeneratorUtils@@` -`class BSIDirectAtModifierSingleton`: VTable [0x0000000003043980, 0x0000000000000000 offset, 2 functions] `.?AVBSIDirectAtModifierSingleton@@` -`class BSIPassByTargetTriggerModifierSingleton`: VTable [0x0000000003043AB0, 0x0000000000000000 offset, 4 functions] `.?AVBSIPassByTargetTriggerModifierSingleton@@` -`class BSIRagdollContactListenerModifierSingleton`: VTable [0x0000000003043AE0, 0x0000000000000000 offset, 2 functions] `.?AVBSIRagdollContactListenerModifierSingleton@@` -`class BShkbUtils::GraphInspectionFunctor`: VTable [0x000000000304F250, 0x0000000000000000 offset, 7 functions] `.?AVGraphInspectionFunctor@BShkbUtils@@` -`class hkbAssetLoader`: VTable [0x000000000304F2A0, 0x0000000000000000 offset, 5 functions] `.?AVhkbAssetLoader@@` -`class `anonymous namespace'::BSResourceAssetLoader`: VTable [0x000000000304F2E0, 0x0000000000000000 offset, 5 functions] `.?AVBSResourceAssetLoader@?A0x5744e255@@` -`class `anonymous namespace'::NullAssetLoader`: VTable [0x000000000304F320, 0x0000000000000000 offset, 5 functions] `.?AVNullAssetLoader@?A0x5744e255@@` -`class `anonymous namespace'::MapEventFindFunctor`: VTable [0x000000000304F360, 0x0000000000000000 offset, 2 functions] `.?AVMapEventFindFunctor@?A0x5744e255@@` -`class `anonymous namespace'::ClipAddingFunctor`: VTable [0x000000000304F380, 0x0000000000000000 offset, 7 functions] `.?AVClipAddingFunctor@?A0x5744e255@@` -`class BShkbUtils::ProspectiveEventClipAddingFunctor`: VTable [0x000000000304F868, 0x0000000000000000 offset, 7 functions] `.?AVProspectiveEventClipAddingFunctor@BShkbUtils@@` -`class `anonymous namespace'::CompileExpressionFunctor`: VTable [0x0000000003050050, 0x0000000000000000 offset, 7 functions] `.?AVCompileExpressionFunctor@?A0x5744e255@@` -`class hkLoader`: VTable [0x0000000003050B88, 0x0000000000000000 offset, 11 functions] `.?AVhkLoader@@` -`class BShkbHkxDB::DBData`: VTable [0x0000000003050C00, 0x0000000000000000 offset, 15 functions] `.?AVDBData@BShkbHkxDB@@` -`class BSResource::EntryDB`: VTable [0x0000000003050CA0, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BShkbHkxDB@@@BSResource@@` -`class BShkbHkxDB::ProjectDBData`: VTable [0x0000000003050CE8, 0x0000000000000000 offset, 15 functions] `.?AVProjectDBData@BShkbHkxDB@@` -`class BSQueuedResourceCollection,2>`: VTable [0x0000000003050D88, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BShkbHkxDB@@@BSResource@@$01@@` -`class BSQueuedResourceCollection,2>`: VTable [0x0000000003050E58, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BShkbHkxDB@@@BSResource@@$01@@` -`class BShkbHkxDB::QueuedHandles`: VTable [0x0000000003050E80, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHandles@BShkbHkxDB@@` -`class BShkbHkxDB::QueuedHandles`: VTable [0x0000000003050F50, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHandles@BShkbHkxDB@@` -`class BShkbHkxDB::StreamAdaptor`: VTable [0x0000000003050F78, 0x0000000000000000 offset, 13 functions] `.?AVStreamAdaptor@BShkbHkxDB@@` -`class `anonymous namespace'::BShkbAnimationGraphLoadScrapper`: VTable [0x0000000003051858, 0x0000000000000000 offset, 2 functions] `.?AVBShkbAnimationGraphLoadScrapper@?A0xdc993fb5@@` -`class AutoRegisterFactory >`: VTable [0x00000000030519E8, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterFactory@VBShkbAnimationGraphLoadScrapper@?A0xdc993fb5@@V?$BSTFactoryManager@VBSFixedString@@VBSAnimationGraphLoadScrapper@@$01VBSTSingletonImplicit@@@@@@` -`class bhkIWorldStepListener`: VTable [0x0000000003051A08, 0x0000000000000000 offset, 3 functions] `.?AVbhkIWorldStepListener@@` -`class `anonymous namespace'::GraphPhysicsStepListener`: VTable [0x0000000003051A30, 0x0000000000000000 offset, 3 functions] `.?AVGraphPhysicsStepListener@?A0xdc993fb5@@` -`class BSAnimationGraphLoadScrapper`: VTable [0x0000000003051A98, 0x0000000000000000 offset, 2 functions] `.?AVBSAnimationGraphLoadScrapper@@` -`class hkaSkeleton`: VTable [0x0000000003053148, 0x0000000000000000 offset, 3 functions] `.?AVhkaSkeleton@@` -`class BSIRagdollDriver`: VTable [0x0000000003053170, 0x0000000000000000 offset, 14 functions] `.?AVBSIRagdollDriver@@` -`class BShkbAnimationGraph`: VTable [0x0000000003053200, 0x0000000000000000 offset, 14 functions] `.?AVBShkbAnimationGraph@@` -`class `anonymous namespace'::SynchronizedClipNameVisitor`: VTable [0x0000000003053370, 0x0000000000000000 offset, 2 functions] `.?AVSynchronizedClipNameVisitor@?A0xdc993fb5@@` -`class `anonymous namespace'::BSHashMapEventFindFunctor`: VTable [0x0000000003053F90, 0x0000000000000000 offset, 2 functions] `.?AVBSHashMapEventFindFunctor@?A0xdc993fb5@@` -`class BSAnimationGraphManager`: VTable [0x0000000003055D70, 0x0000000000000000 offset, 2 functions] `.?AVBSAnimationGraphManager@@` -`class IPostAnimationChannelUpdateFunctor`: VTable [0x0000000003055D90, 0x0000000000000000 offset, 2 functions] `.?AVIPostAnimationChannelUpdateFunctor@@` -`class BSTMessageQueue >`: VTable [0x0000000003055DB0, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@V?$BSTSmartPointer@VBSAnimationGraphManager@@UBSTSmartPointerIntrusiveRefCount@@@@@@` -`class BSTCommonMessageQueue >`: VTable [0x0000000003055DF0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@V?$BSTSmartPointer@VBSAnimationGraphManager@@UBSTSmartPointerIntrusiveRefCount@@@@@@` -`class BSTCommonStaticMessageQueue,128>`: VTable [0x0000000003055E40, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonStaticMessageQueue@V?$BSTSmartPointer@VBSAnimationGraphManager@@UBSTSmartPointerIntrusiveRefCount@@@@$0IA@@@` -`class `anonymous namespace'::DeferredUpdate`: VTable [0x0000000003055E90, 0x0000000000000000 offset, 7 functions] `.?AVDeferredUpdate@?A0x1e9e53e4@@` -`class BSISpeedSamplerDB`: VTable [0x0000000003056930, 0x0000000000000000 offset, 2 functions] `.?AVBSISpeedSamplerDB@@` -`class BSSpeedSamplerDBManager`: VTable [0x0000000003056950, 0x0000000000000000 offset, 2 functions] `.?AVBSSpeedSamplerDBManager@@` -`struct IBSTCreator`: VTable [0x00000000030569C0, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBShkNonTransformController@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030569E8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBShkVisibilityController@@VBShkNonTransformController@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003056A10, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBShkVisibilityController@@VBShkNonTransformController@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VBShkNonTransformController@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003056A38, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBShkVisibilityController@@V?$BSTCreateFactoryManager@VBSFixedString@@VBShkNonTransformController@@$0CA@@@@@` -`class BShkNonTransformController`: VTable [0x0000000003056A68, 0x0000000000000000 offset, 4 functions] `.?AVBShkNonTransformController@@` -`class BShkFloatController`: VTable [0x0000000003056A98, 0x0000000000000000 offset, 4 functions] `.?AVBShkFloatController@@` -`class BShkVisibilityController`: VTable [0x0000000003056AC8, 0x0000000000000000 offset, 4 functions] `.?AVBShkVisibilityController@@` -`class hkaMirroredSkeleton`: VTable [0x0000000003056D00, 0x0000000000000000 offset, 3 functions] `.?AVhkaMirroredSkeleton@@` -`class hkaRagdollInstance`: VTable [0x0000000003056FE0, 0x0000000000000000 offset, 4 functions] `.?AVhkaRagdollInstance@@` -`class hkaAnimatedReferenceFrame`: VTable [0x0000000003058BC0, 0x0000000000000000 offset, 6 functions] `.?AVhkaAnimatedReferenceFrame@@` -`class hkaAnimation`: VTable [0x0000000003058C08, 0x0000000000000000 offset, 16 functions] `.?AVhkaAnimation@@` -`class hkaInterleavedUncompressedAnimation`: VTable [0x0000000003058DB0, 0x0000000000000000 offset, 16 functions] `.?AVhkaInterleavedUncompressedAnimation@@` -`class hkaQuantizedAnimation`: VTable [0x0000000003058EB8, 0x0000000000000000 offset, 16 functions] `.?AVhkaQuantizedAnimation@@` -`class hkaSplineCompressedAnimation`: VTable [0x0000000003059010, 0x0000000000000000 offset, 16 functions] `.?AVhkaSplineCompressedAnimation@@` -`class hkaAnimationPreviewColorContainer`: VTable [0x0000000003059280, 0x0000000000000000 offset, 3 functions] `.?AVhkaAnimationPreviewColorContainer@@` -`class hkaDefaultAnimatedReferenceFrame`: VTable [0x00000000030595B0, 0x0000000000000000 offset, 6 functions] `.?AVhkaDefaultAnimatedReferenceFrame@@` -`class hkaFootstepAnalysisInfoContainer`: VTable [0x0000000003059668, 0x0000000000000000 offset, 3 functions] `.?AVhkaFootstepAnalysisInfoContainer@@` -`class hkaBoneAttachment`: VTable [0x0000000003059740, 0x0000000000000000 offset, 3 functions] `.?AVhkaBoneAttachment@@` -`class hkaAnimationContainer`: VTable [0x0000000003059808, 0x0000000000000000 offset, 3 functions] `.?AVhkaAnimationContainer@@` -`class hkpCollisionDispatcher`: VTable [0x000000000305B1F0, 0x0000000000000000 offset, 3 functions] `.?AVhkpCollisionDispatcher@@` -`class hkpNullBroadPhaseListener`: VTable [0x000000000305B400, 0x0000000000000000 offset, 3 functions] `.?AVhkpNullBroadPhaseListener@@` -`class hkpNullBroadPhaseListener`: VTable [0x000000000305B428, 0x0000000000000010 offset, 3 functions] `.?AVhkpNullBroadPhaseListener@@` -`class hkpCollisionAgent`: VTable [0x000000000305B450, 0x0000000000000000 offset, 14 functions] `.?AVhkpCollisionAgent@@` -`class hkpNullAgent`: VTable [0x000000000305B4E0, 0x0000000000000000 offset, 14 functions] `.?AVhkpNullAgent@@` -`class hkp3AxisSweep`: VTable [0x000000000305B628, 0x0000000000000000 offset, 31 functions] `.?AVhkp3AxisSweep@@` -`class hkpBroadPhase`: VTable [0x000000000305E430, 0x0000000000000000 offset, 31 functions] `.?AVhkpBroadPhase@@` -`class hkTraceStream`: VTable [0x000000000305E630, 0x0000000000000000 offset, 3 functions] `.?AVhkTraceStream@@` -`class hkpPoweredChainData`: VTable [0x000000000305EBB0, 0x0000000000000000 offset, 20 functions] `.?AVhkpPoweredChainData@@` -`class hkpMapPointsToSubShapeContactMgr`: VTable [0x000000000305ECF8, 0x0000000000000000 offset, 10 functions] `.?AVhkpMapPointsToSubShapeContactMgr@@` -`class hkpConvexVerticesShape`: VTable [0x000000000305EFA8, 0x0000000000000000 offset, 18 functions] `.?AVhkpConvexVerticesShape@@` -`class BSiStateTaggingUtils::BSiStateTaggingStateListener`: VTable [0x000000000305F7A0, 0x0000000000000000 offset, 7 functions] `.?AVBSiStateTaggingStateListener@BSiStateTaggingUtils@@` -`class `anonymous namespace'::iStateTaggingFunctor`: VTable [0x000000000305F7F0, 0x0000000000000000 offset, 7 functions] `.?AViStateTaggingFunctor@?A0x372d61e9@@` -`class hkResource`: VTable [0x000000000305F860, 0x0000000000000000 offset, 8 functions] `.?AVhkResource@@` -`struct `anonymous namespace'::hkNativeResource`: VTable [0x000000000305F8B8, 0x0000000000000000 offset, 8 functions] `.?AUhkNativeResource@?A0xfb16bef9@@` -`class BShkbUtils::SaveDataRestoreFunctor`: VTable [0x00000000030601C0, 0x0000000000000000 offset, 7 functions] `.?AVSaveDataRestoreFunctor@BShkbUtils@@` -`struct hkpConstraintUtils::CollectConstraintsFilter`: VTable [0x00000000030608A0, 0x0000000000000000 offset, 2 functions] `.?AUCollectConstraintsFilter@hkpConstraintUtils@@` -`struct hkpEaseConstraintsAction::CollectSupportedConstraints`: VTable [0x00000000030608C0, 0x0000000000000000 offset, 2 functions] `.?AUCollectSupportedConstraints@hkpEaseConstraintsAction@@` -`class hkpEaseConstraintsAction`: VTable [0x00000000030608E0, 0x0000000000000000 offset, 8 functions] `.?AVhkpEaseConstraintsAction@@` -`class hkpEasePenetrationAction`: VTable [0x0000000003060B68, 0x0000000000000000 offset, 8 functions] `.?AVhkpEasePenetrationAction@@` -`class hkxAnimatedFloat`: VTable [0x00000000030639B0, 0x0000000000000000 offset, 3 functions] `.?AVhkxAnimatedFloat@@` -`class hkxAnimatedMatrix`: VTable [0x0000000003063A08, 0x0000000000000000 offset, 3 functions] `.?AVhkxAnimatedMatrix@@` -`class hkxAnimatedQuaternion`: VTable [0x0000000003063A60, 0x0000000000000000 offset, 3 functions] `.?AVhkxAnimatedQuaternion@@` -`class hkxAnimatedVector`: VTable [0x0000000003063AC8, 0x0000000000000000 offset, 3 functions] `.?AVhkxAnimatedVector@@` -`class hkxSparselyAnimatedBool`: VTable [0x0000000003063B40, 0x0000000000000000 offset, 3 functions] `.?AVhkxSparselyAnimatedBool@@` -`class hkxSparselyAnimatedInt`: VTable [0x0000000003063B68, 0x0000000000000000 offset, 3 functions] `.?AVhkxSparselyAnimatedInt@@` -`class hkxEnum`: VTable [0x0000000003063B90, 0x0000000000000000 offset, 3 functions] `.?AVhkxEnum@@` -`class hkxSparselyAnimatedEnum`: VTable [0x0000000003063BB8, 0x0000000000000000 offset, 3 functions] `.?AVhkxSparselyAnimatedEnum@@` -`class hkxSparselyAnimatedString`: VTable [0x0000000003063BE0, 0x0000000000000000 offset, 3 functions] `.?AVhkxSparselyAnimatedString@@` -`class hkxAttributeHolder`: VTable [0x0000000003063C38, 0x0000000000000000 offset, 3 functions] `.?AVhkxAttributeHolder@@` -`class hkxCamera`: VTable [0x0000000003063DD8, 0x0000000000000000 offset, 3 functions] `.?AVhkxCamera@@` -`class hkxNode`: VTable [0x0000000003063E90, 0x0000000000000000 offset, 3 functions] `.?AVhkxNode@@` -`class hkxLight`: VTable [0x0000000003063F18, 0x0000000000000000 offset, 3 functions] `.?AVhkxLight@@` -`class hkxMaterial`: VTable [0x0000000003063F68, 0x0000000000000000 offset, 3 functions] `.?AVhkxMaterial@@` -`class hkxMaterialEffect`: VTable [0x0000000003064038, 0x0000000000000000 offset, 3 functions] `.?AVhkxMaterialEffect@@` -`class hkxMaterialShader`: VTable [0x0000000003064090, 0x0000000000000000 offset, 3 functions] `.?AVhkxMaterialShader@@` -`class hkxTextureFile`: VTable [0x0000000003064168, 0x0000000000000000 offset, 3 functions] `.?AVhkxTextureFile@@` -`class hkxTextureInplace`: VTable [0x00000000030641C0, 0x0000000000000000 offset, 3 functions] `.?AVhkxTextureInplace@@` -`class hkxEdgeSelectionChannel`: VTable [0x0000000003064218, 0x0000000000000000 offset, 3 functions] `.?AVhkxEdgeSelectionChannel@@` -`class hkxTriangleSelectionChannel`: VTable [0x0000000003064280, 0x0000000000000000 offset, 3 functions] `.?AVhkxTriangleSelectionChannel@@` -`class hkxVertexFloatDataChannel`: VTable [0x00000000030642F8, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexFloatDataChannel@@` -`class hkxVertexIntDataChannel`: VTable [0x0000000003064360, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexIntDataChannel@@` -`class hkxVertexSelectionChannel`: VTable [0x00000000030643C8, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexSelectionChannel@@` -`class hkxVertexVectorDataChannel`: VTable [0x0000000003064430, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexVectorDataChannel@@` -`class hkxIndexBuffer`: VTable [0x00000000030644A0, 0x0000000000000000 offset, 3 functions] `.?AVhkxIndexBuffer@@` -`class hkxMeshSection`: VTable [0x0000000003064530, 0x0000000000000000 offset, 3 functions] `.?AVhkxMeshSection@@` -`class hkxMesh::UserChannelInfo`: VTable [0x0000000003064558, 0x0000000000000000 offset, 3 functions] `.?AVUserChannelInfo@hkxMesh@@` -`class hkxNodeSelectionSet`: VTable [0x0000000003064748, 0x0000000000000000 offset, 3 functions] `.?AVhkxNodeSelectionSet@@` -`class hkxSkinBinding`: VTable [0x0000000003064770, 0x0000000000000000 offset, 3 functions] `.?AVhkxSkinBinding@@` -`class hkxScene`: VTable [0x0000000003064798, 0x0000000000000000 offset, 3 functions] `.?AVhkxScene@@` -`class hkaMeshBinding`: VTable [0x0000000003064D30, 0x0000000000000000 offset, 3 functions] `.?AVhkaMeshBinding@@` -`class hkaFootstepAnalysisInfo`: VTable [0x0000000003064EB8, 0x0000000000000000 offset, 3 functions] `.?AVhkaFootstepAnalysisInfo@@` -`class hkpPredGskfAgent`: VTable [0x0000000003065FD0, 0x0000000000000000 offset, 14 functions] `.?AVhkpPredGskfAgent@@` -`class hkpIterativeLinearCastAgent`: VTable [0x0000000003066068, 0x0000000000000000 offset, 14 functions] `.?AVhkpIterativeLinearCastAgent@@` -`class hkpBoxBoxAgent`: VTable [0x00000000030660F8, 0x0000000000000000 offset, 14 functions] `.?AVhkpBoxBoxAgent@@` -`class hkpSymmetricAgentFlipCollector`: VTable [0x0000000003066198, 0x0000000000000000 offset, 3 functions] `.?AVhkpSymmetricAgentFlipCollector@@` -`class hkpSymmetricAgentFlipCastCollector`: VTable [0x00000000030661C0, 0x0000000000000000 offset, 3 functions] `.?AVhkpSymmetricAgentFlipCastCollector@@` -`class hkpSymmetricAgentFlipBodyCollector`: VTable [0x00000000030661E8, 0x0000000000000000 offset, 3 functions] `.?AVhkpSymmetricAgentFlipBodyCollector@@` -`class hkpBvAgent`: VTable [0x0000000003066210, 0x0000000000000000 offset, 14 functions] `.?AVhkpBvAgent@@` -`class hkpFlagCdBodyPairCollector`: VTable [0x00000000030662A0, 0x0000000000000000 offset, 3 functions] `.?AVhkpFlagCdBodyPairCollector@@` -`class hkpSimpleClosestContactCollector`: VTable [0x00000000030662C8, 0x0000000000000000 offset, 3 functions] `.?AVhkpSimpleClosestContactCollector@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x00000000030662F0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpBvAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003066380, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpBvAgent@@@@` -`class hkpBvTreeAgent`: VTable [0x0000000003066448, 0x0000000000000000 offset, 14 functions] `.?AVhkpBvTreeAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x00000000030664D8, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpBvTreeAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003066568, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpBvTreeAgent@@@@` -`class hkpBvTreeStreamAgent`: VTable [0x0000000003066630, 0x0000000000000000 offset, 14 functions] `.?AVhkpBvTreeStreamAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x00000000030666C0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpBvTreeStreamAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003066750, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpBvTreeStreamAgent@@@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x00000000030667E0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpShapeCollectionAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003066870, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpShapeCollectionAgent@@@@` -`class hkpMoppAgent`: VTable [0x0000000003066900, 0x0000000000000000 offset, 14 functions] `.?AVhkpMoppAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003066990, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpMoppAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003066A20, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpMoppAgent@@@@` -`class hkpPhantomAgent`: VTable [0x0000000003066AB8, 0x0000000000000000 offset, 14 functions] `.?AVhkpPhantomAgent@@` -`class hkpSphereSphereAgent`: VTable [0x0000000003066B48, 0x0000000000000000 offset, 14 functions] `.?AVhkpSphereSphereAgent@@` -`class hkpSphereCapsuleAgent`: VTable [0x0000000003066BF0, 0x0000000000000000 offset, 14 functions] `.?AVhkpSphereCapsuleAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003066C80, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpSphereCapsuleAgent@@@@` -`class hkpSphereTriangleAgent`: VTable [0x0000000003066D28, 0x0000000000000000 offset, 14 functions] `.?AVhkpSphereTriangleAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003066DB8, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpSphereTriangleAgent@@@@` -`class hkpCapsuleCapsuleAgent`: VTable [0x0000000003066E58, 0x0000000000000000 offset, 14 functions] `.?AVhkpCapsuleCapsuleAgent@@` -`class hkpCapsuleTriangleAgent`: VTable [0x0000000003066EF8, 0x0000000000000000 offset, 14 functions] `.?AVhkpCapsuleTriangleAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003066F88, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpCapsuleTriangleAgent@@@@` -`class hkpSphereBoxAgent`: VTable [0x0000000003067040, 0x0000000000000000 offset, 14 functions] `.?AVhkpSphereBoxAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x00000000030670D0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpSphereBoxAgent@@@@` -`class hkpMultiSphereTriangleAgent`: VTable [0x0000000003067170, 0x0000000000000000 offset, 14 functions] `.?AVhkpMultiSphereTriangleAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003067200, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpMultiSphereTriangleAgent@@@@` -`class hkpMultiRayConvexAgent`: VTable [0x00000000030672C8, 0x0000000000000000 offset, 14 functions] `.?AVhkpMultiRayConvexAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003067358, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpMultiRayConvexAgent@@@@` -`class hkpTransformAgent`: VTable [0x0000000003067420, 0x0000000000000000 offset, 14 functions] `.?AVhkpTransformAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x00000000030674B0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpTransformAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003067540, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpTransformAgent@@@@` -`class hkpListAgent`: VTable [0x00000000030675F0, 0x0000000000000000 offset, 14 functions] `.?AVhkpListAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003067680, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpListAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003067710, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpListAgent@@@@` -`class hkpConvexListAgent`: VTable [0x00000000030677A0, 0x0000000000000000 offset, 14 functions] `.?AVhkpConvexListAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003067830, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpConvexListAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x00000000030678C0, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpConvexListAgent@@@@` -`class hkpShapeCollectionAgent`: VTable [0x00000000030679A0, 0x0000000000000000 offset, 14 functions] `.?AVhkpShapeCollectionAgent@@` -`class hkpMultiSphereAgent`: VTable [0x0000000003067A48, 0x0000000000000000 offset, 14 functions] `.?AVhkpMultiSphereAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003067AD8, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpMultiSphereAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003067B68, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpMultiSphereAgent@@@@` -`class hkIstream`: VTable [0x0000000003067DD0, 0x0000000000000000 offset, 3 functions] `.?AVhkIstream@@` -`class hkTagfileWriter::AddDataObjectListener`: VTable [0x0000000003067DF8, 0x0000000000000000 offset, 4 functions] `.?AVAddDataObjectListener@hkTagfileWriter@@` -`class hkTagfileWriter`: VTable [0x0000000003067E28, 0x0000000000000000 offset, 4 functions] `.?AVhkTagfileWriter@@` -`class hkTagfileReader`: VTable [0x0000000003067E58, 0x0000000000000000 offset, 4 functions] `.?AVhkTagfileReader@@` -`class hkBinaryTagfileWriter`: VTable [0x0000000003067E88, 0x0000000000000000 offset, 4 functions] `.?AVhkBinaryTagfileWriter@@` -`class hkXmlTagfileReader`: VTable [0x0000000003067EB8, 0x0000000000000000 offset, 4 functions] `.?AVhkXmlTagfileReader@@` -`class hkXmlTagfileWriter`: VTable [0x0000000003067EE8, 0x0000000000000000 offset, 4 functions] `.?AVhkXmlTagfileWriter@@` -`class `anonymous namespace'::ForwardingPackfileListerer`: VTable [0x0000000003068070, 0x0000000000000000 offset, 4 functions] `.?AVForwardingPackfileListerer@?A0x4076b7e2@@` -`class hkpArrayAction`: VTable [0x0000000003068220, 0x0000000000000000 offset, 8 functions] `.?AVhkpArrayAction@@` -`class hkAlignSceneToNodeOptions`: VTable [0x0000000003068278, 0x0000000000000000 offset, 3 functions] `.?AVhkAlignSceneToNodeOptions@@` -`class hkxEnvironment`: VTable [0x00000000030682A0, 0x0000000000000000 offset, 3 functions] `.?AVhkxEnvironment@@` -`class hkxMaterialShaderSet`: VTable [0x00000000030685F8, 0x0000000000000000 offset, 3 functions] `.?AVhkxMaterialShaderSet@@` -`class hkxVertexBuffer`: VTable [0x0000000003068620, 0x0000000000000000 offset, 3 functions] `.?AVhkxVertexBuffer@@` -`class hkxMesh`: VTable [0x0000000003068648, 0x0000000000000000 offset, 3 functions] `.?AVhkxMesh@@` -`class hkpGskBaseAgent`: VTable [0x0000000003068A90, 0x0000000000000000 offset, 14 functions] `.?AVhkpGskBaseAgent@@` -`class hkpGskfAgent`: VTable [0x0000000003068B40, 0x0000000000000000 offset, 14 functions] `.?AVhkpGskfAgent@@` -`class hkMemoryStreamReader`: VTable [0x0000000003068BF0, 0x0000000000000000 offset, 12 functions] `.?AVhkMemoryStreamReader@@` -`class hkPackfileWriter`: VTable [0x0000000003068C90, 0x0000000000000000 offset, 11 functions] `.?AVhkPackfileWriter@@` -`class `anonymous namespace'::InternedStringRefCounted`: VTable [0x0000000003068F78, 0x0000000000000000 offset, 3 functions] `.?AVInternedStringRefCounted@?A0x860cb2af@@` -`class hkDataWorld`: VTable [0x0000000003068FA0, 0x0000000000000000 offset, 23 functions] `.?AVhkDataWorld@@` -`class hkDataWorldDict`: VTable [0x0000000003069088, 0x0000000000000000 offset, 23 functions] `.?AVhkDataWorldDict@@` -`class hkDataRefCounted`: VTable [0x0000000003069170, 0x0000000000000000 offset, 1 functions] `.?AVhkDataRefCounted@@` -`class hkDataArrayImpl`: VTable [0x0000000003069188, 0x0000000000000000 offset, 37 functions] `.?AVhkDataArrayImpl@@` -`class hkDataClassImpl`: VTable [0x00000000030692F8, 0x0000000000000000 offset, 12 functions] `.?AVhkDataClassImpl@@` -`class hkDataObjectImpl`: VTable [0x0000000003069378, 0x0000000000000000 offset, 25 functions] `.?AVhkDataObjectImpl@@` -`class hkDataClassDict`: VTable [0x0000000003069478, 0x0000000000000000 offset, 12 functions] `.?AVhkDataClassDict@@` -`class hkDataObjectDict`: VTable [0x00000000030694F8, 0x0000000000000000 offset, 25 functions] `.?AVhkDataObjectDict@@` -`struct VariableIntArrayImplementation`: VTable [0x00000000030695F8, 0x0000000000000000 offset, 38 functions] `.?AUVariableIntArrayImplementation@@` -`struct BasicArrayImplementation`: VTable [0x0000000003069818, 0x0000000000000000 offset, 37 functions] `.?AU?$BasicArrayImplementation@E$00@@` -`struct ByteArrayImplementation`: VTable [0x0000000003069988, 0x0000000000000000 offset, 37 functions] `.?AUByteArrayImplementation@@` -`struct ArrayOfTuplesImplementation::View`: VTable [0x0000000003069AF8, 0x0000000000000000 offset, 37 functions] `.?AUView@ArrayOfTuplesImplementation@@` -`struct ArrayOfTuplesImplementation`: VTable [0x0000000003069C68, 0x0000000000000000 offset, 37 functions] `.?AUArrayOfTuplesImplementation@@` -`struct BasicArrayImplementation`: VTable [0x0000000003069DD8, 0x0000000000000000 offset, 37 functions] `.?AU?$BasicArrayImplementation@M$02@@` -`struct RealArrayImplementation`: VTable [0x0000000003069F48, 0x0000000000000000 offset, 37 functions] `.?AURealArrayImplementation@@` -`struct VecArrayImplementation`: VTable [0x000000000306A0B8, 0x0000000000000000 offset, 37 functions] `.?AUVecArrayImplementation@@` -`struct BasicArrayImplementation`: VTable [0x000000000306A228, 0x0000000000000000 offset, 37 functions] `.?AU?$BasicArrayImplementation@PEAVhkDataObjectImpl@@$07@@` -`struct PointerArrayImplementation`: VTable [0x000000000306A398, 0x0000000000000000 offset, 37 functions] `.?AUPointerArrayImplementation@@` -`struct BasicArrayImplementation`: VTable [0x000000000306A508, 0x0000000000000000 offset, 37 functions] `.?AU?$BasicArrayImplementation@PEAD$09@@` -`struct CstringArrayImplementation`: VTable [0x000000000306A678, 0x0000000000000000 offset, 37 functions] `.?AUCstringArrayImplementation@@` -`struct StructArrayImplementation::Object`: VTable [0x000000000306A7E8, 0x0000000000000000 offset, 31 functions] `.?AUObject@StructArrayImplementation@@` -`struct StructArrayImplementation`: VTable [0x000000000306A920, 0x0000000000000000 offset, 37 functions] `.?AUStructArrayImplementation@@` -`class hkDataWorldNative`: VTable [0x000000000306AB98, 0x0000000000000000 offset, 23 functions] `.?AVhkDataWorldNative@@` -`class hkDataClassNative`: VTable [0x000000000306AD30, 0x0000000000000000 offset, 12 functions] `.?AVhkDataClassNative@@` -`class hkDataArrayNative`: VTable [0x000000000306ADB0, 0x0000000000000000 offset, 37 functions] `.?AVhkDataArrayNative@@` -`class hkDataObjectNative`: VTable [0x000000000306AF20, 0x0000000000000000 offset, 25 functions] `.?AVhkDataObjectNative@@` -`class hkBinaryTagfileReader`: VTable [0x000000000306B158, 0x0000000000000000 offset, 4 functions] `.?AVhkBinaryTagfileReader@@` -`class hkVersionPatchManager`: VTable [0x000000000306B638, 0x0000000000000000 offset, 3 functions] `.?AVhkVersionPatchManager@@` -`class hkSubStreamWriter`: VTable [0x000000000306B840, 0x0000000000000000 offset, 9 functions] `.?AVhkSubStreamWriter@@` -`class hkBinaryPackfileWriter`: VTable [0x000000000306B8A0, 0x0000000000000000 offset, 11 functions] `.?AVhkBinaryPackfileWriter@@` -`class hkPooledAllocator`: VTable [0x000000000306B918, 0x0000000000000000 offset, 11 functions] `.?AVhkPooledAllocator@@` -`class hkTempDetectAllocator`: VTable [0x000000000306B990, 0x0000000000000000 offset, 11 functions] `.?AVhkTempDetectAllocator@@` -`class hkSerializeDeprecated`: VTable [0x000000000306BD10, 0x0000000000000000 offset, 7 functions] `.?AVhkSerializeDeprecated@@` -`class hkOffsetOnlyStreamWriter`: VTable [0x000000000306BFF8, 0x0000000000000000 offset, 9 functions] `.?AVhkOffsetOnlyStreamWriter@@` -`class hkObjectWriter`: VTable [0x000000000306C058, 0x0000000000000000 offset, 5 functions] `.?AVhkObjectWriter@@` -`class hkPlatformObjectWriter::Cache`: VTable [0x000000000306C098, 0x0000000000000000 offset, 3 functions] `.?AVCache@hkPlatformObjectWriter@@` -`class hkPlatformObjectWriter`: VTable [0x000000000306C0C0, 0x0000000000000000 offset, 5 functions] `.?AVhkPlatformObjectWriter@@` -`class hkPackfileData`: VTable [0x000000000306C100, 0x0000000000000000 offset, 8 functions] `.?AVhkPackfileData@@` -`class hkObjectResource`: VTable [0x000000000306C188, 0x0000000000000000 offset, 9 functions] `.?AVhkObjectResource@@` -`class hkIArchive`: VTable [0x000000000306C1E8, 0x0000000000000000 offset, 3 functions] `.?AVhkIArchive@@` -`class hkParserBuffer`: VTable [0x000000000306FFA0, 0x0000000000000000 offset, 3 functions] `.?AVhkParserBuffer@@` -`class hkXmlStreamParser`: VTable [0x000000000306FFC8, 0x0000000000000000 offset, 3 functions] `.?AVhkXmlStreamParser@@` -`class hkXmlLexAnalyzer`: VTable [0x00000000030701F8, 0x0000000000000000 offset, 3 functions] `.?AVhkXmlLexAnalyzer@@` -`class `anonymous namespace'::AudioLoadTask`: VTable [0x0000000003071820, 0x0000000000000000 offset, 13 functions] `.?AVAudioLoadTask@?A0x4a0cef07@@` -`class AudioLoadForPlaybackTask`: VTable [0x00000000030719A0, 0x0000000000000000 offset, 13 functions] `.?AVAudioLoadForPlaybackTask@@` -`class AudioLoadToCacheTask`: VTable [0x0000000003071A28, 0x0000000000000000 offset, 13 functions] `.?AVAudioLoadToCacheTask@@` -`class BSAudioManagerThread`: VTable [0x0000000003071AB0, 0x0000000000000000 offset, 3 functions] `.?AVBSAudioManagerThread@@` -`class BSAudio`: VTable [0x0000000003071F80, 0x0000000000000000 offset, 12 functions] `.?AVBSAudio@@` -`class BSGameSound`: VTable [0x0000000003072150, 0x0000000000000000 offset, 25 functions] `.?AVBSGameSound@@` -`class BSNullImplAudio`: VTable [0x0000000003072350, 0x0000000000000000 offset, 12 functions] `.?AVBSNullImplAudio@@` -`struct IBSTCreator`: VTable [0x00000000030723D0, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSAudio@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000030723F8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBSNullImplAudio@@VBSAudio@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003072420, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBSNullImplAudio@@VBSAudio@@@@V?$BSTCreateFactoryManager@VBSFixedStringCI@@VBSAudio@@$03@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003072448, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBSNullImplAudio@@V?$BSTCreateFactoryManager@VBSFixedStringCI@@VBSAudio@@$03@@@@` -`class BSAudioListener`: VTable [0x00000000030727A0, 0x0000000000000000 offset, 6 functions] `.?AVBSAudioListener@@` -`class BSNullImplAudioListener`: VTable [0x00000000030727E8, 0x0000000000000000 offset, 6 functions] `.?AVBSNullImplAudioListener@@` -`class BSNullImplGameSound`: VTable [0x0000000003072830, 0x0000000000000000 offset, 25 functions] `.?AVBSNullImplGameSound@@` -`struct `anonymous namespace'::ReverbModCallback`: VTable [0x0000000003072B28, 0x0000000000000000 offset, 3 functions] `.?AUReverbModCallback@?A0x1f1f49ee@@` -`class BSXAudio2Audio`: VTable [0x0000000003072C40, 0x0000000000000000 offset, 12 functions] `.?AVBSXAudio2Audio@@` -`class `anonymous namespace'::MonitorAPO`: VTable [0x0000000003072D08, 0x0000000000000000 offset, 15 functions] `.?AVMonitorAPO@?A0x1f1f49ee@@` -`struct BSTDerivedCreator`: VTable [0x0000000003072E30, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBSXAudio2Audio@@VBSAudio@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x0000000003072E58, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBSXAudio2Audio@@VBSAudio@@@@V?$BSTCreateFactoryManager@VBSFixedStringCI@@VBSAudio@@$03@@@@` -`struct AutoRegisterCreator >`: VTable [0x0000000003072E80, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBSXAudio2Audio@@V?$BSTCreateFactoryManager@VBSFixedStringCI@@VBSAudio@@$03@@@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000003072F80, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0IA@@@@@` -`class BSXAudio2AudioListener`: VTable [0x0000000003072FD8, 0x0000000000000000 offset, 7 functions] `.?AVBSXAudio2AudioListener@@` -`class BSXAudio2GameSound`: VTable [0x0000000003073338, 0x0000000000000000 offset, 25 functions] `.?AVBSXAudio2GameSound@@` -`class BSXAudio2GameSound`: VTable [0x0000000003073438, 0x00000000000000D0 offset, 7 functions] `.?AVBSXAudio2GameSound@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000030738D0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0CE@@@@@` -`class BSAudioDataSrc`: VTable [0x0000000003073C60, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAudioDataSrc@VBSXAudio2DataSrc@@@@` -`class BSXAudio2DataSrc`: VTable [0x0000000003073C78, 0x0000000000000000 offset, 1 functions] `.?AVBSXAudio2DataSrc@@` -`class BSCoreMessage`: VTable [0x00000000030742A8, 0x0000000000000000 offset, 5 functions] `.?AVBSCoreMessage@@` -`class NullMemoryTracker`: VTable [0x0000000003074390, 0x0000000000000000 offset, 8 functions] `.?AVNullMemoryTracker@@` -`class IMemoryTracker`: VTable [0x0000000003074400, 0x0000000000000000 offset, 8 functions] `.?AVIMemoryTracker@@` -`class IMemoryManagerFile`: VTable [0x0000000003074968, 0x0000000000000000 offset, 5 functions] `.?AVIMemoryManagerFile@@` -`class IMemoryManagerFileFactory`: VTable [0x00000000030749A8, 0x0000000000000000 offset, 4 functions] `.?AVIMemoryManagerFileFactory@@` -`class MemoryHeap`: VTable [0x00000000030757F8, 0x0000000000000000 offset, 34 functions] `.?AVMemoryHeap@@` -`class UnitTestMemoryHeap`: VTable [0x0000000003075948, 0x0000000000000000 offset, 34 functions] `.?AVUnitTestMemoryHeap@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000003075DC8, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0M@@@@@` -`class ScrapHeap`: VTable [0x0000000003075E98, 0x0000000000000000 offset, 17 functions] `.?AVScrapHeap@@` -`class BSThread`: VTable [0x0000000003076560, 0x0000000000000000 offset, 3 functions] `.?AVBSThread@@` -`class CompactingStore::MoveCallback`: VTable [0x00000000030766D0, 0x0000000000000000 offset, 2 functions] `.?AVMoveCallback@CompactingStore@@` -`class CompactingStore::NoopMoveCallback`: VTable [0x0000000003076708, 0x0000000000000000 offset, 2 functions] `.?AVNoopMoveCallback@CompactingStore@@` -`class CompactingStore::Store`: VTable [0x0000000003076A68, 0x0000000000000000 offset, 14 functions] `.?AVStore@CompactingStore@@` -`class IMemoryHeap`: VTable [0x0000000003077360, 0x0000000000000000 offset, 28 functions] `.?AVIMemoryHeap@@` -`class ZeroOverheadHeap`: VTable [0x0000000003077478, 0x0000000000000000 offset, 28 functions] `.?AVZeroOverheadHeap@@` -`class UnitTestZeroOverheadHeap`: VTable [0x0000000003077590, 0x0000000000000000 offset, 28 functions] `.?AVUnitTestZeroOverheadHeap@@` -`class IMemoryStoreBase::IBlockWalker`: VTable [0x00000000030777C0, 0x0000000000000000 offset, 6 functions] `.?AVIBlockWalker@IMemoryStoreBase@@` -`class IMemoryStoreBase`: VTable [0x0000000003077808, 0x0000000000000000 offset, 14 functions] `.?AVIMemoryStoreBase@@` -`class IMemoryStore`: VTable [0x0000000003077898, 0x0000000000000000 offset, 17 functions] `.?AVIMemoryStore@@` -`class BSSmallBlockAllocatorUtil::UserPoolBase`: VTable [0x0000000003077BA8, 0x0000000000000000 offset, 3 functions] `.?AVUserPoolBase@BSSmallBlockAllocatorUtil@@` -`class BSSmallBlockAllocator`: VTable [0x0000000003077BD0, 0x0000000000000000 offset, 17 functions] `.?AVBSSmallBlockAllocator@@` -`class BSStepThread`: VTable [0x0000000003078530, 0x0000000000000000 offset, 4 functions] `.?AVBSStepThread@@` -`class BSThreadEvent::`anonymous namespace'::Source`: VTable [0x0000000003078560, 0x0000000000000000 offset, 1 functions] `.?AVSource@?A0x7770017e@BSThreadEvent@@` -`class MemoryTrashing::TrashingEventSource`: VTable [0x0000000003078830, 0x0000000000000000 offset, 1 functions] `.?AVTrashingEventSource@MemoryTrashing@@` -`class AbstractHeap`: VTable [0x0000000003078C70, 0x0000000000000000 offset, 34 functions] `.?AVAbstractHeap@@` -`class BSWin32GamerProfile`: VTable [0x000000000307ADF8, 0x0000000000000000 offset, 6 functions] `.?AVBSWin32GamerProfile@@` -`class BSTEventSink`: VTable [0x000000000307B080, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@VBSSaveDataEvent@@@@` -`class BSGamerProfile`: VTable [0x000000000307B0A0, 0x0000000000000000 offset, 6 functions] `.?AVBSGamerProfile@@` -`class InputEvent`: VTable [0x000000000307BA68, 0x0000000000000000 offset, 3 functions] `.?AVInputEvent@@` -`class IDEvent`: VTable [0x000000000307BA90, 0x0000000000000000 offset, 3 functions] `.?AVIDEvent@@` -`class ButtonEvent`: VTable [0x000000000307BAB8, 0x0000000000000000 offset, 3 functions] `.?AVButtonEvent@@` -`class MouseMoveEvent`: VTable [0x000000000307BD38, 0x0000000000000000 offset, 3 functions] `.?AVMouseMoveEvent@@` -`class ThumbstickEvent`: VTable [0x000000000307BD60, 0x0000000000000000 offset, 3 functions] `.?AVThumbstickEvent@@` -`class CharEvent`: VTable [0x000000000307BD88, 0x0000000000000000 offset, 3 functions] `.?AVCharEvent@@` -`class DeviceConnectEvent`: VTable [0x000000000307BDB0, 0x0000000000000000 offset, 3 functions] `.?AVDeviceConnectEvent@@` -`class KinectEvent`: VTable [0x000000000307BDD8, 0x0000000000000000 offset, 3 functions] `.?AVKinectEvent@@` -`class BSIInputDevice`: VTable [0x000000000307C430, 0x0000000000000000 offset, 9 functions] `.?AVBSIInputDevice@@` -`class BSInputDevice`: VTable [0x000000000307C490, 0x0000000000000000 offset, 9 functions] `.?AVBSInputDevice@@` -`class BSWin32KeyboardDevice`: VTable [0x000000000307C4F0, 0x0000000000000000 offset, 11 functions] `.?AVBSWin32KeyboardDevice@@` -`class BSWin32MouseDevice`: VTable [0x000000000307C568, 0x0000000000000000 offset, 10 functions] `.?AVBSWin32MouseDevice@@` -`class BSPCGamepadDeviceHandler`: VTable [0x000000000307C8F8, 0x0000000000000000 offset, 9 functions] `.?AVBSPCGamepadDeviceHandler@@` -`class BSPCGamepadDeviceDelegate`: VTable [0x000000000307C958, 0x0000000000000000 offset, 15 functions] `.?AVBSPCGamepadDeviceDelegate@@` -`class BSWin32GamepadDevice`: VTable [0x000000000307C9F8, 0x0000000000000000 offset, 15 functions] `.?AVBSWin32GamepadDevice@@` -`class BSPCOrbisGamepadDevice`: VTable [0x000000000307CA98, 0x0000000000000000 offset, 15 functions] `.?AVBSPCOrbisGamepadDevice@@` -`class BSKeyboardDevice`: VTable [0x000000000307CCE8, 0x0000000000000000 offset, 11 functions] `.?AVBSKeyboardDevice@@` -`class BSWin32VirtualKeyboardDevice`: VTable [0x000000000307CD70, 0x0000000000000000 offset, 14 functions] `.?AVBSWin32VirtualKeyboardDevice@@` -`class BSMouseDevice`: VTable [0x000000000307CF08, 0x0000000000000000 offset, 10 functions] `.?AVBSMouseDevice@@` -`class BSGamepadDevice`: VTable [0x000000000307D3C0, 0x0000000000000000 offset, 15 functions] `.?AVBSGamepadDevice@@` -`class BSVirtualKeyboardDevice`: VTable [0x000000000307D808, 0x0000000000000000 offset, 14 functions] `.?AVBSVirtualKeyboardDevice@@` -`class ICommandLineHandler`: VTable [0x000000000307E570, 0x0000000000000000 offset, 2 functions] `.?AVICommandLineHandler@@` -`class StackTrace::StackTraceCapture`: VTable [0x000000000307E590, 0x0000000000000000 offset, 1 functions] `.?AV?$StackTraceCapture@UPCPolicy@StackTrace@@@StackTrace@@` -`class `anonymous namespace'::MemoryTraceWriteCommandLineHandler`: VTable [0x000000000307E5A8, 0x0000000000000000 offset, 2 functions] `.?AVMemoryTraceWriteCommandLineHandler@?A0x0ba48e03@@` -`class StackTrace::StackTraceRecorder`: VTable [0x000000000307E928, 0x0000000000000000 offset, 1 functions] `.?AVStackTraceRecorder@StackTrace@@` -`class BSWin32ExceptionHandler`: VTable [0x000000000307EC50, 0x0000000000000000 offset, 8 functions] `.?AVBSWin32ExceptionHandler@@` -`class `anonymous namespace'::StackWalker`: VTable [0x000000000307ECA8, 0x0000000000000000 offset, 6 functions] `.?AVStackWalker@?A0x55aeff9c@@` -`class BSTMessageQueue`: VTable [0x000000000307F3E0, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@UStackFrameDatum@StackTrace@@@@` -`class BSTCommonMessageQueue`: VTable [0x000000000307F420, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@UStackFrameDatum@StackTrace@@@@` -`class BSTCommonStaticMessageQueue`: VTable [0x000000000307F470, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonStaticMessageQueue@UStackFrameDatum@StackTrace@@$0BAA@@@` -`class StackTrace::MemoryTraceWrite`: VTable [0x000000000307F4C0, 0x0000000000000000 offset, 3 functions] `.?AVMemoryTraceWrite@StackTrace@@` -`class StackTrace::StackTraceTranslate`: VTable [0x000000000307F710, 0x0000000000000000 offset, 1 functions] `.?AVStackTraceTranslate@StackTrace@@` -`class StackTrace::MemoryTracker`: VTable [0x000000000307F988, 0x0000000000000000 offset, 8 functions] `.?AVMemoryTracker@StackTrace@@` -`class `anonymous namespace'::AssertHandler`: VTable [0x000000000307FA38, 0x0000000000000000 offset, 2 functions] `.?AVAssertHandler@?A0x6edb3904@@` -`class BSTEventSink`: VTable [0x000000000307FBD8, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UTrashEvent@MemoryTrashing@@@@` -`class BSExceptionHandler`: VTable [0x000000000307FBF8, 0x0000000000000000 offset, 8 functions] `.?AVBSExceptionHandler@@` -`class bhkNiCollisionObject`: VTable [0x00000000030809F8, 0x0000000000000000 offset, 52 functions] `.?AVbhkNiCollisionObject@@` -`class bhkWindListener`: VTable [0x0000000003080D80, 0x0000000000000000 offset, 11 functions] `.?AVbhkWindListener@@` -`class bhkWorldObject`: VTable [0x00000000030815C8, 0x0000000000000000 offset, 55 functions] `.?AVbhkWorldObject@@` -`class bhkTaskletManagerCallback`: VTable [0x00000000030824F8, 0x0000000000000000 offset, 2 functions] `.?AVbhkTaskletManagerCallback@@` -`class bhkOnStartupCallback`: VTable [0x0000000003082518, 0x0000000000000000 offset, 2 functions] `.?AVbhkOnStartupCallback@@` -`class bhkOnExitCallback`: VTable [0x0000000003082538, 0x0000000000000000 offset, 2 functions] `.?AVbhkOnExitCallback@@` -`class ahkpWorld`: VTable [0x0000000003083208, 0x0000000000000000 offset, 3 functions] `.?AVahkpWorld@@` -`struct bhkWorldCinfo`: VTable [0x0000000003083230, 0x0000000000000000 offset, 3 functions] `.?AUbhkWorldCinfo@@` -`class bhkWorld::bhkConstraintProjector`: VTable [0x0000000003083258, 0x0000000000000000 offset, 7 functions] `.?AVbhkConstraintProjector@bhkWorld@@` -`class bhkWorld`: VTable [0x00000000030832A8, 0x0000000000000000 offset, 58 functions] `.?AVbhkWorld@@` -`class bhkAction`: VTable [0x00000000030834E0, 0x0000000000000000 offset, 53 functions] `.?AVbhkAction@@` -`class bhkUnaryAction`: VTable [0x00000000030836E8, 0x0000000000000000 offset, 53 functions] `.?AVbhkUnaryAction@@` -`class bhkMouseSpringAction`: VTable [0x00000000030838F0, 0x0000000000000000 offset, 53 functions] `.?AVbhkMouseSpringAction@@` -`class bhkRefObject`: VTable [0x0000000003084470, 0x0000000000000000 offset, 41 functions] `.?AVbhkRefObject@@` -`class bhkSphereShape`: VTable [0x0000000003085CB8, 0x0000000000000000 offset, 59 functions] `.?AVbhkSphereShape@@` -`class bhkAttachmentCollisionObject`: VTable [0x0000000003085FD8, 0x0000000000000000 offset, 52 functions] `.?AVbhkAttachmentCollisionObject@@` -`struct hkConstraintCinfo`: VTable [0x0000000003086888, 0x0000000000000000 offset, 6 functions] `.?AUhkConstraintCinfo@@` -`class bhkConstraint`: VTable [0x00000000030868D0, 0x0000000000000000 offset, 57 functions] `.?AVbhkConstraint@@` -`struct hkStiffSpringConstraintCinfo`: VTable [0x0000000003086B00, 0x0000000000000000 offset, 6 functions] `.?AUhkStiffSpringConstraintCinfo@@` -`class bhkStiffSpringConstraint`: VTable [0x0000000003086B48, 0x0000000000000000 offset, 57 functions] `.?AVbhkStiffSpringConstraint@@` -`struct hkBallAndSocketConstraintCinfo`: VTable [0x0000000003086D78, 0x0000000000000000 offset, 6 functions] `.?AUhkBallAndSocketConstraintCinfo@@` -`struct hkGenericConstraintCinfo`: VTable [0x0000000003086DC0, 0x0000000000000000 offset, 6 functions] `.?AUhkGenericConstraintCinfo@@` -`struct hkFixedConstraintCinfo`: VTable [0x0000000003086E08, 0x0000000000000000 offset, 6 functions] `.?AUhkFixedConstraintCinfo@@` -`class bhkBinaryAction`: VTable [0x00000000030871E0, 0x0000000000000000 offset, 56 functions] `.?AVbhkBinaryAction@@` -`class `anonymous namespace'::bhkConstraintDisabler`: VTable [0x0000000003087480, 0x0000000000000000 offset, 7 functions] `.?AVbhkConstraintDisabler@?A0x5001cac6@@` -`class bhkTransformShape`: VTable [0x0000000003087C80, 0x0000000000000000 offset, 59 functions] `.?AVbhkTransformShape@@` -`class bhkCapsuleShape`: VTable [0x0000000003088278, 0x0000000000000000 offset, 59 functions] `.?AVbhkCapsuleShape@@` -`struct hkLimitedHingeConstraintCinfo`: VTable [0x0000000003088738, 0x0000000000000000 offset, 6 functions] `.?AUhkLimitedHingeConstraintCinfo@@` -`class bhkLimitedHingeConstraint`: VTable [0x0000000003088780, 0x0000000000000000 offset, 57 functions] `.?AVbhkLimitedHingeConstraint@@` -`class ahkpMalleableConstraintData`: VTable [0x0000000003088D88, 0x0000000000000000 offset, 19 functions] `.?AVahkpMalleableConstraintData@@` -`struct hkMalleableConstraintCinfo`: VTable [0x0000000003088E48, 0x0000000000000000 offset, 6 functions] `.?AUhkMalleableConstraintCinfo@@` -`class bhkMalleableConstraint`: VTable [0x0000000003088E90, 0x0000000000000000 offset, 57 functions] `.?AVbhkMalleableConstraint@@` -`class bhkCollisionFilter`: VTable [0x00000000030895D0, 0x0000000000000000 offset, 4 functions] `.?AVbhkCollisionFilter@@` -`class bhkCollisionFilter`: VTable [0x0000000003089600, 0x0000000000000010 offset, 2 functions] `.?AVbhkCollisionFilter@@` -`class bhkCollisionFilter`: VTable [0x0000000003089620, 0x0000000000000018 offset, 4 functions] `.?AVbhkCollisionFilter@@` -`class bhkCollisionFilter`: VTable [0x0000000003089650, 0x0000000000000020 offset, 2 functions] `.?AVbhkCollisionFilter@@` -`class bhkCollisionFilter`: VTable [0x0000000003089670, 0x0000000000000028 offset, 2 functions] `.?AVbhkCollisionFilter@@` -`class bhkRagdollShareData`: VTable [0x000000000308BA48, 0x0000000000000000 offset, 39 functions] `.?AVbhkRagdollShareData@@` -`class bhkRagdollController`: VTable [0x000000000308BBC8, 0x0000000000000000 offset, 3 functions] `.?AVbhkRagdollController@@` -`class bhkRigidBodyT`: VTable [0x000000000308C210, 0x0000000000000000 offset, 65 functions] `.?AVbhkRigidBodyT@@` -`class bhkWorldM`: VTable [0x000000000308C610, 0x0000000000000000 offset, 58 functions] `.?AVbhkWorldM@@` -`class NiTLargeArray >`: VTable [0x000000000308CF78, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@VhkNiTriStripsData@@V?$NiTNewInterface@VhkNiTriStripsData@@@@@@` -`class NiTLargeObjectArray`: VTable [0x000000000308CF90, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeObjectArray@VhkNiTriStripsData@@@@` -`class hkNiTriStripsShape`: VTable [0x000000000308CFA8, 0x0000000000000000 offset, 14 functions] `.?AVhkNiTriStripsShape@@` -`class hkNiTriStripsShape`: VTable [0x000000000308D038, 0x0000000000000020 offset, 7 functions] `.?AVhkNiTriStripsShape@@` -`class hkNormalTriangleShape`: VTable [0x000000000308D088, 0x0000000000000000 offset, 19 functions] `.?AVhkNormalTriangleShape@@` -`class hkPackedNiTriStripsData`: VTable [0x000000000308D4C0, 0x0000000000000000 offset, 39 functions] `.?AVhkPackedNiTriStripsData@@` -`class hkPackedNiTriStripsShape`: VTable [0x000000000308D640, 0x0000000000000000 offset, 14 functions] `.?AVhkPackedNiTriStripsShape@@` -`class hkPackedNiTriStripsShape`: VTable [0x000000000308D6D0, 0x0000000000000020 offset, 7 functions] `.?AVhkPackedNiTriStripsShape@@` -`class bhkShapeCollection`: VTable [0x000000000308DBB8, 0x0000000000000000 offset, 60 functions] `.?AVbhkShapeCollection@@` -`class bhkNiTriStripsShape`: VTable [0x000000000308DE50, 0x0000000000000000 offset, 60 functions] `.?AVbhkNiTriStripsShape@@` -`class bhkPackedNiTriStripsShape`: VTable [0x000000000308E428, 0x0000000000000000 offset, 60 functions] `.?AVbhkPackedNiTriStripsShape@@` -`class NiTArray >`: VTable [0x000000000308E6D8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@GV?$NiTMallocInterface@G@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000308E6F0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@G@@` -`class bhkBlendCollisionObject`: VTable [0x000000000308E808, 0x0000000000000000 offset, 52 functions] `.?AVbhkBlendCollisionObject@@` -`class hkBSHeightFieldShape`: VTable [0x000000000308ECC8, 0x0000000000000000 offset, 15 functions] `.?AVhkBSHeightFieldShape@@` -`class hkProductFeatures`: VTable [0x0000000003091B18, 0x0000000000000000 offset, 3 functions] `.?AVhkProductFeatures@@` -`class BSTEventSink`: VTable [0x0000000003091B40, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UThreadEvent@BSThreadEvent@@@@` -`class `anonymous namespace'::HavokThreadMemorySink`: VTable [0x0000000003091B60, 0x0000000000000000 offset, 2 functions] `.?AVHavokThreadMemorySink@?A0x33af8118@@` -`class hkpCharacterState`: VTable [0x00000000030928D8, 0x0000000000000000 offset, 8 functions] `.?AVhkpCharacterState@@` -`class bhkCharacterState`: VTable [0x0000000003092930, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterState@@` -`class BSBound`: VTable [0x0000000003092990, 0x0000000000000000 offset, 41 functions] `.?AVBSBound@@` -`class bhkCharacterControllerCinfo`: VTable [0x0000000003092B28, 0x0000000000000000 offset, 6 functions] `.?AVbhkCharacterControllerCinfo@@` -`class bhkCharacterController`: VTable [0x0000000003092B70, 0x0000000000000000 offset, 20 functions] `.?AVbhkCharacterController@@` -`class bhkICharOrientationController`: VTable [0x0000000003092C40, 0x0000000000000000 offset, 11 functions] `.?AVbhkICharOrientationController@@` -`class bhkCharacterStateClimbing`: VTable [0x0000000003092CB8, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateClimbing@@` -`class bhkCharacterStateFlying`: VTable [0x0000000003092D18, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateFlying@@` -`class bhkCollisionBox`: VTable [0x0000000003092D78, 0x0000000000000000 offset, 56 functions] `.?AVbhkCollisionBox@@` -`class bhkListShape`: VTable [0x0000000003092FA0, 0x0000000000000000 offset, 60 functions] `.?AVbhkListShape@@` -`class bhkCachingShapePhantom`: VTable [0x0000000003093F90, 0x0000000000000000 offset, 55 functions] `.?AVbhkCachingShapePhantom@@` -`class hkpSafeEaseConstraintsAction`: VTable [0x00000000030942B8, 0x0000000000000000 offset, 8 functions] `.?AVhkpSafeEaseConstraintsAction@@` -`class hkpSafeEaseConstraintsAction`: VTable [0x0000000003094310, 0x0000000000000068 offset, 7 functions] `.?AVhkpSafeEaseConstraintsAction@@` -`class hkVisualDebugger`: VTable [0x0000000003094360, 0x0000000000000000 offset, 5 functions] `.?AVhkVisualDebugger@@` -`class hkProcessContext`: VTable [0x0000000003094898, 0x0000000000000000 offset, 3 functions] `.?AVhkProcessContext@@` -`class hkpActionListener`: VTable [0x00000000030948C0, 0x0000000000000000 offset, 3 functions] `.?AVhkpActionListener@@` -`class hkpPhysicsContext`: VTable [0x00000000030948E8, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhysicsContext@@` -`class hkpPhysicsContext`: VTable [0x0000000003094910, 0x0000000000000010 offset, 3 functions] `.?AVhkpPhysicsContext@@` -`class hkpPhysicsContext`: VTable [0x0000000003094938, 0x00000000000000A0 offset, 3 functions] `.?AVhkpPhysicsContext@@` -`class hkpPhysicsContext`: VTable [0x0000000003094960, 0x00000000000000A8 offset, 6 functions] `.?AVhkpPhysicsContext@@` -`class hkpPhysicsContext`: VTable [0x00000000030949A8, 0x00000000000000B0 offset, 5 functions] `.?AVhkpPhysicsContext@@` -`class hkpPhysicsContext`: VTable [0x00000000030949E8, 0x00000000000000B8 offset, 7 functions] `.?AVhkpPhysicsContext@@` -`class hkpPhysicsContext`: VTable [0x0000000003094A38, 0x00000000000000C0 offset, 3 functions] `.?AVhkpPhysicsContext@@` -`class bhkBipedOrientationController`: VTable [0x0000000003094D10, 0x0000000000000000 offset, 11 functions] `.?AVbhkBipedOrientationController@@` -`class `anonymous namespace'::bhkLifoAllocator`: VTable [0x0000000003094DA0, 0x0000000000000000 offset, 11 functions] `.?AVbhkLifoAllocator@?A0xde773d7b@@` -`class hkThreadMemory`: VTable [0x0000000003095088, 0x0000000000000000 offset, 12 functions] `.?AVhkThreadMemory@@` -`class bhkMemorySystem`: VTable [0x0000000003095108, 0x0000000000000000 offset, 23 functions] `.?AVbhkMemorySystem@@` -`class hkaRagdollRaycastInterface`: VTable [0x0000000003096098, 0x0000000000000000 offset, 2 functions] `.?AVhkaRagdollRaycastInterface@@` -`class bhkRagdollPenetrationUtil`: VTable [0x00000000030960B8, 0x0000000000000000 offset, 2 functions] `.?AVbhkRagdollPenetrationUtil@@` -`class hkpIslandActivationListener`: VTable [0x0000000003096280, 0x0000000000000000 offset, 3 functions] `.?AVhkpIslandActivationListener@@` -`class hkpSuspendInactiveAgentsUtil`: VTable [0x00000000030962A8, 0x0000000000000000 offset, 3 functions] `.?AVhkpSuspendInactiveAgentsUtil@@` -`class hkpSuspendInactiveAgentsUtil`: VTable [0x00000000030962D0, 0x0000000000000010 offset, 3 functions] `.?AVhkpSuspendInactiveAgentsUtil@@` -`class hkpSuspendInactiveAgentsUtil`: VTable [0x00000000030962F8, 0x0000000000000018 offset, 3 functions] `.?AVhkpSuspendInactiveAgentsUtil@@` -`class `anonymous namespace'::NeverCollideFilter`: VTable [0x0000000003096320, 0x0000000000000000 offset, 4 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` -`class `anonymous namespace'::NeverCollideFilter`: VTable [0x0000000003096350, 0x0000000000000010 offset, 2 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` -`class `anonymous namespace'::NeverCollideFilter`: VTable [0x0000000003096370, 0x0000000000000018 offset, 4 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` -`class `anonymous namespace'::NeverCollideFilter`: VTable [0x00000000030963A0, 0x0000000000000020 offset, 2 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` -`class `anonymous namespace'::NeverCollideFilter`: VTable [0x00000000030963C0, 0x0000000000000028 offset, 2 functions] `.?AVNeverCollideFilter@?A0x422024b4@@` -`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x00000000030963E0, 0x0000000000000000 offset, 4 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` -`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x0000000003096410, 0x0000000000000010 offset, 2 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` -`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x0000000003096430, 0x0000000000000018 offset, 4 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` -`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x0000000003096460, 0x0000000000000020 offset, 2 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` -`class `anonymous namespace'::Clear1nTracksFilter`: VTable [0x0000000003096480, 0x0000000000000028 offset, 2 functions] `.?AVClear1nTracksFilter@?A0x422024b4@@` -`class hkPackfileWriter::AddObjectListener`: VTable [0x00000000030964A0, 0x0000000000000000 offset, 4 functions] `.?AVAddObjectListener@hkPackfileWriter@@` -`class hkpHavokSnapshot::ConvertListener`: VTable [0x00000000030964D0, 0x0000000000000000 offset, 4 functions] `.?AVConvertListener@hkpHavokSnapshot@@` -`class bhkCompressedMeshShapeData`: VTable [0x0000000003096C60, 0x0000000000000000 offset, 39 functions] `.?AVbhkCompressedMeshShapeData@@` -`class bhkCompressedMeshShape`: VTable [0x0000000003096DE0, 0x0000000000000000 offset, 60 functions] `.?AVbhkCompressedMeshShape@@` -`class `anonymous namespace'::hkpCompressedMeshShapeShared`: VTable [0x00000000030971D8, 0x0000000000000000 offset, 13 functions] `.?AVhkpCompressedMeshShapeShared@?A0x1de26fcb@@` -`class `anonymous namespace'::hkpCompressedMeshShapeShared`: VTable [0x0000000003097260, 0x0000000000000020 offset, 7 functions] `.?AVhkpCompressedMeshShapeShared@?A0x1de26fcb@@` -`class bhkConvexSweepShape`: VTable [0x00000000030975D0, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexSweepShape@@` -`class bhkConvexTransformShape`: VTable [0x0000000003097AC8, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexTransformShape@@` -`class bhkConvexTranslateShape`: VTable [0x0000000003097FC8, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexTranslateShape@@` -`class bhkConvexVerticesShape`: VTable [0x0000000003098588, 0x0000000000000000 offset, 59 functions] `.?AVbhkConvexVerticesShape@@` -`class bhkCylinderShape`: VTable [0x0000000003098AB8, 0x0000000000000000 offset, 59 functions] `.?AVbhkCylinderShape@@` -`class bhkMultiSphereShape`: VTable [0x0000000003098FE8, 0x0000000000000000 offset, 59 functions] `.?AVbhkMultiSphereShape@@` -`class bhkHeightFieldShape`: VTable [0x0000000003099478, 0x0000000000000000 offset, 59 functions] `.?AVbhkHeightFieldShape@@` -`class bhkPlaneShape`: VTable [0x00000000030996B8, 0x0000000000000000 offset, 59 functions] `.?AVbhkPlaneShape@@` -`class bhkTriangleShape`: VTable [0x0000000003099D08, 0x0000000000000000 offset, 59 functions] `.?AVbhkTriangleShape@@` -`class hkScaledMoppBvTreeShape`: VTable [0x000000000309A230, 0x0000000000000000 offset, 14 functions] `.?AVhkScaledMoppBvTreeShape@@` -`class bhkMoppBvTreeShape`: VTable [0x000000000309A2C0, 0x0000000000000000 offset, 59 functions] `.?AVbhkMoppBvTreeShape@@` -`class bhkBallAndSocketConstraint`: VTable [0x000000000309AB68, 0x0000000000000000 offset, 57 functions] `.?AVbhkBallAndSocketConstraint@@` -`struct hkConstraintChainCinfo`: VTable [0x000000000309B028, 0x0000000000000000 offset, 6 functions] `.?AUhkConstraintChainCinfo@@` -`class bhkConstraintChain`: VTable [0x000000000309B070, 0x0000000000000000 offset, 58 functions] `.?AVbhkConstraintChain@@` -`struct hkBallSocketChainCinfo`: VTable [0x000000000309B2A8, 0x0000000000000000 offset, 6 functions] `.?AUhkBallSocketChainCinfo@@` -`class bhkBallSocketConstraintChain`: VTable [0x000000000309B2F0, 0x0000000000000000 offset, 58 functions] `.?AVbhkBallSocketConstraintChain@@` -`class bhkGroupConstraint`: VTable [0x000000000309B728, 0x0000000000000000 offset, 57 functions] `.?AVbhkGroupConstraint@@` -`struct hkHingeConstraintCinfo`: VTable [0x000000000309BC00, 0x0000000000000000 offset, 6 functions] `.?AUhkHingeConstraintCinfo@@` -`class bhkHingeConstraint`: VTable [0x000000000309BC48, 0x0000000000000000 offset, 57 functions] `.?AVbhkHingeConstraint@@` -`struct hkHingeLimitsConstraintCinfo`: VTable [0x000000000309C100, 0x0000000000000000 offset, 6 functions] `.?AUhkHingeLimitsConstraintCinfo@@` -`class bhkHingeLimitsConstraint`: VTable [0x000000000309C148, 0x0000000000000000 offset, 57 functions] `.?AVbhkHingeLimitsConstraint@@` -`class bhkGenericConstraint`: VTable [0x000000000309C608, 0x0000000000000000 offset, 57 functions] `.?AVbhkGenericConstraint@@` -`class bhkFixedConstraint`: VTable [0x000000000309C838, 0x0000000000000000 offset, 57 functions] `.?AVbhkFixedConstraint@@` -`struct hkPrismaticConstraintCinfo`: VTable [0x000000000309CCC0, 0x0000000000000000 offset, 6 functions] `.?AUhkPrismaticConstraintCinfo@@` -`class bhkPrismaticConstraint`: VTable [0x000000000309CD08, 0x0000000000000000 offset, 57 functions] `.?AVbhkPrismaticConstraint@@` -`struct hkRagdollConstraintCinfo`: VTable [0x000000000309D1C8, 0x0000000000000000 offset, 6 functions] `.?AUhkRagdollConstraintCinfo@@` -`class bhkRagdollConstraint`: VTable [0x000000000309D210, 0x0000000000000000 offset, 57 functions] `.?AVbhkRagdollConstraint@@` -`struct hkRagdollLimitsConstraintCinfo`: VTable [0x000000000309D758, 0x0000000000000000 offset, 6 functions] `.?AUhkRagdollLimitsConstraintCinfo@@` -`class bhkRagdollLimitsConstraint`: VTable [0x000000000309D7A0, 0x0000000000000000 offset, 57 functions] `.?AVbhkRagdollLimitsConstraint@@` -`struct hkWheelConstraintCinfo`: VTable [0x000000000309DE38, 0x0000000000000000 offset, 6 functions] `.?AUhkWheelConstraintCinfo@@` -`class bhkWheelConstraint`: VTable [0x000000000309DE80, 0x0000000000000000 offset, 57 functions] `.?AVbhkWheelConstraint@@` -`class ahkpBreakableConstraintData`: VTable [0x000000000309E368, 0x0000000000000000 offset, 19 functions] `.?AVahkpBreakableConstraintData@@` -`struct hkBreakableConstraintCinfo`: VTable [0x000000000309E428, 0x0000000000000000 offset, 6 functions] `.?AUhkBreakableConstraintCinfo@@` -`class bhkBreakableConstraint`: VTable [0x000000000309E470, 0x0000000000000000 offset, 57 functions] `.?AVbhkBreakableConstraint@@` -`class bhkAngularDashpotAction`: VTable [0x000000000309E8F0, 0x0000000000000000 offset, 56 functions] `.?AVbhkAngularDashpotAction@@` -`class bhkDashpotAction`: VTable [0x000000000309ED18, 0x0000000000000000 offset, 56 functions] `.?AVbhkDashpotAction@@` -`class bhkLiquidAction`: VTable [0x000000000309F198, 0x0000000000000000 offset, 53 functions] `.?AVbhkLiquidAction@@` -`class bhkMotorAction`: VTable [0x000000000309F5C0, 0x0000000000000000 offset, 53 functions] `.?AVbhkMotorAction@@` -`class bhkOrientHingedBodyAction`: VTable [0x000000000309FA00, 0x0000000000000000 offset, 54 functions] `.?AVbhkOrientHingedBodyAction@@` -`class bhkSpringAction`: VTable [0x000000000309FE48, 0x0000000000000000 offset, 56 functions] `.?AVbhkSpringAction@@` -`class bhkSPCollisionObject`: VTable [0x00000000030A0170, 0x0000000000000000 offset, 52 functions] `.?AVbhkSPCollisionObject@@` -`class bhkBlendController`: VTable [0x00000000030A04D8, 0x0000000000000000 offset, 49 functions] `.?AVbhkBlendController@@` -`class bhkExtraData`: VTable [0x00000000030A0A10, 0x0000000000000000 offset, 41 functions] `.?AVbhkExtraData@@` -`class bhkRagdollTemplateData`: VTable [0x00000000030A1058, 0x0000000000000000 offset, 39 functions] `.?AVbhkRagdollTemplateData@@` -`class bhkRagdollTemplate`: VTable [0x00000000030A1220, 0x0000000000000000 offset, 42 functions] `.?AVbhkRagdollTemplate@@` -`class bhkPoseArray`: VTable [0x00000000030A1588, 0x0000000000000000 offset, 39 functions] `.?AVbhkPoseArray@@` -`struct hkPointToPathConstraintCinfo`: VTable [0x00000000030A1D30, 0x0000000000000000 offset, 6 functions] `.?AUhkPointToPathConstraintCinfo@@` -`class bhkPositionConstraintMotor`: VTable [0x00000000030A1F80, 0x0000000000000000 offset, 26 functions] `.?AVbhkPositionConstraintMotor@@` -`class bhkVelocityConstraintMotor`: VTable [0x00000000030A2158, 0x0000000000000000 offset, 26 functions] `.?AVbhkVelocityConstraintMotor@@` -`class bhkSpringDamperConstraintMotor`: VTable [0x00000000030A2340, 0x0000000000000000 offset, 26 functions] `.?AVbhkSpringDamperConstraintMotor@@` -`class hkDisplayGeometry`: VTable [0x00000000030A24A0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayGeometry@@` -`class hkDisplayCapsule`: VTable [0x00000000030A24E0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayCapsule@@` -`class hkpTriSampledHeightFieldBvTreeShape`: VTable [0x00000000030A2C70, 0x0000000000000000 offset, 14 functions] `.?AVhkpTriSampledHeightFieldBvTreeShape@@` -`class hkpHeightFieldShape`: VTable [0x00000000030A2D00, 0x0000000000000000 offset, 13 functions] `.?AVhkpHeightFieldShape@@` -`class hkpSampledHeightFieldShape`: VTable [0x00000000030A2D88, 0x0000000000000000 offset, 15 functions] `.?AVhkpSampledHeightFieldShape@@` -`struct `anonymous namespace'::NearestHitCollector`: VTable [0x00000000030A2E40, 0x0000000000000000 offset, 2 functions] `.?AUNearestHitCollector@?A0x498db440@@` -`struct `anonymous namespace'::RotateNormalHitCollector`: VTable [0x00000000030A2E60, 0x0000000000000000 offset, 2 functions] `.?AURotateNormalHitCollector@?A0x498db440@@` -`class hkpTriSampledHeightFieldCollection`: VTable [0x00000000030A2E80, 0x0000000000000000 offset, 13 functions] `.?AVhkpTriSampledHeightFieldCollection@@` -`class hkpTriSampledHeightFieldCollection`: VTable [0x00000000030A2F08, 0x0000000000000020 offset, 7 functions] `.?AVhkpTriSampledHeightFieldCollection@@` -`class hkpCompressedSampledHeightFieldShape`: VTable [0x00000000030A2F58, 0x0000000000000000 offset, 15 functions] `.?AVhkpCompressedSampledHeightFieldShape@@` -`struct hkMonitorStreamColorTable`: VTable [0x00000000030A3248, 0x0000000000000000 offset, 3 functions] `.?AUhkMonitorStreamColorTable@@` -`class hkpFastMeshShape`: VTable [0x00000000030A3840, 0x0000000000000000 offset, 14 functions] `.?AVhkpFastMeshShape@@` -`class hkpFastMeshShape`: VTable [0x00000000030A38D0, 0x0000000000000020 offset, 7 functions] `.?AVhkpFastMeshShape@@` -`class hkpPlaneShape`: VTable [0x00000000030A4A60, 0x0000000000000000 offset, 13 functions] `.?AVhkpPlaneShape@@` -`class hkpStorageSampledHeightFieldShape`: VTable [0x00000000030A4B98, 0x0000000000000000 offset, 15 functions] `.?AVhkpStorageSampledHeightFieldShape@@` -`class hkbCameraShakeEventPayload`: VTable [0x00000000030A6988, 0x0000000000000000 offset, 3 functions] `.?AVhkbCameraShakeEventPayload@@` -`class hkbParticleSystemEventPayload`: VTable [0x00000000030A69F8, 0x0000000000000000 offset, 3 functions] `.?AVhkbParticleSystemEventPayload@@` -`class hkbStateChooser`: VTable [0x00000000030A6A98, 0x0000000000000000 offset, 4 functions] `.?AVhkbStateChooser@@` -`class hkbTestStateChooser`: VTable [0x00000000030A6AC8, 0x0000000000000000 offset, 4 functions] `.?AVhkbTestStateChooser@@` -`class hkbSimulationControlCommand`: VTable [0x00000000030A6B30, 0x0000000000000000 offset, 3 functions] `.?AVhkbSimulationControlCommand@@` -`class hkbCharacterControlCommand`: VTable [0x00000000030A6B58, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterControlCommand@@` -`class hkbRaiseEventCommand`: VTable [0x00000000030A6B80, 0x0000000000000000 offset, 3 functions] `.?AVhkbRaiseEventCommand@@` -`class hkbSetWordVariableCommand`: VTable [0x00000000030A6BA8, 0x0000000000000000 offset, 3 functions] `.?AVhkbSetWordVariableCommand@@` -`class hkbSetLocalTimeOfClipGeneratorCommand`: VTable [0x00000000030A6BD0, 0x0000000000000000 offset, 3 functions] `.?AVhkbSetLocalTimeOfClipGeneratorCommand@@` -`class hkbSetBehaviorCommand`: VTable [0x00000000030A6BF8, 0x0000000000000000 offset, 3 functions] `.?AVhkbSetBehaviorCommand@@` -`class hkbSetNodePropertyCommand`: VTable [0x00000000030A6C20, 0x0000000000000000 offset, 3 functions] `.?AVhkbSetNodePropertyCommand@@` -`class hkbCharacterAddedInfo`: VTable [0x00000000030A6C48, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterAddedInfo@@` -`class hkbCharacterInfo`: VTable [0x00000000030A6C70, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterInfo@@` -`class hkbCharacterSteppedInfo`: VTable [0x00000000030A6C98, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterSteppedInfo@@` -`class hkbCharacterSkinInfo`: VTable [0x00000000030A6CC0, 0x0000000000000000 offset, 3 functions] `.?AVhkbCharacterSkinInfo@@` -`class hkbBehaviorInfo`: VTable [0x00000000030A6CE8, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorInfo@@` -`class hkbBehaviorEventsInfo`: VTable [0x00000000030A6D10, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorEventsInfo@@` -`class hkbEventRaisedInfo`: VTable [0x00000000030A6D38, 0x0000000000000000 offset, 3 functions] `.?AVhkbEventRaisedInfo@@` -`class hkbSimulationStateInfo`: VTable [0x00000000030A6D60, 0x0000000000000000 offset, 3 functions] `.?AVhkbSimulationStateInfo@@` -`class hkbLinkedSymbolInfo`: VTable [0x00000000030A6D88, 0x0000000000000000 offset, 3 functions] `.?AVhkbLinkedSymbolInfo@@` -`class hkbAuxiliaryNodeInfo`: VTable [0x00000000030A6DB0, 0x0000000000000000 offset, 3 functions] `.?AVhkbAuxiliaryNodeInfo@@` -`class hkbBehaviorGraphInternalStateInfo`: VTable [0x00000000030A6DD8, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorGraphInternalStateInfo@@` -`class hkClassPointerVtable::VtableRegistry`: VTable [0x0000000003112300, 0x0000000000000000 offset, 6 functions] `.?AVVtableRegistry@hkClassPointerVtable@@` -`struct hkSerializeDeprecated2`: VTable [0x0000000003112348, 0x0000000000000000 offset, 7 functions] `.?AUhkSerializeDeprecated2@@` -`class hkpHeightFieldAgent`: VTable [0x0000000003112500, 0x0000000000000000 offset, 14 functions] `.?AVhkpHeightFieldAgent@@` -`class hkpSymmetricAgentLinearCast`: VTable [0x0000000003112590, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgentLinearCast@VhkpHeightFieldAgent@@@@` -`class hkpSymmetricAgent`: VTable [0x0000000003112620, 0x0000000000000000 offset, 14 functions] `.?AV?$hkpSymmetricAgent@VhkpHeightFieldAgent@@@@` -`class hkHeightFieldRayForwardingCollector`: VTable [0x0000000003112748, 0x0000000000000000 offset, 2 functions] `.?AVhkHeightFieldRayForwardingCollector@@` -`class hkpContinuousSimulation`: VTable [0x0000000003112790, 0x0000000000000000 offset, 22 functions] `.?AVhkpContinuousSimulation@@` -`class hkpMultiThreadedSimulation::MtEntityEntityBroadPhaseListener`: VTable [0x0000000003112AF0, 0x0000000000000000 offset, 3 functions] `.?AVMtEntityEntityBroadPhaseListener@hkpMultiThreadedSimulation@@` -`class hkpMultiThreadedSimulation::MtPhantomBroadPhaseListener`: VTable [0x0000000003112B18, 0x0000000000000000 offset, 3 functions] `.?AVMtPhantomBroadPhaseListener@hkpMultiThreadedSimulation@@` -`class hkpMultiThreadedSimulation::MtBroadPhaseBorderListener`: VTable [0x0000000003112B40, 0x0000000000000000 offset, 3 functions] `.?AVMtBroadPhaseBorderListener@hkpMultiThreadedSimulation@@` -`class hkpMultiThreadedSimulation`: VTable [0x0000000003112B68, 0x0000000000000000 offset, 22 functions] `.?AVhkpMultiThreadedSimulation@@` -`class hkpCharacterContext`: VTable [0x000000000313FEE0, 0x0000000000000000 offset, 3 functions] `.?AVhkpCharacterContext@@` -`class hkpCharacterStateManager`: VTable [0x000000000313FF08, 0x0000000000000000 offset, 3 functions] `.?AVhkpCharacterStateManager@@` -`class bhkCharacterStateInAir`: VTable [0x000000000313FFF0, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateInAir@@` -`class bhkCharacterStateJumping`: VTable [0x0000000003140080, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateJumping@@` -`class bhkCharacterStateOnGround`: VTable [0x0000000003140290, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateOnGround@@` -`class bhkCharacterStateSwimming`: VTable [0x00000000031403D8, 0x0000000000000000 offset, 9 functions] `.?AVbhkCharacterStateSwimming@@` -`class hkCharControllerShape`: VTable [0x0000000003140520, 0x0000000000000000 offset, 19 functions] `.?AVhkCharControllerShape@@` -`class bhkCharControllerShape`: VTable [0x00000000031405E0, 0x0000000000000000 offset, 59 functions] `.?AVbhkCharControllerShape@@` -`class bhkQuadOrientationController`: VTable [0x0000000003140A20, 0x0000000000000000 offset, 11 functions] `.?AVbhkQuadOrientationController@@` -`class `anonymous namespace'::bhkClosestRBRayHitCollector`: VTable [0x0000000003140BA8, 0x0000000000000000 offset, 2 functions] `.?AVbhkClosestRBRayHitCollector@?A0x6e8de59a@@` -`class hkProcessFactory`: VTable [0x0000000003140C30, 0x0000000000000000 offset, 3 functions] `.?AVhkProcessFactory@@` -`class hkProcess`: VTable [0x0000000003140C70, 0x0000000000000000 offset, 8 functions] `.?AVhkProcess@@` -`class hkCommandRouter`: VTable [0x0000000003140CC8, 0x0000000000000000 offset, 3 functions] `.?AVhkCommandRouter@@` -`class hkProcessHandler`: VTable [0x0000000003140CF0, 0x0000000000000000 offset, 9 functions] `.?AVhkProcessHandler@@` -`class hkServerProcessHandler`: VTable [0x0000000003140D50, 0x0000000000000000 offset, 3 functions] `.?AVhkServerProcessHandler@@` -`class hkServerProcessHandler`: VTable [0x0000000003140D78, 0x0000000000000010 offset, 9 functions] `.?AVhkServerProcessHandler@@` -`class hkServerProcessHandler`: VTable [0x0000000003140DD8, 0x0000000000000018 offset, 8 functions] `.?AVhkServerProcessHandler@@` -`class hkDebugDisplayHandler`: VTable [0x0000000003140E58, 0x0000000000000000 offset, 27 functions] `.?AVhkDebugDisplayHandler@@` -`class hkDebugDisplayProcess`: VTable [0x0000000003140F68, 0x0000000000000000 offset, 3 functions] `.?AVhkDebugDisplayProcess@@` -`class hkDebugDisplayProcess`: VTable [0x0000000003140F90, 0x0000000000000010 offset, 8 functions] `.?AVhkDebugDisplayProcess@@` -`class hkDebugDisplayProcess`: VTable [0x0000000003140FE8, 0x0000000000000040 offset, 27 functions] `.?AVhkDebugDisplayProcess@@` -`class hkInspectProcess`: VTable [0x00000000031410F8, 0x0000000000000000 offset, 3 functions] `.?AVhkInspectProcess@@` -`class hkInspectProcess`: VTable [0x0000000003141120, 0x0000000000000010 offset, 8 functions] `.?AVhkInspectProcess@@` -`class hkRemoteObjectProcess`: VTable [0x0000000003141190, 0x0000000000000000 offset, 3 functions] `.?AVhkRemoteObjectProcess@@` -`class hkRemoteObjectProcess`: VTable [0x00000000031411B8, 0x0000000000000010 offset, 8 functions] `.?AVhkRemoteObjectProcess@@` -`class hkStatisticsProcess`: VTable [0x0000000003141210, 0x0000000000000000 offset, 3 functions] `.?AVhkStatisticsProcess@@` -`class hkStatisticsProcess`: VTable [0x0000000003141238, 0x0000000000000010 offset, 8 functions] `.?AVhkStatisticsProcess@@` -`class hkMemorySnapshotProcess`: VTable [0x00000000031412A0, 0x0000000000000000 offset, 3 functions] `.?AVhkMemorySnapshotProcess@@` -`class hkMemorySnapshotProcess`: VTable [0x00000000031412C8, 0x0000000000000010 offset, 8 functions] `.?AVhkMemorySnapshotProcess@@` -`class hkpBroadphaseViewer`: VTable [0x0000000003141340, 0x0000000000000000 offset, 3 functions] `.?AVhkpBroadphaseViewer@@` -`class hkpBroadphaseViewer`: VTable [0x0000000003141368, 0x0000000000000010 offset, 8 functions] `.?AVhkpBroadphaseViewer@@` -`class hkpBroadphaseViewer`: VTable [0x00000000031413C0, 0x0000000000000040 offset, 3 functions] `.?AVhkpBroadphaseViewer@@` -`class hkpBroadphaseViewer`: VTable [0x00000000031413E8, 0x0000000000000050 offset, 3 functions] `.?AVhkpBroadphaseViewer@@` -`class hkpMidphaseViewer`: VTable [0x0000000003141430, 0x0000000000000000 offset, 3 functions] `.?AVhkpMidphaseViewer@@` -`class hkpMidphaseViewer`: VTable [0x0000000003141458, 0x0000000000000010 offset, 8 functions] `.?AVhkpMidphaseViewer@@` -`class hkpMidphaseViewer`: VTable [0x00000000031414B0, 0x0000000000000040 offset, 3 functions] `.?AVhkpMidphaseViewer@@` -`class hkpMidphaseViewer`: VTable [0x00000000031414D8, 0x0000000000000050 offset, 3 functions] `.?AVhkpMidphaseViewer@@` -`class hkpConstraintViewer`: VTable [0x0000000003141528, 0x0000000000000000 offset, 3 functions] `.?AVhkpConstraintViewer@@` -`class hkpConstraintViewer`: VTable [0x0000000003141550, 0x0000000000000010 offset, 8 functions] `.?AVhkpConstraintViewer@@` -`class hkpConstraintViewer`: VTable [0x00000000031415A8, 0x0000000000000040 offset, 3 functions] `.?AVhkpConstraintViewer@@` -`class hkpConstraintViewer`: VTable [0x00000000031415D0, 0x0000000000000050 offset, 3 functions] `.?AVhkpConstraintViewer@@` -`class hkpActiveContactPointViewer`: VTable [0x0000000003141620, 0x0000000000000000 offset, 4 functions] `.?AVhkpActiveContactPointViewer@@` -`class hkpActiveContactPointViewer`: VTable [0x0000000003141650, 0x0000000000000010 offset, 8 functions] `.?AVhkpActiveContactPointViewer@@` -`class hkpActiveContactPointViewer`: VTable [0x00000000031416A8, 0x0000000000000040 offset, 3 functions] `.?AVhkpActiveContactPointViewer@@` -`class hkpActiveContactPointViewer`: VTable [0x00000000031416D0, 0x0000000000000050 offset, 3 functions] `.?AVhkpActiveContactPointViewer@@` -`class hkpInactiveContactPointViewer`: VTable [0x0000000003141718, 0x0000000000000000 offset, 4 functions] `.?AVhkpInactiveContactPointViewer@@` -`class hkpInactiveContactPointViewer`: VTable [0x0000000003141748, 0x0000000000000010 offset, 8 functions] `.?AVhkpInactiveContactPointViewer@@` -`class hkpInactiveContactPointViewer`: VTable [0x00000000031417A0, 0x0000000000000040 offset, 3 functions] `.?AVhkpInactiveContactPointViewer@@` -`class hkpInactiveContactPointViewer`: VTable [0x00000000031417C8, 0x0000000000000050 offset, 3 functions] `.?AVhkpInactiveContactPointViewer@@` -`class hkpToiContactPointViewer`: VTable [0x0000000003141810, 0x0000000000000000 offset, 3 functions] `.?AVhkpToiContactPointViewer@@` -`class hkpToiContactPointViewer`: VTable [0x0000000003141838, 0x0000000000000010 offset, 8 functions] `.?AVhkpToiContactPointViewer@@` -`class hkpToiContactPointViewer`: VTable [0x0000000003141890, 0x0000000000000040 offset, 3 functions] `.?AVhkpToiContactPointViewer@@` -`class hkpToiContactPointViewer`: VTable [0x00000000031418B8, 0x0000000000000050 offset, 7 functions] `.?AVhkpToiContactPointViewer@@` -`class hkpToiCountViewer`: VTable [0x0000000003141940, 0x0000000000000000 offset, 3 functions] `.?AVhkpToiCountViewer@@` -`class hkpToiCountViewer`: VTable [0x0000000003141968, 0x0000000000000010 offset, 8 functions] `.?AVhkpToiCountViewer@@` -`class hkpToiCountViewer`: VTable [0x00000000031419C0, 0x0000000000000040 offset, 3 functions] `.?AVhkpToiCountViewer@@` -`class hkpToiCountViewer`: VTable [0x00000000031419E8, 0x0000000000000050 offset, 7 functions] `.?AVhkpToiCountViewer@@` -`class hkpToiCountViewer`: VTable [0x0000000003141A38, 0x0000000000000058 offset, 3 functions] `.?AVhkpToiCountViewer@@` -`class hkpToiCountViewer`: VTable [0x0000000003141A60, 0x0000000000000060 offset, 6 functions] `.?AVhkpToiCountViewer@@` -`class hkpPhantomDisplayViewer`: VTable [0x0000000003141AC8, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhantomDisplayViewer@@` -`class hkpPhantomDisplayViewer`: VTable [0x0000000003141AF0, 0x0000000000000010 offset, 8 functions] `.?AVhkpPhantomDisplayViewer@@` -`class hkpPhantomDisplayViewer`: VTable [0x0000000003141B48, 0x0000000000000040 offset, 3 functions] `.?AVhkpPhantomDisplayViewer@@` -`class hkpPhantomDisplayViewer`: VTable [0x0000000003141B70, 0x0000000000000050 offset, 5 functions] `.?AVhkpPhantomDisplayViewer@@` -`class hkpPhantomDisplayViewer`: VTable [0x0000000003141BB0, 0x0000000000000058 offset, 3 functions] `.?AVhkpPhantomDisplayViewer@@` -`class hkpUserShapePhantomTypeIdentifier`: VTable [0x0000000003141BD8, 0x0000000000000000 offset, 3 functions] `.?AVhkpUserShapePhantomTypeIdentifier@@` -`class hkpRigidBodyCentreOfMassViewer`: VTable [0x0000000003141CE0, 0x0000000000000000 offset, 3 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` -`class hkpRigidBodyCentreOfMassViewer`: VTable [0x0000000003141D08, 0x0000000000000010 offset, 8 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` -`class hkpRigidBodyCentreOfMassViewer`: VTable [0x0000000003141D60, 0x0000000000000040 offset, 3 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` -`class hkpRigidBodyCentreOfMassViewer`: VTable [0x0000000003141D88, 0x0000000000000050 offset, 6 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` -`class hkpRigidBodyCentreOfMassViewer`: VTable [0x0000000003141DD0, 0x0000000000000058 offset, 3 functions] `.?AVhkpRigidBodyCentreOfMassViewer@@` -`class hkpRigidBodyInertiaViewer`: VTable [0x0000000003141E68, 0x0000000000000000 offset, 3 functions] `.?AVhkpRigidBodyInertiaViewer@@` -`class hkpRigidBodyInertiaViewer`: VTable [0x0000000003141E90, 0x0000000000000010 offset, 8 functions] `.?AVhkpRigidBodyInertiaViewer@@` -`class hkpRigidBodyInertiaViewer`: VTable [0x0000000003141EE8, 0x0000000000000040 offset, 3 functions] `.?AVhkpRigidBodyInertiaViewer@@` -`class hkpRigidBodyInertiaViewer`: VTable [0x0000000003141F10, 0x0000000000000050 offset, 6 functions] `.?AVhkpRigidBodyInertiaViewer@@` -`class hkpRigidBodyInertiaViewer`: VTable [0x0000000003141F58, 0x0000000000000058 offset, 3 functions] `.?AVhkpRigidBodyInertiaViewer@@` -`class hkpShapeDisplayViewer`: VTable [0x0000000003141FE0, 0x0000000000000000 offset, 5 functions] `.?AVhkpShapeDisplayViewer@@` -`class hkpShapeDisplayViewer`: VTable [0x0000000003142020, 0x0000000000000010 offset, 8 functions] `.?AVhkpShapeDisplayViewer@@` -`class hkpShapeDisplayViewer`: VTable [0x0000000003142078, 0x0000000000000040 offset, 3 functions] `.?AVhkpShapeDisplayViewer@@` -`class hkpShapeDisplayViewer`: VTable [0x00000000031420A0, 0x0000000000000050 offset, 6 functions] `.?AVhkpShapeDisplayViewer@@` -`class hkpShapeDisplayViewer`: VTable [0x00000000031420E8, 0x0000000000000058 offset, 3 functions] `.?AVhkpShapeDisplayViewer@@` -`class hkCrcStreamWriter`: VTable [0x0000000003142130, 0x0000000000000000 offset, 9 functions] `.?AV?$hkCrcStreamWriter@_K$0?DGJDKIGKCIHIPALO@@@` -`class hkCrc64StreamWriter`: VTable [0x0000000003142190, 0x0000000000000000 offset, 9 functions] `.?AVhkCrc64StreamWriter@@` -`class hkpConvexRadiusViewer`: VTable [0x0000000003142210, 0x0000000000000000 offset, 3 functions] `.?AVhkpConvexRadiusViewer@@` -`class hkpConvexRadiusViewer`: VTable [0x0000000003142238, 0x0000000000000010 offset, 8 functions] `.?AVhkpConvexRadiusViewer@@` -`class hkpConvexRadiusViewer`: VTable [0x0000000003142290, 0x0000000000000040 offset, 3 functions] `.?AVhkpConvexRadiusViewer@@` -`class hkpConvexRadiusViewer`: VTable [0x00000000031422B8, 0x0000000000000050 offset, 6 functions] `.?AVhkpConvexRadiusViewer@@` -`class hkpConvexRadiusViewer`: VTable [0x0000000003142300, 0x0000000000000058 offset, 3 functions] `.?AVhkpConvexRadiusViewer@@` -`class hkpSweptTransformDisplayViewer`: VTable [0x0000000003142358, 0x0000000000000000 offset, 3 functions] `.?AVhkpSweptTransformDisplayViewer@@` -`class hkpSweptTransformDisplayViewer`: VTable [0x0000000003142380, 0x0000000000000010 offset, 8 functions] `.?AVhkpSweptTransformDisplayViewer@@` -`class hkpSweptTransformDisplayViewer`: VTable [0x00000000031423D8, 0x0000000000000040 offset, 3 functions] `.?AVhkpSweptTransformDisplayViewer@@` -`class hkpSweptTransformDisplayViewer`: VTable [0x0000000003142400, 0x0000000000000050 offset, 6 functions] `.?AVhkpSweptTransformDisplayViewer@@` -`class hkpSweptTransformDisplayViewer`: VTable [0x0000000003142448, 0x0000000000000058 offset, 3 functions] `.?AVhkpSweptTransformDisplayViewer@@` -`class hkpSimulationIslandViewer`: VTable [0x0000000003142500, 0x0000000000000000 offset, 3 functions] `.?AVhkpSimulationIslandViewer@@` -`class hkpSimulationIslandViewer`: VTable [0x0000000003142528, 0x0000000000000010 offset, 8 functions] `.?AVhkpSimulationIslandViewer@@` -`class hkpSimulationIslandViewer`: VTable [0x0000000003142580, 0x0000000000000040 offset, 3 functions] `.?AVhkpSimulationIslandViewer@@` -`class hkpSimulationIslandViewer`: VTable [0x00000000031425A8, 0x0000000000000050 offset, 3 functions] `.?AVhkpSimulationIslandViewer@@` -`class hkpMousePickingViewer`: VTable [0x0000000003142610, 0x0000000000000000 offset, 3 functions] `.?AVhkpMousePickingViewer@@` -`class hkpMousePickingViewer`: VTable [0x0000000003142638, 0x0000000000000010 offset, 8 functions] `.?AVhkpMousePickingViewer@@` -`class hkpMousePickingViewer`: VTable [0x0000000003142690, 0x0000000000000040 offset, 3 functions] `.?AVhkpMousePickingViewer@@` -`class hkpWorldMemoryViewer`: VTable [0x00000000031426C8, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldMemoryViewer@@` -`class hkpWorldMemoryViewer`: VTable [0x00000000031426F0, 0x0000000000000010 offset, 8 functions] `.?AVhkpWorldMemoryViewer@@` -`class hkpWorldMemoryViewer`: VTable [0x0000000003142748, 0x0000000000000040 offset, 3 functions] `.?AVhkpWorldMemoryViewer@@` -`class hkpWorldSnapshotViewer`: VTable [0x0000000003142788, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldSnapshotViewer@@` -`class hkpWorldSnapshotViewer`: VTable [0x00000000031427B0, 0x0000000000000010 offset, 8 functions] `.?AVhkpWorldSnapshotViewer@@` -`class hkpWorldSnapshotViewer`: VTable [0x0000000003142808, 0x0000000000000040 offset, 3 functions] `.?AVhkpWorldSnapshotViewer@@` -`class hkpVehicleViewer`: VTable [0x0000000003142898, 0x0000000000000000 offset, 3 functions] `.?AVhkpVehicleViewer@@` -`class hkpVehicleViewer`: VTable [0x00000000031428C0, 0x0000000000000010 offset, 8 functions] `.?AVhkpVehicleViewer@@` -`class hkpVehicleViewer`: VTable [0x0000000003142918, 0x0000000000000040 offset, 3 functions] `.?AVhkpVehicleViewer@@` -`class hkpVehicleViewer`: VTable [0x0000000003142940, 0x0000000000000050 offset, 3 functions] `.?AVhkpVehicleViewer@@` -`class hkpVehicleViewer`: VTable [0x0000000003142968, 0x0000000000000058 offset, 3 functions] `.?AVhkpVehicleViewer@@` -`class hkpWeldingViewer`: VTable [0x00000000031429C0, 0x0000000000000000 offset, 3 functions] `.?AVhkpWeldingViewer@@` -`class hkpWeldingViewer`: VTable [0x00000000031429E8, 0x0000000000000010 offset, 8 functions] `.?AVhkpWeldingViewer@@` -`class hkpWeldingViewer`: VTable [0x0000000003142A40, 0x0000000000000040 offset, 3 functions] `.?AVhkpWeldingViewer@@` -`class hkpWeldingViewer`: VTable [0x0000000003142A68, 0x0000000000000050 offset, 3 functions] `.?AVhkpWeldingViewer@@` -`class hkpInconsistentWindingViewer`: VTable [0x0000000003142AF0, 0x0000000000000000 offset, 3 functions] `.?AVhkpInconsistentWindingViewer@@` -`class hkpInconsistentWindingViewer`: VTable [0x0000000003142B18, 0x0000000000000010 offset, 8 functions] `.?AVhkpInconsistentWindingViewer@@` -`class hkpInconsistentWindingViewer`: VTable [0x0000000003142B70, 0x0000000000000040 offset, 3 functions] `.?AVhkpInconsistentWindingViewer@@` -`class hkpInconsistentWindingViewer`: VTable [0x0000000003142B98, 0x0000000000000050 offset, 3 functions] `.?AVhkpInconsistentWindingViewer@@` -`class hkpInconsistentWindingViewer`: VTable [0x0000000003142BC0, 0x0000000000000058 offset, 6 functions] `.?AVhkpInconsistentWindingViewer@@` -`class hkpSingleBodyConstraintViewer`: VTable [0x0000000003142C70, 0x0000000000000000 offset, 3 functions] `.?AVhkpSingleBodyConstraintViewer@@` -`class hkpSingleBodyConstraintViewer`: VTable [0x0000000003142C98, 0x0000000000000010 offset, 8 functions] `.?AVhkpSingleBodyConstraintViewer@@` -`class hkpSingleBodyConstraintViewer`: VTable [0x0000000003142CF0, 0x0000000000000040 offset, 3 functions] `.?AVhkpSingleBodyConstraintViewer@@` -`class hkpSingleBodyConstraintViewer`: VTable [0x0000000003142D18, 0x0000000000000050 offset, 3 functions] `.?AVhkpSingleBodyConstraintViewer@@` -`class hkpSingleBodyConstraintViewer`: VTable [0x0000000003142D40, 0x0000000000000058 offset, 6 functions] `.?AVhkpSingleBodyConstraintViewer@@` -`class hkSolverAllocator`: VTable [0x0000000003142DB0, 0x0000000000000000 offset, 11 functions] `.?AVhkSolverAllocator@@` -`class bhkThreadMemorySource`: VTable [0x0000000003143298, 0x0000000000000000 offset, 11 functions] `.?AVbhkThreadMemorySource@@` -`class bhkThreadMemorySource`: VTable [0x0000000003143310, 0x0000000000000008 offset, 28 functions] `.?AVbhkThreadMemorySource@@` -`class hkJobThreadPool`: VTable [0x0000000003143750, 0x0000000000000000 offset, 10 functions] `.?AVhkJobThreadPool@@` -`class hkCpuJobThreadPool`: VTable [0x00000000031437C0, 0x0000000000000000 offset, 10 functions] `.?AVhkCpuJobThreadPool@@` -`class hkaDetectRagdollPenetration`: VTable [0x0000000003143860, 0x0000000000000000 offset, 3 functions] `.?AVhkaDetectRagdollPenetration@@` -`struct hkpStorageMeshShape::SubpartStorage`: VTable [0x0000000003143888, 0x0000000000000000 offset, 3 functions] `.?AUSubpartStorage@hkpStorageMeshShape@@` -`class hkpStorageMeshShape`: VTable [0x00000000031438B0, 0x0000000000000000 offset, 14 functions] `.?AVhkpStorageMeshShape@@` -`class hkpStorageMeshShape`: VTable [0x0000000003143940, 0x0000000000000020 offset, 7 functions] `.?AVhkpStorageMeshShape@@` -`struct hkpStorageExtendedMeshShape::MeshSubpartStorage`: VTable [0x00000000031439A0, 0x0000000000000000 offset, 3 functions] `.?AUMeshSubpartStorage@hkpStorageExtendedMeshShape@@` -`struct hkpStorageExtendedMeshShape::ShapeSubpartStorage`: VTable [0x00000000031439C8, 0x0000000000000000 offset, 3 functions] `.?AUShapeSubpartStorage@hkpStorageExtendedMeshShape@@` -`class hkpStorageExtendedMeshShape`: VTable [0x00000000031439F0, 0x0000000000000000 offset, 15 functions] `.?AVhkpStorageExtendedMeshShape@@` -`class hkpStorageExtendedMeshShape`: VTable [0x0000000003143A90, 0x0000000000000020 offset, 7 functions] `.?AVhkpStorageExtendedMeshShape@@` -`class hkpCompressedMeshShape`: VTable [0x0000000003144228, 0x0000000000000000 offset, 13 functions] `.?AVhkpCompressedMeshShape@@` -`class hkpCompressedMeshShape`: VTable [0x00000000031442B0, 0x0000000000000020 offset, 7 functions] `.?AVhkpCompressedMeshShape@@` -`class hkgpAbstractMesh`: VTable [0x0000000003144300, 0x0000000000000000 offset, 4 functions] `.?AV?$hkgpAbstractMesh@UEdge@hkgpIndexedMeshDefinitions@@UVertex@2@UTriangle@2@UhkContainerHeapAllocator@@@@` -`class hkDisplayCylinder`: VTable [0x0000000003144430, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayCylinder@@` -`class hkLiquidAction`: VTable [0x00000000031448A0, 0x0000000000000000 offset, 8 functions] `.?AVhkLiquidAction@@` -`class hkOrientHingedBodyAction`: VTable [0x0000000003144998, 0x0000000000000000 offset, 8 functions] `.?AVhkOrientHingedBodyAction@@` -`class bhkPointToPathConstraint`: VTable [0x0000000003144C90, 0x0000000000000000 offset, 57 functions] `.?AVbhkPointToPathConstraint@@` -`class hkpMeshShape`: VTable [0x0000000003145B68, 0x0000000000000000 offset, 14 functions] `.?AVhkpMeshShape@@` -`class hkpMeshShape`: VTable [0x0000000003145BF8, 0x0000000000000020 offset, 7 functions] `.?AVhkpMeshShape@@` -`class hkRemoteObjectClientSideListener`: VTable [0x0000000003145C58, 0x0000000000000000 offset, 2 functions] `.?AVhkRemoteObjectClientSideListener@@` -`class hkbClientCharacterState`: VTable [0x0000000003145C78, 0x0000000000000000 offset, 3 functions] `.?AVhkbClientCharacterState@@` -`class hkbBehaviorClient`: VTable [0x0000000003145CA0, 0x0000000000000000 offset, 3 functions] `.?AVhkbBehaviorClient@@` -`class hkbBehaviorClient`: VTable [0x0000000003145CC8, 0x0000000000000010 offset, 2 functions] `.?AVhkbBehaviorClient@@` -`class hkVersionRegistry`: VTable [0x0000000003145D80, 0x0000000000000000 offset, 3 functions] `.?AVhkVersionRegistry@@` -`class ValidatedClassNameRegistry`: VTable [0x0000000003145DA8, 0x0000000000000000 offset, 11 functions] `.?AVValidatedClassNameRegistry@@` -`class hkRenamedClassNameRegistry`: VTable [0x0000000003145E20, 0x0000000000000000 offset, 6 functions] `.?AVhkRenamedClassNameRegistry@@` -`class `anonymous namespace'::PackfileObjectCopier`: VTable [0x00000000031466D8, 0x0000000000000000 offset, 6 functions] `.?AVPackfileObjectCopier@?A0x0aad51fa@@` -`class hkXmlPackfileWriter`: VTable [0x0000000003146848, 0x0000000000000000 offset, 11 functions] `.?AVhkXmlPackfileWriter@@` -`struct hkXmlObjectWriter::NameFromAddress`: VTable [0x00000000031468C0, 0x0000000000000000 offset, 2 functions] `.?AUNameFromAddress@hkXmlObjectWriter@@` -`struct `anonymous namespace'::PackfileNameFromAddress`: VTable [0x00000000031468E0, 0x0000000000000000 offset, 2 functions] `.?AUPackfileNameFromAddress@?A0x147ad74e@@` -`class hkXmlPackfileReader`: VTable [0x0000000003146A30, 0x0000000000000000 offset, 15 functions] `.?AVhkXmlPackfileReader@@` -`class `anonymous namespace'::hkPatchClassInstanceXmlParser`: VTable [0x0000000003146B18, 0x0000000000000000 offset, 6 functions] `.?AVhkPatchClassInstanceXmlParser@?A0x673c72ae@@` -`class hkXmlPackfileUpdateTracker`: VTable [0x0000000003146BA0, 0x0000000000000000 offset, 9 functions] `.?AVhkXmlPackfileUpdateTracker@@` -`class hkBinaryPackfileReader::BinaryPackfileData`: VTable [0x0000000003146D70, 0x0000000000000000 offset, 8 functions] `.?AVBinaryPackfileData@hkBinaryPackfileReader@@` -`class hkBinaryPackfileReader`: VTable [0x0000000003146DC8, 0x0000000000000000 offset, 17 functions] `.?AVhkBinaryPackfileReader@@` -`class hkObjectInspector::ObjectListener`: VTable [0x0000000003146E78, 0x0000000000000000 offset, 2 functions] `.?AVObjectListener@hkObjectInspector@@` -`class hkObjectUpdateTracker`: VTable [0x0000000003146E98, 0x0000000000000000 offset, 9 functions] `.?AVhkObjectUpdateTracker@@` -`class `anonymous namespace'::PackfileObjectsCollector`: VTable [0x0000000003146F38, 0x0000000000000000 offset, 2 functions] `.?AVPackfileObjectsCollector@?A0x71220c57@@` -`class `anonymous namespace'::PackfilePointersMapListener`: VTable [0x0000000003146F58, 0x0000000000000000 offset, 2 functions] `.?AVPackfilePointersMapListener@?A0x71220c57@@` -`class `anonymous namespace'::PackfileCstringListener`: VTable [0x0000000003146F78, 0x0000000000000000 offset, 2 functions] `.?AVPackfileCstringListener@?A0x71220c57@@` -`class `anonymous namespace'::hkContentsUpdateTracker`: VTable [0x0000000003146F98, 0x0000000000000000 offset, 9 functions] `.?AVhkContentsUpdateTracker@?A0x71220c57@@` -`class `anonymous namespace'::ClassUpdateTracker`: VTable [0x0000000003146FF8, 0x0000000000000000 offset, 9 functions] `.?AVClassUpdateTracker@?A0x71220c57@@` -`class hkClassPointerVtable::TypeInfoRegistry`: VTable [0x00000000031470D0, 0x0000000000000000 offset, 8 functions] `.?AVTypeInfoRegistry@hkClassPointerVtable@@` -`class hkpToiResourceMgr`: VTable [0x0000000003147150, 0x0000000000000000 offset, 8 functions] `.?AVhkpToiResourceMgr@@` -`class hkpDefaultToiResourceMgr`: VTable [0x00000000031471A8, 0x0000000000000000 offset, 8 functions] `.?AVhkpDefaultToiResourceMgr@@` -`class hkpDeferredConstraintOwner`: VTable [0x00000000031473B8, 0x0000000000000000 offset, 7 functions] `.?AVhkpDeferredConstraintOwner@@` -`class hkSystemClock`: VTable [0x0000000003147460, 0x0000000000000000 offset, 5 functions] `.?AVhkSystemClock@@` -`class hkWindowsSystemClock`: VTable [0x00000000031474A0, 0x0000000000000000 offset, 5 functions] `.?AVhkWindowsSystemClock@@` -`class hkDisplaySerializeOStream`: VTable [0x0000000003147500, 0x0000000000000000 offset, 3 functions] `.?AVhkDisplaySerializeOStream@@` -`class hkReplayStreamReader`: VTable [0x0000000003147528, 0x0000000000000000 offset, 12 functions] `.?AVhkReplayStreamReader@@` -`class hkServerDebugDisplayHandler`: VTable [0x0000000003147600, 0x0000000000000000 offset, 3 functions] `.?AVhkServerDebugDisplayHandler@@` -`class hkServerDebugDisplayHandler`: VTable [0x0000000003147628, 0x0000000000000010 offset, 8 functions] `.?AVhkServerDebugDisplayHandler@@` -`class hkServerDebugDisplayHandler`: VTable [0x0000000003147680, 0x0000000000000040 offset, 27 functions] `.?AVhkServerDebugDisplayHandler@@` -`class hkDisplaySerializeIStream`: VTable [0x0000000003147810, 0x0000000000000000 offset, 3 functions] `.?AVhkDisplaySerializeIStream@@` -`class hkVdbCommandWriter`: VTable [0x0000000003147918, 0x0000000000000000 offset, 9 functions] `.?AVhkVdbCommandWriter@@` -`class hkpPhysicsContextWorldListener`: VTable [0x0000000003147C00, 0x0000000000000000 offset, 3 functions] `.?AVhkpPhysicsContextWorldListener@@` -`class hkpWorldViewerBase`: VTable [0x0000000003147C28, 0x0000000000000000 offset, 3 functions] `.?AVhkpWorldViewerBase@@` -`class hkpWorldViewerBase`: VTable [0x0000000003147C50, 0x0000000000000010 offset, 8 functions] `.?AVhkpWorldViewerBase@@` -`class hkpWorldViewerBase`: VTable [0x0000000003147CA8, 0x0000000000000040 offset, 3 functions] `.?AVhkpWorldViewerBase@@` -`class hkDisplayAABB`: VTable [0x0000000003147CD0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayAABB@@` -`class hkDisplaySemiCircle`: VTable [0x0000000003147D10, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplaySemiCircle@@` -`class hkDisplayCone`: VTable [0x0000000003147D50, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayCone@@` -`class hkDisplayPlane`: VTable [0x0000000003147D90, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayPlane@@` -`class hkpContactPointViewer`: VTable [0x0000000003147DF0, 0x0000000000000000 offset, 4 functions] `.?AVhkpContactPointViewer@@` -`class hkpContactPointViewer`: VTable [0x0000000003147E20, 0x0000000000000010 offset, 8 functions] `.?AVhkpContactPointViewer@@` -`class hkpContactPointViewer`: VTable [0x0000000003147E78, 0x0000000000000040 offset, 3 functions] `.?AVhkpContactPointViewer@@` -`class hkpContactPointViewer`: VTable [0x0000000003147EA0, 0x0000000000000050 offset, 3 functions] `.?AVhkpContactPointViewer@@` -`class hkDisplayGeometryBuilder`: VTable [0x0000000003147F78, 0x0000000000000000 offset, 6 functions] `.?AVhkDisplayGeometryBuilder@@` -`class hkpShapeDisplayBuilder`: VTable [0x0000000003147FC0, 0x0000000000000000 offset, 6 functions] `.?AVhkpShapeDisplayBuilder@@` -`class hkpUserShapeDisplayBuilder`: VTable [0x0000000003148008, 0x0000000000000000 offset, 3 functions] `.?AVhkpUserShapeDisplayBuilder@@` -`class hkpShapeContinueData`: VTable [0x0000000003148030, 0x0000000000000000 offset, 3 functions] `.?AVhkpShapeContinueData@@` -`class hkDisplayBox`: VTable [0x00000000031480C0, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayBox@@` -`class hkDisplayConvex`: VTable [0x0000000003148100, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayConvex@@` -`class hkpUserShapeHashUtil`: VTable [0x0000000003148140, 0x0000000000000000 offset, 3 functions] `.?AVhkpUserShapeHashUtil@@` -`class hkpConvexRadiusBuilder`: VTable [0x0000000003148B28, 0x0000000000000000 offset, 6 functions] `.?AVhkpConvexRadiusBuilder@@` -`class hkpUserConvexRadiusBuilder`: VTable [0x0000000003148B70, 0x0000000000000000 offset, 3 functions] `.?AVhkpUserConvexRadiusBuilder@@` -`class hkStreamStatisticsCollector`: VTable [0x0000000003148BB8, 0x0000000000000000 offset, 8 functions] `.?AVhkStreamStatisticsCollector@@` -`class hkpExtendedMeshShape`: VTable [0x0000000003148C18, 0x0000000000000000 offset, 15 functions] `.?AVhkpExtendedMeshShape@@` -`class hkpExtendedMeshShape`: VTable [0x0000000003148CB8, 0x0000000000000020 offset, 7 functions] `.?AVhkpExtendedMeshShape@@` -`class hkgpIndexedMesh`: VTable [0x0000000003148D08, 0x0000000000000000 offset, 4 functions] `.?AVhkgpIndexedMesh@@` -`class hkpMoppMediator`: VTable [0x0000000003148D38, 0x0000000000000000 offset, 10 functions] `.?AVhkpMoppMediator@@` -`class hkpMoppShapeMediator`: VTable [0x0000000003148DA8, 0x0000000000000000 offset, 10 functions] `.?AVhkpMoppShapeMediator@@` -`class hkpMoppCachedShapeMediator`: VTable [0x0000000003148E18, 0x0000000000000000 offset, 10 functions] `.?AVhkpMoppCachedShapeMediator@@` -`class hkpMoppCostFunction`: VTable [0x0000000003148E88, 0x0000000000000000 offset, 3 functions] `.?AVhkpMoppCostFunction@@` -`class hkBindingClassNameRegistry`: VTable [0x0000000003148F60, 0x0000000000000000 offset, 14 functions] `.?AVhkBindingClassNameRegistry@@` -`class hkXmlObjectWriter`: VTable [0x0000000003148FF0, 0x0000000000000000 offset, 6 functions] `.?AVhkXmlObjectWriter@@` -`class hkPackfileReader`: VTable [0x0000000003149300, 0x0000000000000000 offset, 14 functions] `.?AVhkPackfileReader@@` -`class hkLineNumberStreamReader`: VTable [0x0000000003149478, 0x0000000000000000 offset, 12 functions] `.?AVhkLineNumberStreamReader@@` -`class hkObjectReader`: VTable [0x00000000031494F8, 0x0000000000000000 offset, 5 functions] `.?AVhkObjectReader@@` -`class hkXmlObjectReader`: VTable [0x0000000003149538, 0x0000000000000000 offset, 5 functions] `.?AVhkXmlObjectReader@@` -`class hkChainedClassNameRegistry`: VTable [0x00000000031496F0, 0x0000000000000000 offset, 11 functions] `.?AVhkChainedClassNameRegistry@@` -`struct hkXmlParser::Node`: VTable [0x0000000003149768, 0x0000000000000000 offset, 3 functions] `.?AUNode@hkXmlParser@@` -`struct hkXmlParser::StartElement`: VTable [0x0000000003149790, 0x0000000000000000 offset, 3 functions] `.?AUStartElement@hkXmlParser@@` -`struct hkXmlParser::EndElement`: VTable [0x00000000031497B8, 0x0000000000000000 offset, 3 functions] `.?AUEndElement@hkXmlParser@@` -`struct hkXmlParser::Characters`: VTable [0x00000000031497E0, 0x0000000000000000 offset, 3 functions] `.?AUCharacters@hkXmlParser@@` -`class hkXmlParser`: VTable [0x0000000003149808, 0x0000000000000000 offset, 6 functions] `.?AVhkXmlParser@@` -`class hkPackfileObjectUpdateTracker`: VTable [0x0000000003149970, 0x0000000000000000 offset, 9 functions] `.?AVhkPackfileObjectUpdateTracker@@` -`class hkDisplayMesh`: VTable [0x000000000314A320, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayMesh@@` -`class hkDisplaySphere`: VTable [0x000000000314A360, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplaySphere@@` -`class hkDisplayTaperedCapsule`: VTable [0x000000000314A3A8, 0x0000000000000000 offset, 5 functions] `.?AVhkDisplayTaperedCapsule@@` -`class hkMeshTexture`: VTable [0x000000000314B6D0, 0x0000000000000000 offset, 15 functions] `.?AVhkMeshTexture@@` -`class hkMemoryMeshTexture`: VTable [0x000000000314B7A8, 0x0000000000000000 offset, 15 functions] `.?AVhkMemoryMeshTexture@@` -`class hkpFixedBufferCdPointCollector`: VTable [0x000000000314B9C8, 0x0000000000000000 offset, 3 functions] `.?AVhkpFixedBufferCdPointCollector@@` -`class hkKdTreeCastCollector`: VTable [0x000000000314BA18, 0x0000000000000000 offset, 4 functions] `.?AVhkKdTreeCastCollector@@` -`class hkCpuWorldGetClosestPointsCollector`: VTable [0x000000000314BA48, 0x0000000000000000 offset, 2 functions] `.?AVhkCpuWorldGetClosestPointsCollector@@` -`class hkCpuWorldGetClosestPointsCollector`: VTable [0x000000000314BA68, 0x0000000000000008 offset, 2 functions] `.?AVhkCpuWorldGetClosestPointsCollector@@` -`class hkCpuWorldGetClosestPointsCollector`: VTable [0x000000000314BA88, 0x0000000000000010 offset, 4 functions] `.?AVhkCpuWorldGetClosestPointsCollector@@` -`class hkCpuWorldLinearCastCollector`: VTable [0x000000000314BB20, 0x0000000000000000 offset, 2 functions] `.?AVhkCpuWorldLinearCastCollector@@` -`class hkCpuWorldLinearCastCollector`: VTable [0x000000000314BB40, 0x0000000000000008 offset, 4 functions] `.?AVhkCpuWorldLinearCastCollector@@` -`class hkCpuWorldLinearCastCollector`: VTable [0x000000000314BB70, 0x0000000000000010 offset, 2 functions] `.?AVhkCpuWorldLinearCastCollector@@` -`class hkCpuWorldLinearCastCollector`: VTable [0x000000000314BB90, 0x0000000000000018 offset, 2 functions] `.?AVhkCpuWorldLinearCastCollector@@` -`class hkpFixedBufferRayHitCollector`: VTable [0x000000000314BC00, 0x0000000000000000 offset, 2 functions] `.?AVhkpFixedBufferRayHitCollector@@` -`class hkCpuWorldRayCastCollector`: VTable [0x000000000314BC40, 0x0000000000000000 offset, 2 functions] `.?AVhkCpuWorldRayCastCollector@@` -`class hkCpuWorldRayCastCollector`: VTable [0x000000000314BC60, 0x0000000000000008 offset, 4 functions] `.?AVhkCpuWorldRayCastCollector@@` -`class hkCpuWorldRayCastCollector`: VTable [0x000000000314BC90, 0x0000000000000010 offset, 2 functions] `.?AVhkCpuWorldRayCastCollector@@` -`class hkCpuWorldRayCastCollector`: VTable [0x000000000314BCB0, 0x0000000000000018 offset, 2 functions] `.?AVhkCpuWorldRayCastCollector@@` -`class hkpSimpleMeshShape`: VTable [0x000000000314BDC8, 0x0000000000000000 offset, 13 functions] `.?AVhkpSimpleMeshShape@@` -`class hkpSimpleMeshShape`: VTable [0x000000000314BE50, 0x0000000000000020 offset, 7 functions] `.?AVhkpSimpleMeshShape@@` -`class hkpMoppNodeMgr`: VTable [0x000000000314BED0, 0x0000000000000000 offset, 5 functions] `.?AVhkpMoppNodeMgr@@` -`class hkpMoppSplitter`: VTable [0x000000000314BF10, 0x0000000000000000 offset, 6 functions] `.?AVhkpMoppSplitter@@` -`class hkpMoppDefaultSplitter`: VTable [0x000000000314BF58, 0x0000000000000000 offset, 6 functions] `.?AVhkpMoppDefaultSplitter@@` -`class hkpMoppCodeGenerator`: VTable [0x000000000314C030, 0x0000000000000000 offset, 3 functions] `.?AVhkpMoppCodeGenerator@@` -`class hkpMoppAssembler`: VTable [0x000000000314C058, 0x0000000000000000 offset, 7 functions] `.?AVhkpMoppAssembler@@` -`class hkpMoppDefaultAssembler`: VTable [0x000000000314C0A8, 0x0000000000000000 offset, 7 functions] `.?AVhkpMoppDefaultAssembler@@` -`class hkIndexedTransformSet`: VTable [0x000000000314C220, 0x0000000000000000 offset, 3 functions] `.?AVhkIndexedTransformSet@@` -`class hkMeshBody`: VTable [0x000000000314C248, 0x0000000000000000 offset, 20 functions] `.?AVhkMeshBody@@` -`class hkMemoryMeshBody`: VTable [0x000000000314C318, 0x0000000000000000 offset, 20 functions] `.?AVhkMemoryMeshBody@@` -`class hkMeshMaterial`: VTable [0x000000000314C3E8, 0x0000000000000000 offset, 11 functions] `.?AVhkMeshMaterial@@` -`class hkMemoryMeshMaterial`: VTable [0x000000000314C460, 0x0000000000000000 offset, 11 functions] `.?AVhkMemoryMeshMaterial@@` -`class hkMeshShape`: VTable [0x000000000314C4D8, 0x0000000000000000 offset, 8 functions] `.?AVhkMeshShape@@` -`class hkMemoryMeshShape`: VTable [0x000000000314C530, 0x0000000000000000 offset, 8 functions] `.?AVhkMemoryMeshShape@@` -`class hkMeshVertexBuffer`: VTable [0x000000000314C588, 0x0000000000000000 offset, 14 functions] `.?AVhkMeshVertexBuffer@@` -`class hkMemoryMeshVertexBuffer`: VTable [0x000000000314C618, 0x0000000000000000 offset, 14 functions] `.?AVhkMemoryMeshVertexBuffer@@` -`class hkMultipleVertexBuffer`: VTable [0x000000000314C6A8, 0x0000000000000000 offset, 14 functions] `.?AVhkMultipleVertexBuffer@@` -`class hkKdTreeBundleCastCollector`: VTable [0x000000000314C758, 0x0000000000000000 offset, 3 functions] `.?AVhkKdTreeBundleCastCollector@@` -`class hkKdTreeBuildInput::Mediator`: VTable [0x000000000314C800, 0x0000000000000000 offset, 6 functions] `.?AVMediator@hkKdTreeBuildInput@@` -`class hkpCollidableMediator`: VTable [0x000000000314C848, 0x0000000000000000 offset, 6 functions] `.?AVhkpCollidableMediator@@` -`class hkKdTreeCpuBroadphaseBundleCastCollector`: VTable [0x000000000314C9B0, 0x0000000000000000 offset, 3 functions] `.?AVhkKdTreeCpuBroadphaseBundleCastCollector@@` -`class NiAllocator`: VTable [0x000000000314CAF8, 0x0000000000000000 offset, 10 functions] `.?AVNiAllocator@@` -`class BSNiAllocator`: VTable [0x000000000314CB68, 0x0000000000000000 offset, 10 functions] `.?AVBSNiAllocator@@` -`class NiStandardAllocator`: VTable [0x000000000314CC38, 0x0000000000000000 offset, 10 functions] `.?AVNiStandardAllocator@@` -`class NiSearchPath`: VTable [0x000000000314CF68, 0x0000000000000000 offset, 3 functions] `.?AVNiSearchPath@@` -`class NiFile`: VTable [0x000000000314D040, 0x0000000000000000 offset, 8 functions] `.?AVNiFile@@` -`class NiBinaryStream`: VTable [0x000000000314D0A0, 0x0000000000000000 offset, 6 functions] `.?AVNiBinaryStream@@` -`class NiLogBehavior`: VTable [0x000000000314D1B8, 0x0000000000000000 offset, 2 functions] `.?AVNiLogBehavior@@` -`class NiThread`: VTable [0x000000000314D270, 0x0000000000000000 offset, 1 functions] `.?AVNiThread@@` -`class BSStringPool::IterationCallback`: VTable [0x000000000314D658, 0x0000000000000000 offset, 3 functions] `.?AVIterationCallback@BSStringPool@@` -`struct `void __cdecl UnitTestBSFixedString(void)'::`2'::IterationTester`: VTable [0x000000000314DB88, 0x0000000000000000 offset, 3 functions] `.?AUIterationTester@?1??UnitTestBSFixedString@@YAXXZ@` -`class BSFile`: VTable [0x000000000314DE68, 0x0000000000000000 offset, 19 functions] `.?AVBSFile@@` -`class BSSystemFileAsyncFunctor`: VTable [0x000000000314E0C0, 0x0000000000000000 offset, 2 functions] `.?AVBSSystemFileAsyncFunctor@@` -`class BSSystemFileStorage`: VTable [0x000000000314E6E0, 0x0000000000000000 offset, 6 functions] `.?AVBSSystemFileStorage@@` -`class `anonymous namespace'::TestObjectBase`: VTable [0x000000000314EB58, 0x0000000000000000 offset, 1 functions] `.?AVTestObjectBase@?A0xb58fc621@@` -`class `anonymous namespace'::TestObjectDerived`: VTable [0x000000000314EB70, 0x0000000000000000 offset, 1 functions] `.?AVTestObjectDerived@?A0xb58fc621@@` -`class Archive`: VTable [0x000000000314F470, 0x0000000000000000 offset, 19 functions] `.?AVArchive@@` -`class Archive`: VTable [0x000000000314F530, 0x0000000000000180 offset, 2 functions] `.?AVArchive@@` -`class ArchiveFile`: VTable [0x000000000314F550, 0x0000000000000000 offset, 19 functions] `.?AVArchiveFile@@` -`class CompressedArchiveFile`: VTable [0x000000000314F610, 0x0000000000000000 offset, 19 functions] `.?AVCompressedArchiveFile@@` -`class BSJobs::JobThread`: VTable [0x000000000314F860, 0x0000000000000000 offset, 3 functions] `.?AVJobThread@BSJobs@@` -`class BSSearchPath`: VTable [0x0000000003150558, 0x0000000000000000 offset, 4 functions] `.?AVBSSearchPath@@` -`class BSTaskletManagerCallback`: VTable [0x00000000031505B8, 0x0000000000000000 offset, 2 functions] `.?AVBSTaskletManagerCallback@@` -`class BSTaskletManager`: VTable [0x00000000031505D8, 0x0000000000000000 offset, 10 functions] `.?AVBSTaskletManager@@` -`class BSTaskletGroupData`: VTable [0x0000000003150648, 0x0000000000000000 offset, 5 functions] `.?AVBSTaskletGroupData@@` -`class BSSocket`: VTable [0x0000000003150688, 0x0000000000000000 offset, 4 functions] `.?AVBSSocket@@` -`class UnitTest_BSStreamParserStream`: VTable [0x0000000003150820, 0x0000000000000000 offset, 6 functions] `.?AVUnitTest_BSStreamParserStream@@` -`class UnitTest_BSStreamParserData`: VTable [0x00000000031508C0, 0x0000000000000000 offset, 4 functions] `.?AVUnitTest_BSStreamParserData@@` -`class BSWin32TaskletManager`: VTable [0x0000000003150B18, 0x0000000000000000 offset, 10 functions] `.?AVBSWin32TaskletManager@@` -`class BSWin32TaskletGroupData`: VTable [0x0000000003150BE8, 0x0000000000000000 offset, 5 functions] `.?AVBSWin32TaskletGroupData@@` -`class BSResource::StreamBase`: VTable [0x0000000003151CF8, 0x0000000000000000 offset, 5 functions] `.?AVStreamBase@BSResource@@` -`class BSResource::Stream`: VTable [0x0000000003151D38, 0x0000000000000000 offset, 12 functions] `.?AVStream@BSResource@@` -`class BSResource::`anonymous namespace'::GlobalLocations`: VTable [0x0000000003151DB8, 0x0000000000000000 offset, 12 functions] `.?AVGlobalLocations@?A0x6fac8b0d@BSResource@@` -`struct BSResource::`anonymous namespace'::LocationTree`: VTable [0x0000000003151E38, 0x0000000000000000 offset, 12 functions] `.?AULocationTree@?A0x6fac8b0d@BSResource@@` -`class BSResource::`anonymous namespace'::GlobalPaths`: VTable [0x0000000003151EB8, 0x0000000000000000 offset, 12 functions] `.?AVGlobalPaths@?A0x6fac8b0d@BSResource@@` -`struct BSResource::`anonymous namespace'::DevNull::NullStream`: VTable [0x0000000003151F38, 0x0000000000000000 offset, 12 functions] `.?AUNullStream@DevNull@?A0x6fac8b0d@BSResource@@` -`class BSResource::`anonymous namespace'::DevNull`: VTable [0x0000000003151FB8, 0x0000000000000000 offset, 12 functions] `.?AVDevNull@?A0x6fac8b0d@BSResource@@` -`class BSResource::`anonymous namespace'::EventSources`: VTable [0x0000000003152038, 0x0000000000000000 offset, 1 functions] `.?AVEventSources@?A0x6fac8b0d@BSResource@@` -`class BSResource::`anonymous namespace'::ArchiveRegistrationTaskData`: VTable [0x0000000003152090, 0x0000000000000000 offset, 4 functions] `.?AVArchiveRegistrationTaskData@?A0x6fac8b0d@BSResource@@` -`class `void __cdecl BSResource::RegisterPrefix(char const * __ptr64,char const * __ptr64,class BSResource::Location * __ptr64)'::`2'::Traverser`: VTable [0x00000000031520C0, 0x0000000000000000 offset, 2 functions] `.?AVTraverser@?1??RegisterPrefix@BSResource@@YAXPEBD0PEAVLocation@2@@Z@` -`class BSResource::AsyncStream`: VTable [0x00000000031533D8, 0x0000000000000000 offset, 11 functions] `.?AVAsyncStream@BSResource@@` -`class BSResource::CacheDrive::Op`: VTable [0x0000000003153450, 0x0000000000000000 offset, 6 functions] `.?AVOp@CacheDrive@BSResource@@` -`class BSResource::ArchiveStream`: VTable [0x0000000003153498, 0x0000000000000000 offset, 13 functions] `.?AVArchiveStream@BSResource@@` -`class BSResource::CompressedArchiveStream`: VTable [0x0000000003153520, 0x0000000000000000 offset, 13 functions] `.?AVCompressedArchiveStream@BSResource@@` -`class BSResource::ArchiveManager`: VTable [0x00000000031535A8, 0x0000000000000000 offset, 1 functions] `.?AVArchiveManager@BSResource@@` -`class BSResource::`anonymous namespace'::AsyncArchiveStream`: VTable [0x00000000031535C0, 0x0000000000000000 offset, 11 functions] `.?AVAsyncArchiveStream@?A0xba18d15f@BSResource@@` -`class BSResource::CacheArchiveOp`: VTable [0x0000000003153698, 0x0000000000000000 offset, 6 functions] `.?AVCacheArchiveOp@BSResource@@` -`class BSResource::IEntryDB::PostFlushNotify`: VTable [0x0000000003154310, 0x0000000000000000 offset, 3 functions] `.?AVPostFlushNotify@IEntryDB@BSResource@@` -`class BSResource::IEntryDB`: VTable [0x0000000003154338, 0x0000000000000000 offset, 6 functions] `.?AVIEntryDB@BSResource@@` -`class BSResource::EntryDB`: VTable [0x0000000003154380, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UTestTraits@?A0x70916226@@@BSResource@@` -`struct `anonymous namespace'::DevNull::NullStream`: VTable [0x00000000031543C8, 0x0000000000000000 offset, 12 functions] `.?AUNullStream@DevNull@?A0x70916226@@` -`struct `anonymous namespace'::DevNull`: VTable [0x0000000003154448, 0x0000000000000000 offset, 12 functions] `.?AUDevNull@?A0x70916226@@` -`class `anonymous namespace'::TestThread`: VTable [0x00000000031544C8, 0x0000000000000000 offset, 3 functions] `.?AVTestThread@?A0x70916226@@` -`struct BSResource::`anonymous namespace'::LooseFileSBTraits::AsyncFunctor`: VTable [0x0000000003154B68, 0x0000000000000000 offset, 2 functions] `.?AUAsyncFunctor@LooseFileSBTraits@?A0x7960c620@BSResource@@` -`struct BSResource::`anonymous namespace'::LooseFileStreamBase`: VTable [0x0000000003154B88, 0x0000000000000000 offset, 1 functions] `.?AULooseFileStreamBase@?A0x7960c620@BSResource@@` -`class BSResource::`anonymous namespace'::LooseFileAsyncBase::FunctorType`: VTable [0x0000000003154BA0, 0x0000000000000000 offset, 2 functions] `.?AVFunctorType@LooseFileAsyncBase@?A0x7960c620@BSResource@@` -`class BSResource::`anonymous namespace'::LooseFileAsyncChild`: VTable [0x0000000003154BC0, 0x0000000000000000 offset, 11 functions] `.?AVLooseFileAsyncChild@?A0x7960c620@BSResource@@` -`class BSResource::`anonymous namespace'::LooseFileAsyncStream`: VTable [0x0000000003154C38, 0x0000000000000000 offset, 1 functions] `.?AVLooseFileAsyncStream@?A0x7960c620@BSResource@@` -`class BSResource::`anonymous namespace'::LooseFileAsyncStream`: VTable [0x0000000003154C50, 0x0000000000000130 offset, 11 functions] `.?AVLooseFileAsyncStream@?A0x7960c620@BSResource@@` -`class BSResource::`anonymous namespace'::LooseFileStream`: VTable [0x0000000003154D50, 0x0000000000000000 offset, 1 functions] `.?AVLooseFileStream@?A0x7960c620@BSResource@@` -`class BSResource::`anonymous namespace'::LooseFileStream`: VTable [0x0000000003154D68, 0x0000000000000130 offset, 12 functions] `.?AVLooseFileStream@?A0x7960c620@BSResource@@` -`class BSResource::`anonymous namespace'::DefaultLocationData`: VTable [0x00000000031553E0, 0x0000000000000000 offset, 1 functions] `.?AVDefaultLocationData@?A0x90c30b45@BSResource@@` -`class BSResource::CacheDrive::Task`: VTable [0x0000000003155B00, 0x0000000000000000 offset, 8 functions] `.?AVTask@CacheDrive@BSResource@@` -`class BSResource::CacheDrive`: VTable [0x0000000003155B58, 0x0000000000000000 offset, 12 functions] `.?AVCacheDrive@BSResource@@` -`class BSResource::CacheDrive::Impl`: VTable [0x0000000003155CC0, 0x0000000000000000 offset, 3 functions] `.?AVImpl@CacheDrive@BSResource@@` -`class `anonymous namespace'::DeepCopyStream`: VTable [0x0000000003156240, 0x0000000000000000 offset, 24 functions] `.?AVDeepCopyStream@?A0x9521d9d2@@` -`class NiObjectNET`: VTable [0x00000000031566B0, 0x0000000000000000 offset, 39 functions] `.?AVNiObjectNET@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x00000000031570D0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiAVObject@@@@V?$NiTNewInterface@V?$NiPointer@VNiAVObject@@@@@@@@` -`class NiTObjectArray >`: VTable [0x00000000031570E8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiAVObject@@@@@@` -`class NiNode`: VTable [0x0000000003157100, 0x0000000000000000 offset, 64 functions] `.?AVNiNode@@` -`class NiSkinInstance`: VTable [0x00000000031575E0, 0x0000000000000000 offset, 40 functions] `.?AVNiSkinInstance@@` -`class BSDismemberSkinInstance`: VTable [0x0000000003157770, 0x0000000000000000 offset, 40 functions] `.?AVBSDismemberSkinInstance@@` -`class NiAVObject`: VTable [0x0000000003157B78, 0x0000000000000000 offset, 55 functions] `.?AVNiAVObject@@` -`class BSDynamicLines`: VTable [0x00000000031581A8, 0x0000000000000000 offset, 58 functions] `.?AVBSDynamicLines@@` -`class NiCamera`: VTable [0x0000000003158580, 0x0000000000000000 offset, 55 functions] `.?AVNiCamera@@` -`class NiTexture`: VTable [0x0000000003158A18, 0x0000000000000000 offset, 45 functions] `.?AVNiTexture@@` -`class NiSourceTexture`: VTable [0x0000000003158BD8, 0x0000000000000000 offset, 45 functions] `.?AVNiSourceTexture@@` -`class BSTriShape`: VTable [0x0000000003158F58, 0x0000000000000000 offset, 58 functions] `.?AVBSTriShape@@` -`class BSSkinnedDecalTriShape`: VTable [0x0000000003159190, 0x0000000000000000 offset, 58 functions] `.?AVBSSkinnedDecalTriShape@@` -`class NiSwitchNode`: VTable [0x0000000003159620, 0x0000000000000000 offset, 64 functions] `.?AVNiSwitchNode@@` -`class NiStream::BackgroundLoadProcedure`: VTable [0x000000000315A428, 0x0000000000000000 offset, 2 functions] `.?AVBackgroundLoadProcedure@NiStream@@` -`class NiTLargeArray,class NiTNewInterface > >`: VTable [0x000000000315A448, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@V?$NiPointer@VNiObject@@@@V?$NiTNewInterface@V?$NiPointer@VNiObject@@@@@@@@` -`class NiTLargeObjectArray >`: VTable [0x000000000315A460, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeObjectArray@V?$NiPointer@VNiObject@@@@@@` -`class NiTLargeArray >`: VTable [0x000000000315A478, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@IV?$NiTMallocInterface@I@@@@` -`class NiTLargePrimitiveArray`: VTable [0x000000000315A490, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargePrimitiveArray@I@@` -`class NiTLargeArray >`: VTable [0x000000000315A4A8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeArray@VBSFixedString@@V?$NiTNewInterface@VBSFixedString@@@@@@` -`class NiTLargeObjectArray`: VTable [0x000000000315A4C0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTLargeObjectArray@VBSFixedString@@@@` -`class NiTMapBase,class NiObject const * __ptr64,unsigned int>`: VTable [0x000000000315A4D8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBVNiObject@@I@@` -`class NiTPointerMap`: VTable [0x000000000315A528, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBVNiObject@@I@@` -`class NiStream`: VTable [0x000000000315A578, 0x0000000000000000 offset, 24 functions] `.?AVNiStream@@` -`class NiTMapBase,char const * __ptr64,class NiObject * __ptr64 (__cdecl*)(void)>`: VTable [0x000000000315A668, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBDP6APEAVNiObject@@XZ@@` -`class NiTPointerMap`: VTable [0x000000000315A6B8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBDP6APEAVNiObject@@XZ@@` -`class NiTStringTemplateMap,class NiObject * __ptr64 (__cdecl*)(void)>`: VTable [0x000000000315A708, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTPointerMap@PEBDP6APEAVNiObject@@XZ@@P6APEAVNiObject@@XZ@@` -`class NiTStringPointerMap`: VTable [0x000000000315A758, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringPointerMap@P6APEAVNiObject@@XZ@@` -`class NiTArray >`: VTable [0x000000000315A7A8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@P6AXAEAVNiStream@@PEAVNiObject@@@ZV?$NiTMallocInterface@P6AXAEAVNiStream@@PEAVNiObject@@@Z@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000315A7C0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@P6AXAEAVNiStream@@PEAVNiObject@@@Z@@` -`class NiTMapBase,char const * __ptr64,unsigned short>`: VTable [0x000000000315AA18, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBDG@@` -`class NiTPointerMap`: VTable [0x000000000315AA68, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBDG@@` -`class NiTStringTemplateMap,unsigned short>`: VTable [0x000000000315AAB8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTPointerMap@PEBDG@@G@@` -`class NiTStringPointerMap`: VTable [0x000000000315AB08, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringPointerMap@G@@` -`class NiCollisionObject`: VTable [0x000000000315ABA0, 0x0000000000000000 offset, 44 functions] `.?AVNiCollisionObject@@` -`class NiDirectionalLight`: VTable [0x000000000315AE10, 0x0000000000000000 offset, 55 functions] `.?AVNiDirectionalLight@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x000000000315B078, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiRefObject@@@@V?$NiTNewInterface@V?$NiPointer@VNiRefObject@@@@@@@@` -`class NiTObjectArray >`: VTable [0x000000000315B090, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiRefObject@@@@@@` -`class NiLight`: VTable [0x000000000315B2C8, 0x0000000000000000 offset, 55 functions] `.?AVNiLight@@` -`class NiStringsExtraData`: VTable [0x000000000315B628, 0x0000000000000000 offset, 41 functions] `.?AVNiStringsExtraData@@` -`class BSResourceNiBinaryStream`: VTable [0x000000000315B8E8, 0x0000000000000000 offset, 6 functions] `.?AVBSResourceNiBinaryStream@@` -`class BSFlattenedBoneTree`: VTable [0x000000000315BCE8, 0x0000000000000000 offset, 64 functions] `.?AVBSFlattenedBoneTree@@` -`class NiStringExtraData`: VTable [0x000000000315C2E0, 0x0000000000000000 offset, 41 functions] `.?AVNiStringExtraData@@` -`class NiTimeController`: VTable [0x000000000315C548, 0x0000000000000000 offset, 49 functions] `.?AVNiTimeController@@` -`class NiAVObjectPalette`: VTable [0x000000000315CB30, 0x0000000000000000 offset, 42 functions] `.?AVNiAVObjectPalette@@` -`class NiDefaultAVObjectPalette`: VTable [0x000000000315CCD0, 0x0000000000000000 offset, 44 functions] `.?AVNiDefaultAVObjectPalette@@` -`class NiTriShape`: VTable [0x000000000315D108, 0x0000000000000000 offset, 62 functions] `.?AVNiTriShape@@` -`class NiShadeProperty`: VTable [0x000000000315D4B0, 0x0000000000000000 offset, 44 functions] `.?AVNiShadeProperty@@` -`class NiGeometryData`: VTable [0x000000000315D7A8, 0x0000000000000000 offset, 44 functions] `.?AVNiGeometryData@@` -`class NiTriStripsData`: VTable [0x000000000315DCF8, 0x0000000000000000 offset, 48 functions] `.?AVNiTriStripsData@@` -`class NiTriStrips`: VTable [0x000000000315E190, 0x0000000000000000 offset, 61 functions] `.?AVNiTriStrips@@` -`class NiPointLight`: VTable [0x000000000315E4C8, 0x0000000000000000 offset, 55 functions] `.?AVNiPointLight@@` -`class BSDynamicTriShape`: VTable [0x000000000315E8B0, 0x0000000000000000 offset, 58 functions] `.?AVBSDynamicTriShape@@` -`class NiGeometry`: VTable [0x000000000315ED50, 0x0000000000000000 offset, 61 functions] `.?AVNiGeometry@@` -`class NiAmbientLight`: VTable [0x000000000315F068, 0x0000000000000000 offset, 55 functions] `.?AVNiAmbientLight@@` -`class NiExtraData`: VTable [0x000000000315F520, 0x0000000000000000 offset, 41 functions] `.?AVNiExtraData@@` -`class NiCullingProcess`: VTable [0x000000000315F720, 0x0000000000000000 offset, 25 functions] `.?AVNiCullingProcess@@` -`class BSGeometry`: VTable [0x000000000315F988, 0x0000000000000000 offset, 58 functions] `.?AVBSGeometry@@` -`class NiTriBasedGeom`: VTable [0x000000000315FD60, 0x0000000000000000 offset, 61 functions] `.?AVNiTriBasedGeom@@` -`class NiVertWeightsExtraData`: VTable [0x00000000031604E8, 0x0000000000000000 offset, 41 functions] `.?AVNiVertWeightsExtraData@@` -`class BSLines`: VTable [0x0000000003160988, 0x0000000000000000 offset, 58 functions] `.?AVBSLines@@` -`class NiSkinPartition`: VTable [0x0000000003160DB8, 0x0000000000000000 offset, 40 functions] `.?AVNiSkinPartition@@` -`class NiTriShapeData`: VTable [0x00000000031610B8, 0x0000000000000000 offset, 48 functions] `.?AVNiTriShapeData@@` -`class NiTriBasedGeomData`: VTable [0x0000000003161330, 0x0000000000000000 offset, 48 functions] `.?AVNiTriBasedGeomData@@` -`class NiSkinData`: VTable [0x00000000031616C8, 0x0000000000000000 offset, 39 functions] `.?AVNiSkinData@@` -`class NiAlphaAccumulator`: VTable [0x00000000031619E0, 0x0000000000000000 offset, 44 functions] `.?AVNiAlphaAccumulator@@` -`class NiBinaryExtraData`: VTable [0x0000000003161C98, 0x0000000000000000 offset, 41 functions] `.?AVNiBinaryExtraData@@` -`class NiBooleanExtraData`: VTable [0x0000000003161F08, 0x0000000000000000 offset, 41 functions] `.?AVNiBooleanExtraData@@` -`class NiBSPNode`: VTable [0x00000000031621B8, 0x0000000000000000 offset, 64 functions] `.?AVNiBSPNode@@` -`class NiColorExtraData`: VTable [0x0000000003162510, 0x0000000000000000 offset, 41 functions] `.?AVNiColorExtraData@@` -`class NiFloatExtraData`: VTable [0x0000000003162788, 0x0000000000000000 offset, 41 functions] `.?AVNiFloatExtraData@@` -`class NiFloatsExtraData`: VTable [0x0000000003162A60, 0x0000000000000000 offset, 41 functions] `.?AVNiFloatsExtraData@@` -`class NiFogProperty`: VTable [0x0000000003162D40, 0x0000000000000000 offset, 41 functions] `.?AVNiFogProperty@@` -`class NiIntegerExtraData`: VTable [0x0000000003163018, 0x0000000000000000 offset, 41 functions] `.?AVNiIntegerExtraData@@` -`class NiIntegersExtraData`: VTable [0x00000000031632F8, 0x0000000000000000 offset, 41 functions] `.?AVNiIntegersExtraData@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x00000000031634E8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiMetricsOutputModule@@@@V?$NiTNewInterface@V?$NiPointer@VNiMetricsOutputModule@@@@@@@@` -`class NiTObjectArray >`: VTable [0x0000000003163500, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiMetricsOutputModule@@@@@@` -`class NiParticlesData`: VTable [0x0000000003163988, 0x0000000000000000 offset, 43 functions] `.?AVNiParticlesData@@` -`class NiParticles`: VTable [0x0000000003163E80, 0x0000000000000000 offset, 58 functions] `.?AVNiParticles@@` -`class NiParticleMeshesData`: VTable [0x00000000031641E8, 0x0000000000000000 offset, 43 functions] `.?AVNiParticleMeshesData@@` -`class NiParticleMeshes`: VTable [0x0000000003164420, 0x0000000000000000 offset, 58 functions] `.?AVNiParticleMeshes@@` -`class NiSpotLight`: VTable [0x0000000003164728, 0x0000000000000000 offset, 55 functions] `.?AVNiSpotLight@@` -`class NiSwitchStringExtraData`: VTable [0x0000000003164AC0, 0x0000000000000000 offset, 41 functions] `.?AVNiSwitchStringExtraData@@` -`class NiVectorExtraData`: VTable [0x0000000003164D38, 0x0000000000000000 offset, 41 functions] `.?AVNiVectorExtraData@@` -`class NiTArray >`: VTable [0x00000000031650D8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEADV?$NiTMallocInterface@PEAD@@@@` -`class NiTPrimitiveArray`: VTable [0x00000000031650F0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAD@@` -`class BSLODTriShape`: VTable [0x00000000031651E0, 0x0000000000000000 offset, 62 functions] `.?AVBSLODTriShape@@` -`class NiAdditionalGeometryData`: VTable [0x00000000031655E0, 0x0000000000000000 offset, 39 functions] `.?AVNiAdditionalGeometryData@@` -`class BSSegmentedTriShape`: VTable [0x0000000003165E78, 0x0000000000000000 offset, 62 functions] `.?AVBSSegmentedTriShape@@` -`class NiBackToFrontAccumulator`: VTable [0x00000000031662F8, 0x0000000000000000 offset, 44 functions] `.?AVNiBackToFrontAccumulator@@` -`class NiAccumulator`: VTable [0x0000000003166508, 0x0000000000000000 offset, 44 functions] `.?AVNiAccumulator@@` -`class NiTArray >`: VTable [0x0000000003166808, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVRecord@NiPick@@V?$NiTScrapHeapInterface@PEAVRecord@NiPick@@@@@@` -`class NiTScrapArray`: VTable [0x0000000003166820, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTScrapArray@PEAVRecord@NiPick@@@@` -`class NiPick::Results`: VTable [0x0000000003166838, 0x0000000000000000 offset, 1 functions] `.?AVResults@NiPick@@` -`class NiCollisionTraversals::IFindIntersections`: VTable [0x0000000003166A90, 0x0000000000000000 offset, 3 functions] `.?AVIFindIntersections@NiCollisionTraversals@@` -`class NiCollisionData`: VTable [0x0000000003166C80, 0x0000000000000000 offset, 45 functions] `.?AVNiCollisionData@@` -`class NiBoundingVolume`: VTable [0x0000000003167098, 0x0000000000000000 offset, 12 functions] `.?AVNiBoundingVolume@@` -`class NiBoxBV`: VTable [0x0000000003167118, 0x0000000000000000 offset, 12 functions] `.?AVNiBoxBV@@` -`class NiCapsuleBV`: VTable [0x0000000003167238, 0x0000000000000000 offset, 12 functions] `.?AVNiCapsuleBV@@` -`class NiHalfSpaceBV`: VTable [0x0000000003167390, 0x0000000000000000 offset, 12 functions] `.?AVNiHalfSpaceBV@@` -`class NiSphereBV`: VTable [0x0000000003167458, 0x0000000000000000 offset, 12 functions] `.?AVNiSphereBV@@` -`class NiTArray >`: VTable [0x00000000031676F8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVNiBoundingVolume@@V?$NiTMallocInterface@PEAVNiBoundingVolume@@@@@@` -`class NiTPrimitiveArray`: VTable [0x0000000003167710, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVNiBoundingVolume@@@@` -`class NiUnionBV`: VTable [0x0000000003167728, 0x0000000000000000 offset, 12 functions] `.?AVNiUnionBV@@` -`class NiOBBRoot`: VTable [0x0000000003167858, 0x0000000000000000 offset, 4 functions] `.?AVNiOBBRoot@@` -`class NiIntersector`: VTable [0x0000000003167888, 0x0000000000000000 offset, 5 functions] `.?AVNiIntersector@@` -`class NiBoxSphereIntersector`: VTable [0x00000000031678C8, 0x0000000000000000 offset, 5 functions] `.?AVNiBoxSphereIntersector@@` -`class NiBoxCapsuleIntersector`: VTable [0x0000000003167908, 0x0000000000000000 offset, 5 functions] `.?AVNiBoxCapsuleIntersector@@` -`class NiCapsuleCapsuleIntersector`: VTable [0x0000000003167948, 0x0000000000000000 offset, 5 functions] `.?AVNiCapsuleCapsuleIntersector@@` -`class NiCapsuleSphereIntersector`: VTable [0x0000000003167988, 0x0000000000000000 offset, 5 functions] `.?AVNiCapsuleSphereIntersector@@` -`class NiCapsuleTriIntersector`: VTable [0x00000000031679C8, 0x0000000000000000 offset, 5 functions] `.?AVNiCapsuleTriIntersector@@` -`class NiSphereTriIntersector`: VTable [0x0000000003167A08, 0x0000000000000000 offset, 5 functions] `.?AVNiSphereTriIntersector@@` -`class NiOBBNode`: VTable [0x0000000003167AA8, 0x0000000000000000 offset, 5 functions] `.?AVNiOBBNode@@` -`class NiOBBLeaf`: VTable [0x0000000003167B48, 0x0000000000000000 offset, 5 functions] `.?AVNiOBBLeaf@@` -`class NiControllerSequence`: VTable [0x0000000003168428, 0x0000000000000000 offset, 40 functions] `.?AVNiControllerSequence@@` -`class NiMultiTargetTransformController`: VTable [0x00000000031685D8, 0x0000000000000000 offset, 62 functions] `.?AVNiMultiTargetTransformController@@` -`class NiTextKeyMatch`: VTable [0x0000000003168838, 0x0000000000000000 offset, 3 functions] `.?AVNiTextKeyMatch@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003169628, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiControllerSequence@@@@V?$NiTNewInterface@V?$NiPointer@VNiControllerSequence@@@@@@@@` -`class NiTObjectArray >`: VTable [0x0000000003169640, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiControllerSequence@@@@@@` -`class NiControllerManager`: VTable [0x0000000003169658, 0x0000000000000000 offset, 50 functions] `.?AVNiControllerManager@@` -`class NiBlendInterpolator`: VTable [0x000000000316A1D0, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendInterpolator@@` -`class BSMultiTargetTreadTransfController`: VTable [0x000000000316A940, 0x0000000000000000 offset, 62 functions] `.?AVBSMultiTargetTreadTransfController@@` -`class NiInterpController`: VTable [0x000000000316ACD8, 0x0000000000000000 offset, 62 functions] `.?AVNiInterpController@@` -`class NiKeyBasedInterpolator`: VTable [0x000000000316B020, 0x0000000000000000 offset, 66 functions] `.?AVNiKeyBasedInterpolator@@` -`class NiFloatInterpolator`: VTable [0x000000000316B4A8, 0x0000000000000000 offset, 66 functions] `.?AVNiFloatInterpolator@@` -`class NiColorInterpolator`: VTable [0x000000000316B990, 0x0000000000000000 offset, 66 functions] `.?AVNiColorInterpolator@@` -`class NiTransformController`: VTable [0x000000000316BDA8, 0x0000000000000000 offset, 63 functions] `.?AVNiTransformController@@` -`class NiBlendAccumTransformInterpolator`: VTable [0x000000000316C010, 0x0000000000000000 offset, 64 functions] `.?AVNiBlendAccumTransformInterpolator@@` -`class NiTArray >`: VTable [0x000000000316C398, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAUBSAnimReceiverType@BSAnimNoteListener@@V?$NiTMallocInterface@PEAUBSAnimReceiverType@BSAnimNoteListener@@@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000316C3B0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAUBSAnimReceiverType@BSAnimNoteListener@@@@` -`class NiPosData`: VTable [0x000000000316C5D8, 0x0000000000000000 offset, 39 functions] `.?AVNiPosData@@` -`class NiBlendBoolInterpolator`: VTable [0x000000000316C7E8, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendBoolInterpolator@@` -`class NiBlendColorInterpolator`: VTable [0x000000000316CB48, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendColorInterpolator@@` -`class NiBlendFloatInterpolator`: VTable [0x000000000316CE98, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendFloatInterpolator@@` -`class NiBlendPoint3Interpolator`: VTable [0x000000000316D1E8, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendPoint3Interpolator@@` -`class NiBlendQuaternionInterpolator`: VTable [0x000000000316D558, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendQuaternionInterpolator@@` -`class NiBlendTransformInterpolator`: VTable [0x000000000316D8C8, 0x0000000000000000 offset, 63 functions] `.?AVNiBlendTransformInterpolator@@` -`class NiBoolData`: VTable [0x000000000316DCB0, 0x0000000000000000 offset, 39 functions] `.?AVNiBoolData@@` -`class NiBoolInterpolator`: VTable [0x000000000316DF60, 0x0000000000000000 offset, 66 functions] `.?AVNiBoolInterpolator@@` -`class NiBoolTimelineInterpolator`: VTable [0x000000000316E308, 0x0000000000000000 offset, 66 functions] `.?AVNiBoolTimelineInterpolator@@` -`class NiBSplineBasisData`: VTable [0x000000000316E680, 0x0000000000000000 offset, 39 functions] `.?AVNiBSplineBasisData@@` -`class NiBSplineData`: VTable [0x000000000316E910, 0x0000000000000000 offset, 39 functions] `.?AVNiBSplineData@@` -`class NiBSplineColorInterpolator`: VTable [0x000000000316EBB0, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineColorInterpolator@@` -`class NiBSplineCompColorInterpolator`: VTable [0x000000000316EF48, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineCompColorInterpolator@@` -`class NiBSplineCompFloatInterpolator`: VTable [0x000000000316F2D0, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineCompFloatInterpolator@@` -`class NiBSplineCompPoint3Interpolator`: VTable [0x000000000316F650, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineCompPoint3Interpolator@@` -`class NiBSplineCompTransformInterpolator`: VTable [0x000000000316F9D0, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineCompTransformInterpolator@@` -`class NiBSplineFloatInterpolator`: VTable [0x000000000316FD60, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineFloatInterpolator@@` -`class NiBSplinePoint3Interpolator`: VTable [0x00000000031700F8, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplinePoint3Interpolator@@` -`class NiBSplineTransformInterpolator`: VTable [0x0000000003170498, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineTransformInterpolator@@` -`class NiColorExtraDataController`: VTable [0x00000000031708C8, 0x0000000000000000 offset, 63 functions] `.?AVNiColorExtraDataController@@` -`class NiFloatExtraDataController`: VTable [0x0000000003170C80, 0x0000000000000000 offset, 63 functions] `.?AVNiFloatExtraDataController@@` -`class NiFloatsExtraDataController`: VTable [0x00000000031710C0, 0x0000000000000000 offset, 63 functions] `.?AVNiFloatsExtraDataController@@` -`class NiFloatsExtraDataPoint3Controller`: VTable [0x00000000031714D0, 0x0000000000000000 offset, 63 functions] `.?AVNiFloatsExtraDataPoint3Controller@@` -`class NiTMapBase,char const * __ptr64,class NiPointer >`: VTable [0x0000000003171A08, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEBDV?$NiPointer@VNiSequence@@@@@@` -`class NiTPointerMap >`: VTable [0x0000000003171A58, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEBDV?$NiPointer@VNiSequence@@@@@@` -`class NiTStringTemplateMap >,class NiPointer >`: VTable [0x0000000003171AA8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringTemplateMap@V?$NiTPointerMap@PEBDV?$NiPointer@VNiSequence@@@@@@V?$NiPointer@VNiSequence@@@@@@` -`class NiTStringPointerMap >`: VTable [0x0000000003171AF8, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTStringPointerMap@V?$NiPointer@VNiSequence@@@@@@` -`class NiKeyframeManager`: VTable [0x0000000003171B48, 0x0000000000000000 offset, 49 functions] `.?AVNiKeyframeManager@@` -`class NiLightColorController`: VTable [0x0000000003171E98, 0x0000000000000000 offset, 64 functions] `.?AVNiLightColorController@@` -`class NiLightDimmerController`: VTable [0x0000000003172248, 0x0000000000000000 offset, 64 functions] `.?AVNiLightDimmerController@@` -`class NiLookAtController`: VTable [0x0000000003172598, 0x0000000000000000 offset, 49 functions] `.?AVNiLookAtController@@` -`class NiLookAtInterpolator`: VTable [0x0000000003172918, 0x0000000000000000 offset, 59 functions] `.?AVNiLookAtInterpolator@@` -`class NiMorphData`: VTable [0x0000000003172D70, 0x0000000000000000 offset, 39 functions] `.?AVNiMorphData@@` -`class NiPathController`: VTable [0x0000000003173128, 0x0000000000000000 offset, 49 functions] `.?AVNiPathController@@` -`class NiPathInterpolator`: VTable [0x0000000003173500, 0x0000000000000000 offset, 66 functions] `.?AVNiPathInterpolator@@` -`class NiPoint3Interpolator`: VTable [0x00000000031738C8, 0x0000000000000000 offset, 66 functions] `.?AVNiPoint3Interpolator@@` -`class NiQuaternionInterpolator`: VTable [0x0000000003173DD8, 0x0000000000000000 offset, 66 functions] `.?AVNiQuaternionInterpolator@@` -`class NiFloatController`: VTable [0x0000000003174160, 0x0000000000000000 offset, 49 functions] `.?AVNiFloatController@@` -`class NiRollController`: VTable [0x0000000003174340, 0x0000000000000000 offset, 49 functions] `.?AVNiRollController@@` -`class NiRotData`: VTable [0x0000000003174658, 0x0000000000000000 offset, 39 functions] `.?AVNiRotData@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003174B18, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiTransformController@@@@V?$NiTNewInterface@V?$NiPointer@VNiTransformController@@@@@@@@` -`class NiTObjectArray >`: VTable [0x0000000003174B30, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiTransformController@@@@@@` -`class NiSequence`: VTable [0x0000000003174B48, 0x0000000000000000 offset, 39 functions] `.?AVNiSequence@@` -`class NiSequenceStreamHelper`: VTable [0x0000000003174D68, 0x0000000000000000 offset, 39 functions] `.?AVNiSequenceStreamHelper@@` -`class NiStringPalette`: VTable [0x0000000003174FC8, 0x0000000000000000 offset, 39 functions] `.?AVNiStringPalette@@` -`class NiTextKeyExtraData`: VTable [0x0000000003175310, 0x0000000000000000 offset, 41 functions] `.?AVNiTextKeyExtraData@@` -`class NiTransformData`: VTable [0x0000000003175628, 0x0000000000000000 offset, 39 functions] `.?AVNiTransformData@@` -`class NiTransformInterpolator`: VTable [0x0000000003175970, 0x0000000000000000 offset, 66 functions] `.?AVNiTransformInterpolator@@` -`class NiUVData`: VTable [0x0000000003175D08, 0x0000000000000000 offset, 39 functions] `.?AVNiUVData@@` -`class NiVisController`: VTable [0x0000000003175FE8, 0x0000000000000000 offset, 64 functions] `.?AVNiVisController@@` -`class BSAnimNotes`: VTable [0x0000000003176370, 0x0000000000000000 offset, 39 functions] `.?AVBSAnimNotes@@` -`class BSAnimNote`: VTable [0x0000000003176620, 0x0000000000000000 offset, 40 functions] `.?AVBSAnimNote@@` -`class BSGrabIKNote`: VTable [0x00000000031767B0, 0x0000000000000000 offset, 40 functions] `.?AVBSGrabIKNote@@` -`class BSLookIKNote`: VTable [0x0000000003176A50, 0x0000000000000000 offset, 40 functions] `.?AVBSLookIKNote@@` -`class BSRotAccumTransfInterpolator`: VTable [0x0000000003176D20, 0x0000000000000000 offset, 66 functions] `.?AVBSRotAccumTransfInterpolator@@` -`class BSTreadTransfInterpolator`: VTable [0x0000000003177180, 0x0000000000000000 offset, 66 functions] `.?AVBSTreadTransfInterpolator@@` -`class BSBlendTreadTransfInterpolator`: VTable [0x00000000031774F0, 0x0000000000000000 offset, 63 functions] `.?AVBSBlendTreadTransfInterpolator@@` -`class BSFrustumFOVController`: VTable [0x00000000031778C8, 0x0000000000000000 offset, 64 functions] `.?AVBSFrustumFOVController@@` -`class NiInterpolator`: VTable [0x0000000003178A20, 0x0000000000000000 offset, 59 functions] `.?AVNiInterpolator@@` -`class NiSingleInterpController`: VTable [0x0000000003178E88, 0x0000000000000000 offset, 63 functions] `.?AVNiSingleInterpController@@` -`class NiBSplineInterpolator`: VTable [0x0000000003179170, 0x0000000000000000 offset, 68 functions] `.?AVNiBSplineInterpolator@@` -`class NiExtraDataController`: VTable [0x00000000031795F0, 0x0000000000000000 offset, 63 functions] `.?AVNiExtraDataController@@` -`class NiPoint3InterpController`: VTable [0x0000000003179920, 0x0000000000000000 offset, 64 functions] `.?AVNiPoint3InterpController@@` -`class NiFloatInterpController`: VTable [0x0000000003179C40, 0x0000000000000000 offset, 64 functions] `.?AVNiFloatInterpController@@` -`class NiBoolInterpController`: VTable [0x000000000317A008, 0x0000000000000000 offset, 64 functions] `.?AVNiBoolInterpController@@` -`class NiParticleSystem`: VTable [0x000000000317AAE0, 0x0000000000000000 offset, 60 functions] `.?AVNiParticleSystem@@` -`class NiPSysData`: VTable [0x000000000317AF68, 0x0000000000000000 offset, 45 functions] `.?AVNiPSysData@@` -`class NiPSysGravityModifier`: VTable [0x000000000317B288, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysGravityModifier@@` -`class NiMeshParticleSystem`: VTable [0x000000000317B5F0, 0x0000000000000000 offset, 60 functions] `.?AVNiMeshParticleSystem@@` -`class NiTArray > * __ptr64,class NiTMallocInterface > * __ptr64> >`: VTable [0x000000000317BB30, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAV?$NiTObjectArray@V?$NiPointer@VNiAVObject@@@@@@V?$NiTMallocInterface@PEAV?$NiTObjectArray@V?$NiPointer@VNiAVObject@@@@@@@@@@` -`class NiTPrimitiveArray > * __ptr64>`: VTable [0x000000000317BB48, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAV?$NiTObjectArray@V?$NiPointer@VNiAVObject@@@@@@@@` -`class NiMeshPSysData`: VTable [0x000000000317BB60, 0x0000000000000000 offset, 45 functions] `.?AVNiMeshPSysData@@` -`class NiPSysAirFieldAirFrictionCtlr`: VTable [0x000000000317BDF8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysAirFieldAirFrictionCtlr@@` -`class NiPSysAirFieldInheritVelocityCtlr`: VTable [0x000000000317C170, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysAirFieldInheritVelocityCtlr@@` -`class NiPSysAirFieldModifier`: VTable [0x000000000317C4E8, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysAirFieldModifier@@` -`class NiPSysAirFieldSpreadCtlr`: VTable [0x000000000317C800, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysAirFieldSpreadCtlr@@` -`class NiPSysAgeDeathModifier`: VTable [0x000000000317CB98, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysAgeDeathModifier@@` -`class NiPSysBombModifier`: VTable [0x000000000317CE88, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysBombModifier@@` -`class NiPSysBoundUpdateModifier`: VTable [0x000000000317D258, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysBoundUpdateModifier@@` -`class NiPSysBoxEmitter`: VTable [0x000000000317D4F8, 0x0000000000000000 offset, 48 functions] `.?AVNiPSysBoxEmitter@@` -`class NiPSysColliderManager`: VTable [0x000000000317D810, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysColliderManager@@` -`class NiPSysColorModifier`: VTable [0x000000000317DB00, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysColorModifier@@` -`class NiPSysCylinderEmitter`: VTable [0x000000000317DD90, 0x0000000000000000 offset, 48 functions] `.?AVNiPSysCylinderEmitter@@` -`class NiPSysDragFieldModifier`: VTable [0x000000000317E048, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysDragFieldModifier@@` -`class NiPSysDragModifier`: VTable [0x000000000317E318, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysDragModifier@@` -`class NiPSysEmitterCtlr`: VTable [0x000000000317E798, 0x0000000000000000 offset, 65 functions] `.?AVNiPSysEmitterCtlr@@` -`class NiPSysEmitterCtlrData`: VTable [0x000000000317EB28, 0x0000000000000000 offset, 39 functions] `.?AVNiPSysEmitterCtlrData@@` -`class NiPSysEmitterDeclinationCtlr`: VTable [0x000000000317EDF0, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterDeclinationCtlr@@` -`class NiPSysEmitterDeclinationVarCtlr`: VTable [0x000000000317F160, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterDeclinationVarCtlr@@` -`class NiPSysEmitterInitialRadiusCtlr`: VTable [0x000000000317F4D0, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterInitialRadiusCtlr@@` -`class NiPSysEmitterLifeSpanCtlr`: VTable [0x000000000317F840, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterLifeSpanCtlr@@` -`class NiPSysEmitterPlanarAngleCtlr`: VTable [0x000000000317FBA8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterPlanarAngleCtlr@@` -`class NiPSysEmitterPlanarAngleVarCtlr`: VTable [0x000000000317FF20, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterPlanarAngleVarCtlr@@` -`class NiPSysEmitterSpeedCtlr`: VTable [0x0000000003180290, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysEmitterSpeedCtlr@@` -`class NiPSysFieldAttenuationCtlr`: VTable [0x00000000031805F8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysFieldAttenuationCtlr@@` -`class NiPSysFieldMagnitudeCtlr`: VTable [0x0000000003180970, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysFieldMagnitudeCtlr@@` -`class NiPSysFieldMaxDistanceCtlr`: VTable [0x0000000003180CD8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysFieldMaxDistanceCtlr@@` -`class NiPSysGravityFieldModifier`: VTable [0x0000000003181050, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysGravityFieldModifier@@` -`class NiPSysGravityStrengthCtlr`: VTable [0x00000000031812F0, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysGravityStrengthCtlr@@` -`class NiPSysGrowFadeModifier`: VTable [0x0000000003181688, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysGrowFadeModifier@@` -`class NiPSysInitialRotAngleCtlr`: VTable [0x0000000003181978, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysInitialRotAngleCtlr@@` -`class NiPSysInitialRotAngleVarCtlr`: VTable [0x0000000003181CE8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysInitialRotAngleVarCtlr@@` -`class NiPSysInitialRotSpeedCtlr`: VTable [0x0000000003182060, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysInitialRotSpeedCtlr@@` -`class NiPSysInitialRotSpeedVarCtlr`: VTable [0x00000000031823C8, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysInitialRotSpeedVarCtlr@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003182B90, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VBSTriShape@@@@V?$NiTNewInterface@V?$NiPointer@VBSTriShape@@@@@@@@` -`class NiTObjectArray >`: VTable [0x0000000003182BA8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VBSTriShape@@@@@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003182BC0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiGeometry@@@@V?$NiTNewInterface@V?$NiPointer@VNiGeometry@@@@@@@@` -`class NiTObjectArray >`: VTable [0x0000000003182BD8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiGeometry@@@@@@` -`class NiPSysMeshEmitter`: VTable [0x0000000003182BF0, 0x0000000000000000 offset, 46 functions] `.?AVNiPSysMeshEmitter@@` -`class NiPSysMeshUpdateModifier`: VTable [0x00000000031831A8, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysMeshUpdateModifier@@` -`class NiPSysModifierActiveCtlr`: VTable [0x0000000003183438, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysModifierActiveCtlr@@` -`class NiPSysPlanarCollider`: VTable [0x0000000003183838, 0x0000000000000000 offset, 42 functions] `.?AVNiPSysPlanarCollider@@` -`class NiPSysPositionModifier`: VTable [0x0000000003183B10, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysPositionModifier@@` -`class NiPSysRadialFieldModifier`: VTable [0x0000000003183DA8, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysRadialFieldModifier@@` -`class NiPSysResetOnLoopCtlr`: VTable [0x0000000003184048, 0x0000000000000000 offset, 49 functions] `.?AVNiPSysResetOnLoopCtlr@@` -`class NiPSysRotationModifier`: VTable [0x0000000003184338, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysRotationModifier@@` -`class NiPSysSpawnModifier`: VTable [0x00000000031846D8, 0x0000000000000000 offset, 45 functions] `.?AVNiPSysSpawnModifier@@` -`class NiPSysSphereEmitter`: VTable [0x0000000003184A38, 0x0000000000000000 offset, 48 functions] `.?AVNiPSysSphereEmitter@@` -`class NiPSysSphericalCollider`: VTable [0x0000000003184D20, 0x0000000000000000 offset, 42 functions] `.?AVNiPSysSphericalCollider@@` -`class NiPSysTurbulenceFieldModifier`: VTable [0x0000000003184FA8, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysTurbulenceFieldModifier@@` -`class NiPSysUpdateCtlr`: VTable [0x0000000003185250, 0x0000000000000000 offset, 49 functions] `.?AVNiPSysUpdateCtlr@@` -`class NiPSysVortexFieldModifier`: VTable [0x0000000003185508, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysVortexFieldModifier@@` -`class BSStripParticleSystem`: VTable [0x0000000003185798, 0x0000000000000000 offset, 60 functions] `.?AVBSStripParticleSystem@@` -`class BSStripPSysData`: VTable [0x0000000003185B28, 0x0000000000000000 offset, 45 functions] `.?AVBSStripPSysData@@` -`class BSPSysHavokUpdateModifier`: VTable [0x0000000003185EE0, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysHavokUpdateModifier@@` -`class BSPSysRecycleBoundModifier`: VTable [0x0000000003186250, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysRecycleBoundModifier@@` -`class BSPSysInheritVelocityModifier`: VTable [0x00000000031864F0, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysInheritVelocityModifier@@` -`class NiPSysModifierCtlr`: VTable [0x00000000031867A8, 0x0000000000000000 offset, 64 functions] `.?AVNiPSysModifierCtlr@@` -`class NiPSysModifier`: VTable [0x0000000003186A80, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysModifier@@` -`class NiPSysModifierFloatCtlr`: VTable [0x0000000003186D18, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysModifierFloatCtlr@@` -`class NiPSysFieldModifier`: VTable [0x0000000003186FE8, 0x0000000000000000 offset, 44 functions] `.?AVNiPSysFieldModifier@@` -`class NiPSysVolumeEmitter`: VTable [0x00000000031871F8, 0x0000000000000000 offset, 48 functions] `.?AVNiPSysVolumeEmitter@@` -`class NiPSysEmitter`: VTable [0x0000000003187410, 0x0000000000000000 offset, 46 functions] `.?AVNiPSysEmitter@@` -`class NiPSysModifierBoolCtlr`: VTable [0x0000000003187770, 0x0000000000000000 offset, 66 functions] `.?AVNiPSysModifierBoolCtlr@@` -`class NiPSysCollider`: VTable [0x0000000003187A40, 0x0000000000000000 offset, 42 functions] `.?AVNiPSysCollider@@` -`class IOManager`: VTable [0x00000000031882B8, 0x0000000000000000 offset, 25 functions] `.?AVIOManager@@` -`struct BSResource::IEntryDB::NotifyLoadDone`: VTable [0x00000000031883B8, 0x0000000000000000 offset, 2 functions] `.?AUNotifyLoadDone@IEntryDB@BSResource@@` -`class SynchronizedMap<__int64,class NiPointer >::SynchronizedMapIterator`: VTable [0x00000000031884D0, 0x0000000000000000 offset, 2 functions] `.?AVSynchronizedMapIterator@?$SynchronizedMap@_JV?$NiPointer@VBSTask@@@@@@` -`struct `private: virtual void __cdecl IOManager::DoOnPreRunTask(class BSTaskThread * __ptr64) __ptr64'::`2'::Pauser`: VTable [0x00000000031884F0, 0x0000000000000000 offset, 2 functions] `.?AUPauser@?1??DoOnPreRunTask@IOManager@@EEAAXPEAVBSTaskThread@@@Z@` -`class MessageHandler`: VTable [0x0000000003188800, 0x0000000000000000 offset, 11 functions] `.?AVMessageHandler@@` -`class `anonymous namespace'::LogWriteThread`: VTable [0x0000000003188D40, 0x0000000000000000 offset, 3 functions] `.?AVLogWriteThread@?A0xff0b2ab1@@` -`class QueuedFile`: VTable [0x0000000003188F28, 0x0000000000000000 offset, 13 functions] `.?AVQueuedFile@@` -`class QueuedNamedFile`: VTable [0x0000000003188FB0, 0x0000000000000000 offset, 13 functions] `.?AVQueuedNamedFile@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000031891A8, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0CI@@@@@` -`class BSQueuedResourceCollectionBase`: VTable [0x0000000003189238, 0x0000000000000000 offset, 19 functions] `.?AVBSQueuedResourceCollectionBase@@` -`class BSQueuedResourceCollectionBase`: VTable [0x00000000031892F8, 0x0000000000000038 offset, 3 functions] `.?AVBSQueuedResourceCollectionBase@@` -`class BSResource::EntryDB`: VTable [0x0000000003189988, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BSModelDB@@@BSResource@@` -`class BSInstanceTriShape`: VTable [0x0000000003189FD0, 0x0000000000000000 offset, 64 functions] `.?AVBSInstanceTriShape@@` -`class BSMultiStreamInstanceTriShape`: VTable [0x000000000318A240, 0x0000000000000000 offset, 64 functions] `.?AVBSMultiStreamInstanceTriShape@@` -`class BSTIOStream::TIStream`: VTable [0x000000000318A958, 0x0000000000000000 offset, 1 functions] `.?AV?$TIStream@UBSIOStreamTraits@@@BSTIOStream@@` -`class BSIStream`: VTable [0x000000000318A970, 0x0000000000000000 offset, 1 functions] `.?AVBSIStream@@` -`class BSTIOStream::TOStream`: VTable [0x000000000318A988, 0x0000000000000000 offset, 1 functions] `.?AV?$TOStream@UBSIOStreamTraits@@@BSTIOStream@@` -`class BSOStream`: VTable [0x000000000318A9A0, 0x0000000000000000 offset, 1 functions] `.?AVBSOStream@@` -`class BSPortalGraphEntry`: VTable [0x000000000318AE68, 0x0000000000000000 offset, 2 functions] `.?AVBSPortalGraphEntry@@` -`class BSPortalGraph`: VTable [0x000000000318AE88, 0x0000000000000000 offset, 2 functions] `.?AVBSPortalGraph@@` -`class ITextureDB`: VTable [0x000000000318BA20, 0x0000000000000000 offset, 4 functions] `.?AVITextureDB@@` -`class BSResource::EntryDB`: VTable [0x000000000318BB08, 0x0000000000000000 offset, 6 functions] `.?AV?$EntryDB@UDBTraits@BSTextureDB@@@BSResource@@` -`class BSQueuedResourceCollection,2>`: VTable [0x000000000318BB50, 0x0000000000000000 offset, 20 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSTextureDB@@@BSResource@@$01@@` -`class BSQueuedResourceCollection,2>`: VTable [0x000000000318BC20, 0x0000000000000038 offset, 3 functions] `.?AV?$BSQueuedResourceCollection@V?$EntryDB@UDBTraits@BSTextureDB@@@BSResource@@$01@@` -`class BSTextureDB::QueuedHandles`: VTable [0x000000000318BC48, 0x0000000000000000 offset, 20 functions] `.?AVQueuedHandles@BSTextureDB@@` -`class BSTextureDB::QueuedHandles`: VTable [0x000000000318BD18, 0x0000000000000038 offset, 3 functions] `.?AVQueuedHandles@BSTextureDB@@` -`class BSTextureDB::`anonymous namespace'::NiTextureDBForwarded`: VTable [0x000000000318BD40, 0x0000000000000000 offset, 4 functions] `.?AVNiTextureDBForwarded@?A0x4f533405@BSTextureDB@@` -`class BSMasterParticleSystem`: VTable [0x000000000318C148, 0x0000000000000000 offset, 64 functions] `.?AVBSMasterParticleSystem@@` -`class BSWindModifier`: VTable [0x000000000318C4D0, 0x0000000000000000 offset, 44 functions] `.?AVBSWindModifier@@` -`class BSCullingProcess`: VTable [0x000000000318CAD0, 0x0000000000000000 offset, 29 functions] `.?AVBSCullingProcess@@` -`class BSParticleSystemManager`: VTable [0x000000000318D398, 0x0000000000000000 offset, 64 functions] `.?AVBSParticleSystemManager@@` -`class BSMultiBoundNode`: VTable [0x000000000318D910, 0x0000000000000000 offset, 68 functions] `.?AVBSMultiBoundNode@@` -`class BSOrientedBoxConstructor`: VTable [0x000000000318E030, 0x0000000000000000 offset, 3 functions] `.?AVBSOrientedBoxConstructor@@` -`class BSSphereConstructor`: VTable [0x000000000318E058, 0x0000000000000000 offset, 3 functions] `.?AVBSSphereConstructor@@` -`class BSCylinderConstructor`: VTable [0x000000000318E080, 0x0000000000000000 offset, 3 functions] `.?AVBSCylinderConstructor@@` -`class BSCapsuleConstructor`: VTable [0x000000000318E0A8, 0x0000000000000000 offset, 3 functions] `.?AVBSCapsuleConstructor@@` -`class BSArrowConstructor`: VTable [0x000000000318E0D0, 0x0000000000000000 offset, 3 functions] `.?AVBSArrowConstructor@@` -`class BSCircleConstructor`: VTable [0x000000000318E0F8, 0x0000000000000000 offset, 3 functions] `.?AVBSCircleConstructor@@` -`class BSRingConstructor`: VTable [0x000000000318E120, 0x0000000000000000 offset, 3 functions] `.?AVBSRingConstructor@@` -`class BSFlatQuadConstructor`: VTable [0x000000000318E148, 0x0000000000000000 offset, 3 functions] `.?AVBSFlatQuadConstructor@@` -`class BSDiskConstructor`: VTable [0x000000000318E170, 0x0000000000000000 offset, 3 functions] `.?AVBSDiskConstructor@@` -`class BSReference`: VTable [0x000000000318E5F0, 0x0000000000000000 offset, 39 functions] `.?AVBSReference@@` -`class BSNodeReferences`: VTable [0x000000000318E770, 0x0000000000000000 offset, 39 functions] `.?AVBSNodeReferences@@` -`class BSXFlags`: VTable [0x000000000318ED88, 0x0000000000000000 offset, 41 functions] `.?AVBSXFlags@@` -`class BSFurnitureMarkerNode`: VTable [0x000000000318F140, 0x0000000000000000 offset, 41 functions] `.?AVBSFurnitureMarkerNode@@` -`class BSTaskThread`: VTable [0x000000000318F6B0, 0x0000000000000000 offset, 3 functions] `.?AVBSTaskThread@@` -`class SynchronizedMap<__int64,class NiPointer >`: VTable [0x000000000318F6D8, 0x0000000000000000 offset, 17 functions] `.?AV?$SynchronizedMap@_JV?$NiPointer@VBSTask@@@@@@` -`class BSTaskManager`: VTable [0x000000000318F788, 0x0000000000000000 offset, 24 functions] `.?AVBSTaskManager@@` -`class BSTaskManagerThread`: VTable [0x000000000318F8B8, 0x0000000000000000 offset, 3 functions] `.?AVBSTaskManagerThread@@` -`class BSMultiBound`: VTable [0x000000000318FA90, 0x0000000000000000 offset, 41 functions] `.?AVBSMultiBound@@` -`class BSMultiBoundRoom`: VTable [0x000000000318FD30, 0x0000000000000000 offset, 68 functions] `.?AVBSMultiBoundRoom@@` -`class BSValueNode`: VTable [0x0000000003190280, 0x0000000000000000 offset, 65 functions] `.?AVBSValueNode@@` -`class BSOcclusionShape`: VTable [0x00000000031906A0, 0x0000000000000000 offset, 44 functions] `.?AVBSOcclusionShape@@` -`struct BSAttachTechniques::AttachTechniqueInput`: VTable [0x00000000031908C0, 0x0000000000000000 offset, 2 functions] `.?AUAttachTechniqueInput@BSAttachTechniques@@` -`class PArrayPoint`: VTable [0x0000000003190C88, 0x0000000000000000 offset, 41 functions] `.?AVPArrayPoint@@` -`class NiTArray,class NiTMallocInterface > >`: VTable [0x0000000003190E20, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiAVObject@@@@V?$NiTMallocInterface@V?$NiPointer@VNiAVObject@@@@@@@@` -`class NiTPrimitiveArray >`: VTable [0x0000000003190E38, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@V?$NiPointer@VNiAVObject@@@@@@` -`class BSPSysArrayEmitter`: VTable [0x0000000003190E50, 0x0000000000000000 offset, 48 functions] `.?AVBSPSysArrayEmitter@@` -`class BSMultiBoundShape`: VTable [0x0000000003191098, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundShape@@` -`class BSOcclusionBox`: VTable [0x00000000031915C0, 0x0000000000000000 offset, 44 functions] `.?AVBSOcclusionBox@@` -`class BSOcclusionPlane`: VTable [0x00000000031918A0, 0x0000000000000000 offset, 44 functions] `.?AVBSOcclusionPlane@@` -`class BSPortalSharedNode`: VTable [0x0000000003191B68, 0x0000000000000000 offset, 64 functions] `.?AVBSPortalSharedNode@@` -`class BSBodyMorphOffsetsExtraData`: VTable [0x0000000003191FB0, 0x0000000000000000 offset, 41 functions] `.?AVBSBodyMorphOffsetsExtraData@@` -`class BSBehaviorGraphExtraData`: VTable [0x0000000003192418, 0x0000000000000000 offset, 41 functions] `.?AVBSBehaviorGraphExtraData@@` -`class NiTArray * __ptr64,class NiTMallocInterface * __ptr64> >`: VTable [0x0000000003192A78, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAV?$NiTPrimitiveSet@PEAVNiNode@@@@V?$NiTMallocInterface@PEAV?$NiTPrimitiveSet@PEAVNiNode@@@@@@@@` -`class NiTPrimitiveArray * __ptr64>`: VTable [0x0000000003192A90, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAV?$NiTPrimitiveSet@PEAVNiNode@@@@@@` -`class NiBSBoneLODController`: VTable [0x0000000003192AA8, 0x0000000000000000 offset, 50 functions] `.?AVNiBSBoneLODController@@` -`class NiTMapBase,class NiNode * __ptr64,unsigned int>`: VTable [0x0000000003192CB0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@PEAVNiNode@@I@@` -`class NiTPointerMap`: VTable [0x0000000003192D00, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@PEAVNiNode@@I@@` -`class NiTMapBase,unsigned int,bool>`: VTable [0x0000000003192D50, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTMapBase@V?$NiTPointerAllocator@_K@@I_N@@` -`class NiTPointerMap`: VTable [0x0000000003192DA0, 0x0000000000000000 offset, 7 functions] `.?AV?$NiTPointerMap@I_N@@` -`class BSBoneMap`: VTable [0x0000000003193390, 0x0000000000000000 offset, 41 functions] `.?AVBSBoneMap@@` -`class BSHEAttribute`: VTable [0x0000000003193C48, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@PEBD@@` -`class BSHEAttribute`: VTable [0x0000000003193D70, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@_N@@` -`class BSHEAttribute`: VTable [0x00000000031944D0, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@VNiColorA@@@@` -`class BSSubIndexTriShape`: VTable [0x0000000003194AA0, 0x0000000000000000 offset, 58 functions] `.?AVBSSubIndexTriShape@@` -`class BSDistantObjectLargeRefExtraData`: VTable [0x0000000003194DE8, 0x0000000000000000 offset, 41 functions] `.?AVBSDistantObjectLargeRefExtraData@@` -`class BSHEAttribute`: VTable [0x0000000003195C80, 0x0000000000000000 offset, 1 functions] `.?AV?$BSHEAttribute@PEBVHalfEdge@BSHEMesh@@@@` -`class BSBoneLODExtraData`: VTable [0x0000000003196278, 0x0000000000000000 offset, 41 functions] `.?AVBSBoneLODExtraData@@` -`class BSPSysMultiTargetEmitterCtlr`: VTable [0x0000000003196A28, 0x0000000000000000 offset, 65 functions] `.?AVBSPSysMultiTargetEmitterCtlr@@` -`class BSAVObjectEventSource`: VTable [0x0000000003196E20, 0x0000000000000000 offset, 1 functions] `.?AVBSAVObjectEventSource@@` -`class BSNiNode`: VTable [0x0000000003196EA8, 0x0000000000000000 offset, 64 functions] `.?AVBSNiNode@@` -`class BSDecalPlacementVectorExtraData`: VTable [0x00000000031975A0, 0x0000000000000000 offset, 41 functions] `.?AVBSDecalPlacementVectorExtraData@@` -`class BSParentVelocityModifier`: VTable [0x0000000003197820, 0x0000000000000000 offset, 44 functions] `.?AVBSParentVelocityModifier@@` -`class BSAnimInteractionMarker`: VTable [0x0000000003197A68, 0x0000000000000000 offset, 41 functions] `.?AVBSAnimInteractionMarker@@` -`class BSInvMarker`: VTable [0x0000000003197C90, 0x0000000000000000 offset, 41 functions] `.?AVBSInvMarker@@` -`class BSWArray`: VTable [0x0000000003197FB8, 0x0000000000000000 offset, 41 functions] `.?AVBSWArray@@` -`class BSDamageStage`: VTable [0x00000000031981E0, 0x0000000000000000 offset, 65 functions] `.?AVBSDamageStage@@` -`class BSBlastNode`: VTable [0x00000000031984F0, 0x0000000000000000 offset, 65 functions] `.?AVBSBlastNode@@` -`class BSMultiBoundCapsule`: VTable [0x0000000003198800, 0x0000000000000000 offset, 52 functions] `.?AVBSMultiBoundCapsule@@` -`class BSDebrisNode`: VTable [0x0000000003198B48, 0x0000000000000000 offset, 65 functions] `.?AVBSDebrisNode@@` -`class BSPSysStripUpdateModifier`: VTable [0x0000000003198E88, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysStripUpdateModifier@@` -`class BSPSysSubTexModifier`: VTable [0x0000000003199190, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysSubTexModifier@@` -`class BSPSysScaleModifier`: VTable [0x0000000003199570, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysScaleModifier@@` -`class BSProceduralLightningController`: VTable [0x0000000003199BA0, 0x0000000000000000 offset, 62 functions] `.?AVBSProceduralLightningController@@` -`class BSProceduralLightningTasklet`: VTable [0x0000000003199E00, 0x0000000000000000 offset, 4 functions] `.?AVBSProceduralLightningTasklet@@` -`class BSLagBoneController`: VTable [0x000000000319A018, 0x0000000000000000 offset, 49 functions] `.?AVBSLagBoneController@@` -`class BSNonUniformScaleExtraData`: VTable [0x000000000319A2F8, 0x0000000000000000 offset, 41 functions] `.?AVBSNonUniformScaleExtraData@@` -`class BSHEMeshDebuggerAction`: VTable [0x000000000319A730, 0x0000000000000000 offset, 1 functions] `.?AVBSHEMeshDebuggerAction@@` -`class BSHEMeshDebuggerActionCollapse`: VTable [0x000000000319A748, 0x0000000000000000 offset, 1 functions] `.?AVBSHEMeshDebuggerActionCollapse@@` -`class BSHEMeshDebuggerActionAdd`: VTable [0x000000000319A760, 0x0000000000000000 offset, 1 functions] `.?AVBSHEMeshDebuggerActionAdd@@` -`class BSHEMeshDebuggerActionRemove`: VTable [0x000000000319A778, 0x0000000000000000 offset, 1 functions] `.?AVBSHEMeshDebuggerActionRemove@@` -`class BSRangeNode`: VTable [0x000000000319A898, 0x0000000000000000 offset, 65 functions] `.?AVBSRangeNode@@` -`class BSTableCurve`: VTable [0x000000000319ABC0, 0x0000000000000000 offset, 2 functions] `.?AVBSTableCurve@@` -`class BSNavmesh`: VTable [0x000000000319BE20, 0x0000000000000000 offset, 2 functions] `.?AVBSNavmesh@@` -`struct ITrianglePathSplitter`: VTable [0x000000000319E2D8, 0x0000000000000000 offset, 3 functions] `.?AUITrianglePathSplitter@@` -`struct FindTriangleForLocationWaterFilter`: VTable [0x000000000319E300, 0x0000000000000000 offset, 2 functions] `.?AUFindTriangleForLocationWaterFilter@@` -`struct BSPathing::EdgeFoundVisitor`: VTable [0x000000000319E320, 0x0000000000000000 offset, 2 functions] `.?AUEdgeFoundVisitor@BSPathing@@` -`class BSPathing`: VTable [0x000000000319E340, 0x0000000000000000 offset, 9 functions] `.?AVBSPathing@@` -`struct TrianglePathWaterAndLedgeSplitter`: VTable [0x000000000319E3A0, 0x0000000000000000 offset, 3 functions] `.?AUTrianglePathWaterAndLedgeSplitter@@` -`struct IPathSmootherRayCast`: VTable [0x000000000319E418, 0x0000000000000000 offset, 2 functions] `.?AUIPathSmootherRayCast@@` -`struct `anonymous namespace'::FindClosestOpenEdgeFunctor`: VTable [0x000000000319E500, 0x0000000000000000 offset, 2 functions] `.?AUFindClosestOpenEdgeFunctor@?A0x3e0a35ff@@` -`struct `anonymous namespace'::SortIntersectingEdgesFunctor`: VTable [0x000000000319E520, 0x0000000000000000 offset, 2 functions] `.?AUSortIntersectingEdgesFunctor@?A0x3e0a35ff@@` -`struct `anonymous namespace'::CheckSphereVisitor`: VTable [0x000000000319E728, 0x0000000000000000 offset, 2 functions] `.?AUCheckSphereVisitor@?A0x3e0a35ff@@` -`struct `anonymous namespace'::PathSmootherRayCastBuildNodesForLargeZDelta`: VTable [0x000000000319E938, 0x0000000000000000 offset, 2 functions] `.?AUPathSmootherRayCastBuildNodesForLargeZDelta@?A0x3e0a35ff@@` -`struct IBSTCreator`: VTable [0x000000000319ECF8, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VBSPathingSolution@@@@` -`struct BSTDerivedCreator`: VTable [0x000000000319ED20, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBSPathingSolution@@V1@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x000000000319ED48, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBSPathingSolution@@V1@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingSolution@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000319ED70, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBSPathingSolution@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingSolution@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x000000000319ED98, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VBSPathingSolution@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingSolution@@$0EA@@@@@` -`class BSPathingLOSGridMap`: VTable [0x000000000319FB40, 0x0000000000000000 offset, 3 functions] `.?AVBSPathingLOSGridMap@@` -`class BSPathingLOSGrid`: VTable [0x000000000319FB68, 0x0000000000000000 offset, 3 functions] `.?AVBSPathingLOSGrid@@` -`class BSPathingLOSGridCell`: VTable [0x000000000319FB90, 0x0000000000000000 offset, 3 functions] `.?AVBSPathingLOSGridCell@@` -`struct BSTDerivedCreator`: VTable [0x000000000319FD20, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VBSPathingRequest@@V1@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x000000000319FD48, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VBSPathingRequest@@V1@@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x000000000319FD70, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VBSPathingRequest@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x000000000319FD98, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VBSPathingRequest@@V?$BSTSmartPointerPathingFactoryManager@VBSPathingRequest@@$0EA@@@@@` -`class BSPathingRequest`: VTable [0x000000000319FF60, 0x0000000000000000 offset, 7 functions] `.?AVBSPathingRequest@@` -`class IPathBuilderTracker`: VTable [0x000000000319FFB0, 0x0000000000000000 offset, 3 functions] `.?AVIPathBuilderTracker@@` -`class NullPathBuilderTracker`: VTable [0x000000000319FFD8, 0x0000000000000000 offset, 3 functions] `.?AVNullPathBuilderTracker@@` -`class AutoRegisterPathBuilderFactory`: VTable [0x00000000031A02E0, 0x0000000000000000 offset, 2 functions] `.?AV?$AutoRegisterPathBuilderFactory@VBSPathingRequest@@VPathBuilderBSPathingRequest@?A0x8e12ee6f@@@@` -`struct BSPathing::CheckLineOfSightFilter`: VTable [0x00000000031A0DE0, 0x0000000000000000 offset, 2 functions] `.?AUCheckLineOfSightFilter@BSPathing@@` -`class IPathBuilder`: VTable [0x00000000031A0E00, 0x0000000000000000 offset, 2 functions] `.?AVIPathBuilder@@` -`class BSPathBuilder`: VTable [0x00000000031A0E20, 0x0000000000000000 offset, 2 functions] `.?AVBSPathBuilder@@` -`struct `anonymous namespace'::CheckLineOfSightTriangleFlagFiltersAdapter`: VTable [0x00000000031A1CD8, 0x0000000000000000 offset, 2 functions] `.?AUCheckLineOfSightTriangleFlagFiltersAdapter@?A0x8e12ee6f@@` -`struct IMovementControllerFunctor`: VTable [0x00000000031A29F8, 0x0000000000000000 offset, 2 functions] `.?AUIMovementControllerFunctor@@` -`class BSFlatArrowConstructor`: VTable [0x00000000031A2A18, 0x0000000000000000 offset, 3 functions] `.?AVBSFlatArrowConstructor@@` -`class BSPathConstructor`: VTable [0x00000000031A2A40, 0x0000000000000000 offset, 3 functions] `.?AVBSPathConstructor@@` -`struct SetDebugRenderingFunctor`: VTable [0x00000000031A2A68, 0x0000000000000000 offset, 2 functions] `.?AUSetDebugRenderingFunctor@@` -`class MovementArbitrationScheme`: VTable [0x00000000031A3630, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationScheme@M@@` -`class MovementArbitrationAverage`: VTable [0x00000000031A3650, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationAverage@M@@` -`class MovementArbitrationAverageFloat`: VTable [0x00000000031A3670, 0x0000000000000000 offset, 2 functions] `.?AVMovementArbitrationAverageFloat@@` -`class MovementArbitrationScheme >`: VTable [0x00000000031A3690, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationScheme@V?$BSTSmartPointer@VIMovementParameters@@UBSTSmartPointerIntrusiveRefCount@@@@@@` -`class MovementArbitrationMaxWeight >`: VTable [0x00000000031A36B0, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationMaxWeight@V?$BSTSmartPointer@VIMovementParameters@@UBSTSmartPointerIntrusiveRefCount@@@@@@` -`class MovementArbitrationMaxWeightParameters`: VTable [0x00000000031A36D0, 0x0000000000000000 offset, 2 functions] `.?AVMovementArbitrationMaxWeightParameters@@` -`class MovementArbitrationScheme`: VTable [0x00000000031A36F0, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationScheme@VNiPoint3@@@@` -`class MovementArbitrationMaxWeight`: VTable [0x00000000031A3710, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationMaxWeight@VNiPoint3@@@@` -`class MovementArbitrationMaxWeightPoint`: VTable [0x00000000031A3730, 0x0000000000000000 offset, 2 functions] `.?AVMovementArbitrationMaxWeightPoint@@` -`class IMovementPlayIdleResult`: VTable [0x00000000031A3750, 0x0000000000000000 offset, 4 functions] `.?AVIMovementPlayIdleResult@@` -`class NullMovementSelectIdleResult`: VTable [0x00000000031A3780, 0x0000000000000000 offset, 4 functions] `.?AVNullMovementSelectIdleResult@@` -`class AStarSearch,22>`: VTable [0x00000000031A3E80, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@PEBVBSNavmeshInfo@@V?$BSTSmartPointer@VBSPathingDoor@@UBSTSmartPointerIntrusiveRefCount@@@@$0BG@@@` -`class BSNavmeshInfoSearch`: VTable [0x00000000031A3EA8, 0x0000000000000000 offset, 3 functions] `.?AVBSNavmeshInfoSearch@@` -`class BSPrecomputedNavmeshInfoSearch`: VTable [0x00000000031A3ED0, 0x0000000000000000 offset, 3 functions] `.?AVBSPrecomputedNavmeshInfoSearch@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000031A4190, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0LA@@@@@` -`struct BSNavmeshInfoMap::IRecursiveVisitor`: VTable [0x00000000031A4948, 0x0000000000000000 offset, 3 functions] `.?AUIRecursiveVisitor@BSNavmeshInfoMap@@` -`class BSNavmeshInfoMap`: VTable [0x00000000031A4970, 0x0000000000000000 offset, 6 functions] `.?AVBSNavmeshInfoMap@@` -`struct `anonymous namespace'::FindPreferredConnectedNavmeshInfosWithinRadiusVisitor`: VTable [0x00000000031A4B78, 0x0000000000000000 offset, 3 functions] `.?AUFindPreferredConnectedNavmeshInfosWithinRadiusVisitor@?A0x013c5459@@` -`struct BSPrecomputedNavmeshInfoPathMap::INavmeshInfoVisitor`: VTable [0x00000000031A4E50, 0x0000000000000000 offset, 2 functions] `.?AUINavmeshInfoVisitor@BSPrecomputedNavmeshInfoPathMap@@` -`class BSNavmeshObstacleData`: VTable [0x00000000031A5538, 0x0000000000000000 offset, 2 functions] `.?AVBSNavmeshObstacleData@@` -`struct BSPathManager::IPendingRequestVisitor`: VTable [0x00000000031A6850, 0x0000000000000000 offset, 2 functions] `.?AUIPendingRequestVisitor@BSPathManager@@` -`class PathingTaskData`: VTable [0x00000000031A6870, 0x0000000000000000 offset, 4 functions] `.?AVPathingTaskData@@` -`class BSTMessageQueue >`: VTable [0x00000000031A68A0, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@V?$NiPointer@VNiAVObject@@@@@@` -`class BSTCommonMessageQueue >`: VTable [0x00000000031A68E0, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@V?$NiPointer@VNiAVObject@@@@@@` -`class BSTCommonStaticMessageQueue,256>`: VTable [0x00000000031A6930, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonStaticMessageQueue@V?$NiPointer@VNiAVObject@@@@$0BAA@@@` -`struct INavmeshSearchFilterSet`: VTable [0x00000000031A72D8, 0x0000000000000000 offset, 2 functions] `.?AUINavmeshSearchFilterSet@@` -`struct BSNavmeshSearchFilters`: VTable [0x00000000031A72F8, 0x0000000000000000 offset, 2 functions] `.?AUBSNavmeshSearchFilters@@` -`class BSNavmeshSearch`: VTable [0x00000000031A74F0, 0x0000000000000000 offset, 3 functions] `.?AVBSNavmeshSearch@@` -`struct PathSmootherRayCastUsePreferredTris`: VTable [0x00000000031A77C0, 0x0000000000000000 offset, 2 functions] `.?AUPathSmootherRayCastUsePreferredTris@@` -`struct PathSmootherRayCastUseTrianglePath`: VTable [0x00000000031A77E0, 0x0000000000000000 offset, 2 functions] `.?AUPathSmootherRayCastUseTrianglePath@@` -`struct VelocityObstacle::Utilities::BuildOpenEdgeListsVisitor`: VTable [0x00000000031A7E20, 0x0000000000000000 offset, 2 functions] `.?AUBuildOpenEdgeListsVisitor@Utilities@VelocityObstacle@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000031A7EC0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0HI@@@@@` -`class BSNavmeshObstacleUndoData`: VTable [0x00000000031A8550, 0x0000000000000000 offset, 2 functions] `.?AVBSNavmeshObstacleUndoData@@` -`struct ISmoothingRayValidator`: VTable [0x00000000031A8C28, 0x0000000000000000 offset, 3 functions] `.?AUISmoothingRayValidator@@` -`struct GroundPathRayValidator`: VTable [0x00000000031A8C50, 0x0000000000000000 offset, 3 functions] `.?AUGroundPathRayValidator@@` -`struct WaterPathRayValidator`: VTable [0x00000000031A8C78, 0x0000000000000000 offset, 3 functions] `.?AUWaterPathRayValidator@@` -`struct IPathingNodeGenerator`: VTable [0x00000000031A8CA0, 0x0000000000000000 offset, 4 functions] `.?AUIPathingNodeGenerator@@` -`struct GroundPathPathingNodeGenerator`: VTable [0x00000000031A8CD0, 0x0000000000000000 offset, 4 functions] `.?AUGroundPathPathingNodeGenerator@@` -`struct WaterPathPathingNodeGenerator`: VTable [0x00000000031A8D00, 0x0000000000000000 offset, 4 functions] `.?AUWaterPathPathingNodeGenerator@@` -`class AStarSearch`: VTable [0x00000000031A9438, 0x0000000000000000 offset, 3 functions] `.?AV?$AStarSearch@UBSPathSmootherPOVNode@@UBSPathSmootherPOVLink@@$0M@@@` -`class BSPathSmootherPOVSearch`: VTable [0x00000000031A9460, 0x0000000000000000 offset, 3 functions] `.?AVBSPathSmootherPOVSearch@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x00000000031A96D0, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0GA@@@@@` -`struct IBSTCreator`: VTable [0x00000000031A9708, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VMovementMessage@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000031A9730, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageJump@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031A9758, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageJump@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031A9780, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageJump@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000031A97A8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageJump@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`class MovementMessage`: VTable [0x00000000031A9830, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessage@@` -`struct IPathFollowerAction`: VTable [0x00000000031A9878, 0x0000000000000000 offset, 4 functions] `.?AUIPathFollowerAction@@` -`class MovementMessageJump`: VTable [0x00000000031A98A8, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageJump@@` -`class MovementMessageJump`: VTable [0x00000000031A98F0, 0x0000000000000010 offset, 4 functions] `.?AVMovementMessageJump@@` -`class BSPathingSearchRayCast`: VTable [0x00000000031A9DE0, 0x0000000000000000 offset, 1 functions] `.?AVBSPathingSearchRayCast@@` -`class MovementArbitrationScheme`: VTable [0x00000000031AA048, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementArbitrationScheme@VMovementVector@@@@` -`class MovementArbitrationVectorAdd`: VTable [0x00000000031AA068, 0x0000000000000000 offset, 2 functions] `.?AVMovementArbitrationVectorAdd@@` -`struct BSTDerivedCreator`: VTable [0x00000000031AA088, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageBlocked@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031AA0B0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageBlocked@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031AA0D8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageBlocked@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000031AA100, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageBlocked@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`class MovementMessageBlocked`: VTable [0x00000000031AA158, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageBlocked@@` -`struct ISelectIdleFilter`: VTable [0x00000000031AA460, 0x0000000000000000 offset, 2 functions] `.?AUISelectIdleFilter@@` -`struct MovementSelectIdleUtils::SelectFirstIdleFilter`: VTable [0x00000000031AA480, 0x0000000000000000 offset, 2 functions] `.?AUSelectFirstIdleFilter@MovementSelectIdleUtils@@` -`struct MovementSelectIdleUtils::SelectClosestIdleToPath`: VTable [0x00000000031AA570, 0x0000000000000000 offset, 2 functions] `.?AUSelectClosestIdleToPath@MovementSelectIdleUtils@@` -`struct BSTDerivedCreator`: VTable [0x00000000031AA5A0, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageActivateDoor@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031AA5C8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageActivateDoor@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031AA5F0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageActivateDoor@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000031AA618, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageActivateDoor@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`class MovementMessageDoor`: VTable [0x00000000031AA700, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageDoor@@` -`class MovementMessageApproachingDoor`: VTable [0x00000000031AA748, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageApproachingDoor@@` -`class MovementMessageActivateDoor`: VTable [0x00000000031AA790, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageActivateDoor@@` -`class MovementMessageActivateDoor`: VTable [0x00000000031AA7D8, 0x0000000000000018 offset, 4 functions] `.?AVMovementMessageActivateDoor@@` -`struct BSTDerivedCreator`: VTable [0x00000000031AA858, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageNewPath@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031AA880, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageNewPath@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031AA8A8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageNewPath@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000031AA8D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageNewPath@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000031AA8F8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessagePathComplete@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031AA920, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessagePathComplete@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031AA948, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessagePathComplete@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000031AA970, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessagePathComplete@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000031AA998, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessagePathFailed@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031AA9C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessagePathFailed@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031AA9E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessagePathFailed@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000031AAA10, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessagePathFailed@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`class MovementMessageNewPath`: VTable [0x00000000031AAA38, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageNewPath@@` -`class MovementMessagePathEvent`: VTable [0x00000000031AABD8, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessagePathEvent@@` -`class MovementMessagePathComplete`: VTable [0x00000000031AAC20, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessagePathComplete@@` -`class MovementMessagePathFailed`: VTable [0x00000000031AAC68, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessagePathFailed@@` -`class MovementMessagePathCleared`: VTable [0x00000000031AACB0, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessagePathCleared@@` -`struct IBSTCreator`: VTable [0x00000000031AAF10, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VMovementAgent@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000031AAF38, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementAgentPathFollowerStandard@@VMovementAgent@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000031AAF60, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementAgentPathFollowerStandard@@VMovementAgent@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031AAF88, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementAgentPathFollowerStandard@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterMovementAgentCreator`: VTable [0x00000000031AAFB0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementAgentCreator@VMovementAgentPathFollowerStandard@@@@` -`struct IPipelineStageInterface`: VTable [0x00000000031ABD88, 0x0000000000000000 offset, 1 functions] `.?AUIPipelineStageInterface@@` -`struct IMovementPlannerAgent`: VTable [0x00000000031ABDA0, 0x0000000000000000 offset, 4 functions] `.?AUIMovementPlannerAgent@@` -`struct IMovementPathManagerAgent`: VTable [0x00000000031ABDD0, 0x0000000000000000 offset, 7 functions] `.?AUIMovementPathManagerAgent@@` -`struct IMovementInterface`: VTable [0x00000000031ABE20, 0x0000000000000000 offset, 1 functions] `.?AUIMovementInterface@@` -`struct IMovementQueryPathFollowing::INodeVisitor`: VTable [0x00000000031ABE38, 0x0000000000000000 offset, 2 functions] `.?AUINodeVisitor@IMovementQueryPathFollowing@@` -`class IMovementQueryPathFollowing`: VTable [0x00000000031ABE58, 0x0000000000000000 offset, 21 functions] `.?AVIMovementQueryPathFollowing@@` -`class IMovementSetPathFollowing`: VTable [0x00000000031ABF30, 0x0000000000000000 offset, 2 functions] `.?AVIMovementSetPathFollowing@@` -`class IMovementDebugRenderingInterface`: VTable [0x00000000031ABF50, 0x0000000000000000 offset, 3 functions] `.?AVIMovementDebugRenderingInterface@@` -`class IMovementSelectIdle`: VTable [0x00000000031ABF78, 0x0000000000000000 offset, 6 functions] `.?AVIMovementSelectIdle@@` -`struct ICheckEndReachedFunctorMapper`: VTable [0x00000000031ABFC0, 0x0000000000000000 offset, 3 functions] `.?AUICheckEndReachedFunctorMapper@@` -`struct IMovementHandlerAgent`: VTable [0x00000000031ABFE8, 0x0000000000000000 offset, 4 functions] `.?AUIMovementHandlerAgent@@` -`struct CheckParameterReachedFunctor`: VTable [0x00000000031AC018, 0x0000000000000000 offset, 4 functions] `.?AUCheckParameterReachedFunctor@@` -`struct CheckGoalReachedFunctor`: VTable [0x00000000031AC048, 0x0000000000000000 offset, 4 functions] `.?AUCheckGoalReachedFunctor@@` -`struct CheckStoppedMovingFunctor`: VTable [0x00000000031AC078, 0x0000000000000000 offset, 4 functions] `.?AUCheckStoppedMovingFunctor@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000031AC0A8, 0x0000000000000000 offset, 13 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000031AC130, 0x0000000000000018 offset, 4 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000031AC160, 0x0000000000000020 offset, 7 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000031AC1B0, 0x0000000000000028 offset, 21 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000031AC288, 0x0000000000000030 offset, 2 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000031AC2A8, 0x0000000000000038 offset, 3 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000031AC2D0, 0x0000000000000040 offset, 4 functions] `.?AVMovementAgentPathFollowerStandard@@` -`class MovementAgentPathFollowerStandard`: VTable [0x00000000031AC300, 0x0000000000000048 offset, 4 functions] `.?AVMovementAgentPathFollowerStandard@@` -`struct `anonymous namespace'::CheckEndReachedFunctorMapper`: VTable [0x00000000031AC808, 0x0000000000000000 offset, 3 functions] `.?AUCheckEndReachedFunctorMapper@?A0x30889b1d@@` -`class IMovementParameters`: VTable [0x00000000031ACAC0, 0x0000000000000000 offset, 9 functions] `.?AVIMovementParameters@@` -`class MovementParameters`: VTable [0x00000000031ACB20, 0x0000000000000000 offset, 9 functions] `.?AVMovementParameters@@` -`class IMovementControllerRegisterInterface`: VTable [0x00000000031AD598, 0x0000000000000000 offset, 5 functions] `.?AVIMovementControllerRegisterInterface@@` -`class MovementControllerAI`: VTable [0x00000000031AD5D8, 0x0000000000000000 offset, 11 functions] `.?AVMovementControllerAI@@` -`struct IMovementState`: VTable [0x00000000031AD650, 0x0000000000000000 offset, 20 functions] `.?AUIMovementState@@` -`struct NullMovementState`: VTable [0x00000000031AD720, 0x0000000000000000 offset, 20 functions] `.?AUNullMovementState@@` -`class BSPathingStreamSimpleBufferRead`: VTable [0x00000000031AD7F0, 0x0000000000000000 offset, 20 functions] `.?AVBSPathingStreamSimpleBufferRead@@` -`class IMovementControllerDataTracker`: VTable [0x00000000031AD8C0, 0x0000000000000000 offset, 2 functions] `.?AVIMovementControllerDataTracker@@` -`class MovementControllerNullDataTracker`: VTable [0x00000000031AD8E0, 0x0000000000000000 offset, 2 functions] `.?AVMovementControllerNullDataTracker@@` -`class MovementAgent`: VTable [0x00000000031ADD90, 0x0000000000000000 offset, 13 functions] `.?AVMovementAgent@@` -`struct IBSTCreator`: VTable [0x00000000031ADF20, 0x0000000000000000 offset, 3 functions] `.?AU?$IBSTCreator@VMovementArbiter@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000031ADF48, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementPathManagerArbiter@@VMovementArbiter@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000031ADF70, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementPathManagerArbiter@@VMovementArbiter@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031ADF98, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementPathManagerArbiter@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterMovementArbiterCreator`: VTable [0x00000000031ADFC0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementArbiterCreator@VMovementPathManagerArbiter@@@@` -`class MovementPathManagerAgent`: VTable [0x00000000031AE918, 0x0000000000000000 offset, 13 functions] `.?AVMovementPathManagerAgent@@` -`class MovementPathManagerAgent`: VTable [0x00000000031AE9A0, 0x0000000000000018 offset, 7 functions] `.?AVMovementPathManagerAgent@@` -`class IMovementSetGoal`: VTable [0x00000000031AE9F0, 0x0000000000000000 offset, 5 functions] `.?AVIMovementSetGoal@@` -`class IMovementQueryPathingState`: VTable [0x00000000031AEA30, 0x0000000000000000 offset, 14 functions] `.?AVIMovementQueryPathingState@@` -`class MovementPathManagerArbiter`: VTable [0x00000000031AEAC0, 0x0000000000000000 offset, 18 functions] `.?AVMovementPathManagerArbiter@@` -`class MovementPathManagerArbiter`: VTable [0x00000000031AEB78, 0x0000000000000018 offset, 5 functions] `.?AVMovementPathManagerArbiter@@` -`class MovementPathManagerArbiter`: VTable [0x00000000031AEBB8, 0x0000000000000020 offset, 14 functions] `.?AVMovementPathManagerArbiter@@` -`class MovementPathManagerArbiter`: VTable [0x00000000031AEC48, 0x0000000000000028 offset, 3 functions] `.?AVMovementPathManagerArbiter@@` -`class IMovementAgentDataTracker`: VTable [0x00000000031AEC70, 0x0000000000000000 offset, 2 functions] `.?AV?$IMovementAgentDataTracker@UIMovementPathManagerAgent@@W4AGENT_RESULT@MovementPathManagerAgentReturnData@@@@` -`class IMovementPathManagerDataTracker`: VTable [0x00000000031AEC90, 0x0000000000000000 offset, 4 functions] `.?AVIMovementPathManagerDataTracker@@` -`class MovementPathManagerNullTracker`: VTable [0x00000000031AECC0, 0x0000000000000000 offset, 4 functions] `.?AVMovementPathManagerNullTracker@@` -`class IStaticAvoidNodeManager`: VTable [0x00000000031AECF0, 0x0000000000000000 offset, 3 functions] `.?AVIStaticAvoidNodeManager@@` -`class IPathFollowerState`: VTable [0x00000000031AF470, 0x0000000000000000 offset, 4 functions] `.?AVIPathFollowerState@@` -`struct ICheckEndReachedFunctor`: VTable [0x00000000031AF4A0, 0x0000000000000000 offset, 4 functions] `.?AUICheckEndReachedFunctor@@` -`class PathFollowerStatePlayIdle`: VTable [0x00000000031AF590, 0x0000000000000000 offset, 4 functions] `.?AVPathFollowerStatePlayIdle@@` -`class PathFollowerStateFollowPathToParameter`: VTable [0x00000000031AF7A8, 0x0000000000000000 offset, 4 functions] `.?AVPathFollowerStateFollowPathToParameter@@` -`class PathFollowerStateTurnToAngle`: VTable [0x00000000031AF9C0, 0x0000000000000000 offset, 4 functions] `.?AVPathFollowerStateTurnToAngle@@` -`class PathFollowerStateKeepLastDirection`: VTable [0x00000000031AFA90, 0x0000000000000000 offset, 4 functions] `.?AVPathFollowerStateKeepLastDirection@@` -`struct BSTDerivedCreator`: VTable [0x00000000031AFB98, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementPlannerArbiter@@VMovementArbiter@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000031AFBC0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementPlannerArbiter@@VMovementArbiter@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031AFBE8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementPlannerArbiter@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterMovementArbiterCreator`: VTable [0x00000000031AFC10, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementArbiterCreator@VMovementPlannerArbiter@@@@` -`class IMovementPlannerSetArbitration`: VTable [0x00000000031B01D8, 0x0000000000000000 offset, 7 functions] `.?AVIMovementPlannerSetArbitration@@` -`class MovementPlannerArbiter`: VTable [0x00000000031B0228, 0x0000000000000000 offset, 18 functions] `.?AVMovementPlannerArbiter@@` -`class MovementPlannerArbiter`: VTable [0x00000000031B02E0, 0x0000000000000018 offset, 7 functions] `.?AVMovementPlannerArbiter@@` -`class MovementPlannerArbiter`: VTable [0x00000000031B0330, 0x0000000000000020 offset, 3 functions] `.?AVMovementPlannerArbiter@@` -`class MovementPlannerAgent`: VTable [0x00000000031B0358, 0x0000000000000000 offset, 13 functions] `.?AVMovementPlannerAgent@@` -`class MovementPlannerAgent`: VTable [0x00000000031B03E0, 0x0000000000000018 offset, 4 functions] `.?AVMovementPlannerAgent@@` -`class IMovementAgentDataTracker`: VTable [0x00000000031B0438, 0x0000000000000000 offset, 2 functions] `.?AV?$IMovementAgentDataTracker@UIMovementPlannerAgent@@VMovementPlannerAgentReturnDataSmallDelta@@@@` -`class MovementAgentNullTracker`: VTable [0x00000000031B0458, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementAgentNullTracker@UIMovementPlannerAgent@@VMovementPlannerAgentReturnDataSmallDelta@@@@` -`class WeightedModifierVisitor >`: VTable [0x00000000031B0610, 0x0000000000000000 offset, 3 functions] `.?AV?$WeightedModifierVisitor@V?$BSTSmartPointer@VIMovementParameters@@UBSTSmartPointerIntrusiveRefCount@@@@@@` -`class VisitReturnData,class BSScrapArrayAllocator>`: VTable [0x00000000031B0638, 0x0000000000000000 offset, 3 functions] `.?AV?$VisitReturnData@V?$BSTSmartPointer@VIMovementParameters@@UBSTSmartPointerIntrusiveRefCount@@@@VBSScrapArrayAllocator@@@@` -`class WeightedModifierVisitor`: VTable [0x00000000031B0660, 0x0000000000000000 offset, 3 functions] `.?AV?$WeightedModifierVisitor@VMovementVector@@@@` -`class VisitReturnData`: VTable [0x00000000031B0688, 0x0000000000000000 offset, 3 functions] `.?AV?$VisitReturnData@VMovementVector@@VBSScrapArrayAllocator@@@@` -`class WeightedModifierVisitor`: VTable [0x00000000031B06B0, 0x0000000000000000 offset, 3 functions] `.?AV?$WeightedModifierVisitor@VNiPoint3@@@@` -`class VisitReturnData`: VTable [0x00000000031B06D8, 0x0000000000000000 offset, 3 functions] `.?AV?$VisitReturnData@VNiPoint3@@VBSScrapArrayAllocator@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000031B0A38, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementHandlerArbiter@@VMovementArbiter@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000031B0A60, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementHandlerArbiter@@VMovementArbiter@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031B0A88, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementHandlerArbiter@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterMovementArbiterCreator`: VTable [0x00000000031B0AB0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementArbiterCreator@VMovementHandlerArbiter@@@@` -`class MovementHandlerArbiter`: VTable [0x00000000031B0CE8, 0x0000000000000000 offset, 18 functions] `.?AVMovementHandlerArbiter@@` -`class MovementHandlerArbiter`: VTable [0x00000000031B0DA0, 0x0000000000000018 offset, 3 functions] `.?AVMovementHandlerArbiter@@` -`class MovementHandlerAgent`: VTable [0x00000000031B0DC8, 0x0000000000000000 offset, 13 functions] `.?AVMovementHandlerAgent@@` -`class MovementHandlerAgent`: VTable [0x00000000031B0E50, 0x0000000000000018 offset, 4 functions] `.?AVMovementHandlerAgent@@` -`class IMovementAgentDataTracker`: VTable [0x00000000031B0E80, 0x0000000000000000 offset, 2 functions] `.?AV?$IMovementAgentDataTracker@UIMovementHandlerAgent@@UMovementHandlerUpdateDataSmallDelta@@@@` -`class MovementAgentNullTracker`: VTable [0x00000000031B0EA0, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementAgentNullTracker@UIMovementHandlerAgent@@UMovementHandlerUpdateDataSmallDelta@@@@` -`class IMovementAgentDataTracker`: VTable [0x00000000031B0EC0, 0x0000000000000000 offset, 2 functions] `.?AV?$IMovementAgentDataTracker@UIMovementHandlerAgent@@UMovementHandlerOutputDataSmallDelta@@@@` -`class MovementAgentNullTracker`: VTable [0x00000000031B0EE0, 0x0000000000000000 offset, 2 functions] `.?AV?$MovementAgentNullTracker@UIMovementHandlerAgent@@UMovementHandlerOutputDataSmallDelta@@@@` -`struct BSTDerivedCreator`: VTable [0x00000000031B1190, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementAgentActorState@@VMovementAgent@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000031B11B8, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementAgentActorState@@VMovementAgent@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031B11E0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementAgentActorState@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterMovementAgentCreator`: VTable [0x00000000031B1208, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementAgentCreator@VMovementAgentActorState@@@@` -`class IMovementSetState`: VTable [0x00000000031B1410, 0x0000000000000000 offset, 3 functions] `.?AVIMovementSetState@@` -`class IMovementQueryState`: VTable [0x00000000031B1438, 0x0000000000000000 offset, 3 functions] `.?AVIMovementQueryState@@` -`class MovementAgentActorState`: VTable [0x00000000031B1460, 0x0000000000000000 offset, 13 functions] `.?AVMovementAgentActorState@@` -`class MovementAgentActorState`: VTable [0x00000000031B14E8, 0x0000000000000018 offset, 4 functions] `.?AVMovementAgentActorState@@` -`class MovementAgentActorState`: VTable [0x00000000031B1518, 0x0000000000000020 offset, 3 functions] `.?AVMovementAgentActorState@@` -`class MovementAgentActorState`: VTable [0x00000000031B1540, 0x0000000000000028 offset, 3 functions] `.?AVMovementAgentActorState@@` -`struct BSTDerivedCreator`: VTable [0x00000000031B1758, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementAgentActorAvoider@@VMovementAgent@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000031B1780, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementAgentActorAvoider@@VMovementAgent@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031B17A8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementAgentActorAvoider@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterMovementAgentCreator`: VTable [0x00000000031B17D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementAgentCreator@VMovementAgentActorAvoider@@@@` -`class IMovementQueryActorAvoidance`: VTable [0x00000000031B1FB8, 0x0000000000000000 offset, 3 functions] `.?AVIMovementQueryActorAvoidance@@` -`class MovementAgentActorAvoider`: VTable [0x00000000031B1FE0, 0x0000000000000000 offset, 13 functions] `.?AVMovementAgentActorAvoider@@` -`class MovementAgentActorAvoider`: VTable [0x00000000031B2068, 0x0000000000000018 offset, 4 functions] `.?AVMovementAgentActorAvoider@@` -`class MovementAgentActorAvoider`: VTable [0x00000000031B2098, 0x0000000000000020 offset, 7 functions] `.?AVMovementAgentActorAvoider@@` -`class MovementAgentActorAvoider`: VTable [0x00000000031B20E8, 0x0000000000000028 offset, 3 functions] `.?AVMovementAgentActorAvoider@@` -`class MovementAgentActorAvoider`: VTable [0x00000000031B2110, 0x0000000000000030 offset, 3 functions] `.?AVMovementAgentActorAvoider@@` -`struct BSTDerivedCreator`: VTable [0x00000000031B22C8, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementHandlerAgentStrafing@@VMovementAgent@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000031B22F0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementHandlerAgentStrafing@@VMovementAgent@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031B2318, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementHandlerAgentStrafing@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementAgent@@$0CA@@@@@` -`struct AutoRegisterMovementAgentCreator`: VTable [0x00000000031B2340, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementAgentCreator@VMovementHandlerAgentStrafing@@@@` -`class MovementHandlerAgentStrafing`: VTable [0x00000000031B2458, 0x0000000000000000 offset, 13 functions] `.?AVMovementHandlerAgentStrafing@@` -`class MovementHandlerAgentStrafing`: VTable [0x00000000031B24E0, 0x0000000000000018 offset, 4 functions] `.?AVMovementHandlerAgentStrafing@@` -`class MovementArbiter`: VTable [0x00000000031B25E8, 0x0000000000000000 offset, 18 functions] `.?AVMovementArbiter@@` -`struct BSTDerivedCreator`: VTable [0x00000000031B2758, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementMessageSetStaticPath@@VMovementMessage@@@@` -`class AutoRegisterFactory,class BSTSmartPointerPathingFactoryManager >`: VTable [0x00000000031B2780, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementMessageSetStaticPath@@VMovementMessage@@@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031B27A8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementMessageSetStaticPath@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`struct AutoRegisterPathing >`: VTable [0x00000000031B27D0, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterPathing@VMovementMessageSetStaticPath@@V?$BSTSmartPointerPathingFactoryManager@VMovementMessage@@$0EA@@@@@` -`class MovementMessageSetStaticPath`: VTable [0x00000000031B2828, 0x0000000000000000 offset, 6 functions] `.?AVMovementMessageSetStaticPath@@` -`struct BSTDerivedCreator`: VTable [0x00000000031B2898, 0x0000000000000000 offset, 3 functions] `.?AU?$BSTDerivedCreator@VMovementPostUpdateArbiter@@VMovementArbiter@@@@` -`class AutoRegisterFactory,class BSTCreateFactoryManager >`: VTable [0x00000000031B28C0, 0x0000000000000000 offset, 3 functions] `.?AV?$AutoRegisterFactory@U?$BSTDerivedCreator@VMovementPostUpdateArbiter@@VMovementArbiter@@@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterCreator >`: VTable [0x00000000031B28E8, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterCreator@VMovementPostUpdateArbiter@@V?$BSTCreateFactoryManager@VBSFixedString@@VMovementArbiter@@$0CA@@@@@` -`struct AutoRegisterMovementArbiterCreator`: VTable [0x00000000031B2910, 0x0000000000000000 offset, 3 functions] `.?AU?$AutoRegisterMovementArbiterCreator@VMovementPostUpdateArbiter@@@@` -`class IMovementQueryDeltas`: VTable [0x00000000031B2A48, 0x0000000000000000 offset, 5 functions] `.?AVIMovementQueryDeltas@@` -`class MovementPostUpdateArbiter`: VTable [0x00000000031B2A88, 0x0000000000000000 offset, 18 functions] `.?AVMovementPostUpdateArbiter@@` -`class MovementPostUpdateArbiter`: VTable [0x00000000031B2B40, 0x0000000000000018 offset, 5 functions] `.?AVMovementPostUpdateArbiter@@` -`struct BSPerforce::IKeyValuePairFunctor`: VTable [0x00000000031B30B8, 0x0000000000000000 offset, 1 functions] `.?AUIKeyValuePairFunctor@BSPerforce@@` -`class BSPerforce::`anonymous namespace'::FileInfoConvertFunctor`: VTable [0x00000000031B30F0, 0x0000000000000000 offset, 1 functions] `.?AVFileInfoConvertFunctor@?A0x9f4d6e56@BSPerforce@@` -`class BSPerforce::Connection`: VTable [0x00000000031B3B58, 0x0000000000000000 offset, 14 functions] `.?AVConnection@BSPerforce@@` -`class BSPerforce::`anonymous namespace'::Connection_Win32COM`: VTable [0x00000000031B3BE8, 0x0000000000000000 offset, 14 functions] `.?AVConnection_Win32COM@?A0xb7201814@BSPerforce@@` -`class bnet::BaseCallback`: VTable [0x00000000031B51C0, 0x0000000000000000 offset, 4 functions] `.?AVBaseCallback@bnet@@` -`class BSPlatform::BSBethesdaPlatform`: VTable [0x00000000031B5420, 0x0000000000000000 offset, 1 functions] `.?AVBSBethesdaPlatform@BSPlatform@@` -`class bnet::Callback`: VTable [0x00000000031B5438, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@W4BNetError@bnet@@VHttpResponseInfo@2@@bnet@@` -`class BSPlatform::BSTerminatedCallback`: VTable [0x00000000031B5480, 0x0000000000000000 offset, 6 functions] `.?AVBSTerminatedCallback@BSPlatform@@` -`class bnet::Callback`: VTable [0x00000000031B5510, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@VBNetErrorResult@bnet@@UEmptyStatus@2@@bnet@@` -`class bnet::CallbackWrapper,void (__cdecl*)(unsigned __int64,class bnet::BNetErrorResult && __ptr64,enum bnet::BNetError,struct bnet::EmptyStatus const & __ptr64)>`: VTable [0x00000000031B5558, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@VBNetErrorResult@bnet@@UEmptyStatus@2@@bnet@@P6AX_K$$QEAVBNetErrorResult@2@W4BNetError@2@AEBUEmptyStatus@2@@Z@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031B5C30, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VFileChunk@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class BSPlatform::BSBNETImage`: VTable [0x00000000031B5C78, 0x0000000000000000 offset, 3 functions] `.?AVBSBNETImage@BSPlatform@@` -`class BSPlatform::BSAsyncRequestBase`: VTable [0x00000000031B5CA0, 0x0000000000000000 offset, 1 functions] `.?AVBSAsyncRequestBase@BSPlatform@@` -`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000031B5CB8, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_K@Z@std@@@BSPlatform@@` -`class BSPlatform::BSModImage`: VTable [0x00000000031B5CD0, 0x0000000000000000 offset, 3 functions] `.?AVBSModImage@BSPlatform@@` -`class BSPlatform::BSMarketplaceImage`: VTable [0x00000000031B5CF8, 0x0000000000000000 offset, 3 functions] `.?AVBSMarketplaceImage@BSPlatform@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModImage>`: VTable [0x00000000031B5D20, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VFileChunk@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModImage@BSPlatform@@@bnet@@` -`class std::_Ref_count_obj`: VTable [0x00000000031B5D88, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@VBSModImage@BSPlatform@@@std@@` -`class std::_Ref_count_obj`: VTable [0x00000000031B5DB8, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@VBSMarketplaceImage@BSPlatform@@@std@@` -`class BSPlatform::BSBNETFile`: VTable [0x00000000031B6118, 0x0000000000000000 offset, 3 functions] `.?AVBSBNETFile@BSPlatform@@` -`class BSPlatform::BSModFile`: VTable [0x00000000031B6140, 0x0000000000000000 offset, 3 functions] `.?AVBSModFile@BSPlatform@@` -`class BSPlatform::BSMarketplaceFile`: VTable [0x00000000031B6178, 0x0000000000000000 offset, 3 functions] `.?AVBSMarketplaceFile@BSPlatform@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModFile>`: VTable [0x00000000031B61A0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VFileChunk@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModFile@BSPlatform@@@bnet@@` -`class std::_Ref_count_obj`: VTable [0x00000000031B6208, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@VBSModFile@BSPlatform@@@std@@` -`class std::_Ref_count_obj`: VTable [0x00000000031B6238, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@VBSMarketplaceFile@BSPlatform@@@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64>`: VTable [0x00000000031B6268, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KPEBD@std@@` -`class bnet::IProducerConsumerQueue >`: VTable [0x00000000031BD8B8, 0x0000000000000000 offset, 6 functions] `.?AV?$IProducerConsumerQueue@V?$UniquePtr@VJob@bnet@@@bnet@@@bnet@@` -`class bnet::EmptyTerminationCB`: VTable [0x00000000031BD900, 0x0000000000000000 offset, 6 functions] `.?AVEmptyTerminationCB@bnet@@` -`struct bnet::ExternalAuthInfo`: VTable [0x00000000031C0A28, 0x0000000000000000 offset, 2 functions] `.?AUExternalAuthInfo@bnet@@` -`struct bnet::SteamExternalAuthInfo`: VTable [0x00000000031C0A48, 0x0000000000000000 offset, 3 functions] `.?AUSteamExternalAuthInfo@bnet@@` -`class bnet::CustomData::Value`: VTable [0x00000000031C0A78, 0x0000000000000000 offset, 6 functions] `.?AVValue@CustomData@bnet@@` -`class bnet::Callback,class bnet::AccountAuthenticationStatus>`: VTable [0x00000000031C0BA8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VAccountResult@bnet@@@bnet@@VAccountAuthenticationStatus@2@@bnet@@` -`class bnet::CallbackBind,class bnet::AccountAuthenticationStatus>,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000031C0BF0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VAccountResult@bnet@@@bnet@@VAccountAuthenticationStatus@2@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class bnet::Callback`: VTable [0x00000000031C0CF8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@_NVHttpResponseInfo@bnet@@@bnet@@` -`class bnet::CallbackBind,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000031C0D40, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@_NVHttpResponseInfo@bnet@@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031C0DB0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VAccountLinkingResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000031C0DF8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VAccountLinkingResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class bnet::Callback`: VTable [0x00000000031C0E40, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@` -`class bnet::CallbackBind,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000031C0E88, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000031C0F68, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@V?$FixedVector@VLegalDocument@bnet@@$04$00V?$StdAllocator@VLegalDocument@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000031C0FB0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VLegalDocument@bnet@@$04$00V?$StdAllocator@VLegalDocument@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000031C0FF8, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSLegalDocument@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` -`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000031C1098, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@V?$vector@VItem@Entitlements@bnet@@V?$StdAllocator@VItem@Entitlements@bnet@@@_impl@3@@std@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000031C10E0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$vector@VItem@Entitlements@bnet@@V?$StdAllocator@VItem@Entitlements@bnet@@@_impl@3@@std@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000031C1128, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSEntitlement@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` -`class bnet::CustomData::ElementalValue<5>`: VTable [0x00000000031C1160, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$04@CustomData@bnet@@` -`class bnet::CustomData::NumericValue<5>`: VTable [0x00000000031C11A8, 0x0000000000000000 offset, 6 functions] `.?AV?$NumericValue@$04@CustomData@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031C11F0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VProfile@1Gsp@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSBNetAccountManager>`: VTable [0x00000000031C1238, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VProfile@1Gsp@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSBNetAccountManager@BSPlatform@@@bnet@@` -`class std::_Ref_count_obj`: VTable [0x00000000031C12F8, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj@USteamExternalAuthInfo@bnet@@@std@@` -`class std::_Func_impl_no_alloc const & __ptr64,struct std::_Ph<2> const & __ptr64,enum BSPlatform::BNetResult * __ptr64>,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000031C1328, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V?$_Binder@U_Unforced@std@@P8BSBNetAccountManager@BSPlatform@@EAAXW4BNetResult@4@_KPEAW454@@ZPEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@PEAW454@@std@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000031C1370, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64,char const * __ptr64>`: VTable [0x00000000031C13B8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KPEBDPEBD@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000031C1400, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000031C1448, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl_no_alloc const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray * __ptr64) __ptr64,class BSPlatform::BSBNetAccountManager * __ptr64,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray * __ptr64>,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000031C1490, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V?$_Binder@U_Unforced@std@@P8BSBNetAccountManager@BSPlatform@@EAAXW4BNetResult@4@_KAEBV?$BSTArray@VBSLegalDocument@BSPlatform@@VBSTArrayHeapAllocator@@@@PEAW454@PEAV6@@ZPEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@PEAV6@@std@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSLegalDocument@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl_no_alloc const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray * __ptr64) __ptr64,class BSPlatform::BSBNetAccountManager * __ptr64,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray * __ptr64>,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000031C14D8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V?$_Binder@U_Unforced@std@@P8BSBNetAccountManager@BSPlatform@@EAAXW4BNetResult@4@_KAEBV?$BSTArray@VBSEntitlement@BSPlatform@@VBSTArrayHeapAllocator@@@@PEAW454@PEAV6@@ZPEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@PEAV6@@std@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSEntitlement@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000031C3D68, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KPEBD@Z@std@@@BSPlatform@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031C3D80, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUgcCreationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000031C3DC8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcCreationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class bnet::CallbackBind,class BSPlatform::BSModsManager>`: VTable [0x00000000031C3E28, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031C3E90, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUgcContent@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000031C3ED8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcContent@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000031C3F20, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBVBSUserContent@2@@Z@std@@@BSPlatform@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031C3F78, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUgcChunkUploadResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000031C3FC0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcChunkUploadResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031C40E0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUgcPagedContentListResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000031C4128, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcPagedContentListResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000031C4170, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` -`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000031C41F0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@V?$FixedVector@VUgcContent@bnet@@$0BJ@$00V?$StdAllocator@VUgcContent@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000031C4238, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VUgcContent@bnet@@$0BJ@$00V?$StdAllocator@VUgcContent@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031C42B8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUgcListCategoriesResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSModsManager>`: VTable [0x00000000031C4300, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcListCategoriesResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSModsManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest,class BSTArrayHeapAllocator> const & __ptr64)> >`: VTable [0x00000000031C4348, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@V?$BSStringT@D$0PPPPPPPP@VDynamicMemoryManagementPol@@@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` -`class std::_Func_impl_no_alloc * __ptr64) __ptr64,class BSPlatform::BSModsManager * __ptr64,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSStringT * __ptr64>,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64>`: VTable [0x00000000031C4380, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V?$_Binder@U_Unforced@std@@P8BSModsManager@BSPlatform@@EAAXW4BNetResult@4@_KPEBDPEAW454@PEAV?$BSStringT@D$0PPPPPPPP@VDynamicMemoryManagementPol@@@@@ZPEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@PEAV6@@std@@XW4BNetResult@BSPlatform@@_KPEBD@std@@` -`class std::_Func_impl_no_alloc const & __ptr64,struct std::_Ph<2> const & __ptr64,enum BSPlatform::BNetResult * __ptr64>,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000031C43C8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V?$_Binder@U_Unforced@std@@P8BSModsManager@BSPlatform@@EAAXW4BNetResult@4@_KPEAW454@@ZPEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@PEAW454@@std@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl_no_alloc const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSPlatform::BSUserContent * __ptr64>,void,enum BSPlatform::BNetResult,unsigned __int64,class BSPlatform::BSUserContent const & __ptr64>`: VTable [0x00000000031C4410, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V?$_Binder@U_Unforced@std@@P8BSModsManager@BSPlatform@@EAAXW4BNetResult@4@_KAEBVBSUserContent@4@PEAW454@PEAV64@@ZPEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@PEAV64@@std@@XW4BNetResult@BSPlatform@@_KAEBVBSUserContent@4@@std@@` -`class std::_Func_impl_no_alloc const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray * __ptr64) __ptr64,class BSPlatform::BSModsManager * __ptr64,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray * __ptr64>,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000031C4458, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V?$_Binder@U_Unforced@std@@P8BSModsManager@BSPlatform@@EAAXW4BNetResult@4@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@PEAW454@PEAV6@@ZPEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@PEAV6@@std@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSUserContent@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl_no_alloc,class BSTArrayHeapAllocator> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray,class BSTArrayHeapAllocator> * __ptr64) __ptr64,class BSPlatform::BSModsManager * __ptr64,struct std::_Ph<1> const & __ptr64,struct std::_Ph<2> const & __ptr64,struct std::_Ph<3> const & __ptr64,enum BSPlatform::BNetResult * __ptr64,class BSTArray,class BSTArrayHeapAllocator> * __ptr64>,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray,class BSTArrayHeapAllocator> const & __ptr64>`: VTable [0x00000000031C44A0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V?$_Binder@U_Unforced@std@@P8BSModsManager@BSPlatform@@EAAXW4BNetResult@4@_KAEBV?$BSTArray@V?$BSStringT@D$0PPPPPPPP@VDynamicMemoryManagementPol@@@@VBSTArrayHeapAllocator@@@@PEAW454@PEAV6@@ZPEAV34@AEBU?$_Ph@$00@2@AEBU?$_Ph@$01@2@AEBU?$_Ph@$02@2@PEAW454@PEAV6@@std@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@V?$BSStringT@D$0PPPPPPPP@VDynamicMemoryManagementPol@@@@VBSTArrayHeapAllocator@@@@@std@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000031C5EE8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcContent@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000031C5F30, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBVBSCreation@2@@Z@std@@@BSPlatform@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031C5F48, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VPurchaseResult@Wallet@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000031C5F90, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VPurchaseResult@Wallet@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031C6000, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VBalance@Wallet@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000031C6048, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VBalance@Wallet@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000031C6090, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KH@Z@std@@@BSPlatform@@` -`class bnet::CallbackBind,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000031C60D0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000031C6140, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcPagedContentListResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000031C6188, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000031C61A0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VUgcContent@bnet@@$0BJ@$00V?$StdAllocator@VUgcContent@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000031C6218, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcListCategoriesResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031C62C8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VItem@Catalog@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000031C6310, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VItem@Catalog@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest const & __ptr64)> >`: VTable [0x00000000031C6358, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@IVBSTArrayHeapAllocator@@@@@Z@std@@@BSPlatform@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCreationClubManager>`: VTable [0x00000000031C6398, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUgcCreationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCreationClubManager@BSPlatform@@@bnet@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSPlatform::BSCreation const & __ptr64>`: VTable [0x00000000031C63E0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBVBSCreation@3@@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000031C6428, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,int>`: VTable [0x00000000031C6470, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KH@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000031C64B8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000031C6500, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000031C6548, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000031C6590, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray,class BSTArrayHeapAllocator> const & __ptr64>`: VTable [0x00000000031C65D8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@V?$BSStringT@D$0PPPPPPPP@VDynamicMemoryManagementPol@@@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000031C6620, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000031C6668, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@IVBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000031C66B0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000031C66F8, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@IVBSTArrayHeapAllocator@@@@@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64>`: VTable [0x00000000031C6740, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KPEBD@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000031C6788, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64>`: VTable [0x00000000031C67D0, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_K@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,class BSTArray const & __ptr64>`: VTable [0x00000000031C6818, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBV?$BSTArray@VBSCreation@BSPlatform@@VBSTArrayHeapAllocator@@@@@std@@` -`class bnet::CustomData::StringValue`: VTable [0x00000000031C77C8, 0x0000000000000000 offset, 8 functions] `.?AVStringValue@CustomData@bnet@@` -`class bnet::CustomData::FixedStringValue<128>`: VTable [0x00000000031C7820, 0x0000000000000000 offset, 8 functions] `.?AV?$FixedStringValue@$0IA@@CustomData@bnet@@` -`class bnet::CustomData::ElementalValue<3>`: VTable [0x00000000031C7878, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$02@CustomData@bnet@@` -`class bnet::CustomData::NumericValue<3>`: VTable [0x00000000031C78C0, 0x0000000000000000 offset, 6 functions] `.?AV?$NumericValue@$02@CustomData@bnet@@` -`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000031C7908, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@V?$FixedVector@VMessage@CMS@bnet@@$04$00V?$StdAllocator@VMessage@CMS@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class BSPlatform::BSCoreServicesManager>`: VTable [0x00000000031C7950, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VMessage@CMS@bnet@@$04$00V?$StdAllocator@VMessage@CMS@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCoreServicesManager@BSPlatform@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031C79B8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VExtServerStatusResult@Status@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class BSPlatform::BSCoreServicesManager>`: VTable [0x00000000031C7A00, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VExtServerStatusResult@Status@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSCoreServicesManager@BSPlatform@@@bnet@@` -`class BSPlatform::BSAsyncRequest >`: VTable [0x00000000031C7A48, 0x0000000000000000 offset, 1 functions] `.?AV?$BSAsyncRequest@V?$function@$$A6AXW4BNetResult@BSPlatform@@_KAEBUBSExternalServerStatusInfo@2@@Z@std@@@BSPlatform@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031C7AA0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackWrapper,class bnet::HttpResponseInfo>,class >`: VTable [0x00000000031C7B40, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class bnet::HttpResponseInfo>,class >`: VTable [0x00000000031C7D58, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@V@@@bnet@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,char const * __ptr64>`: VTable [0x00000000031C7E18, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KPEBD@std@@` -`class std::_Func_impl_no_alloc,void,enum BSPlatform::BNetResult,unsigned __int64,struct BSPlatform::BSExternalServerStatusInfo const & __ptr64>`: VTable [0x00000000031C7E60, 0x0000000000000000 offset, 6 functions] `.?AV?$_Func_impl_no_alloc@V@@XW4BNetResult@BSPlatform@@_KAEBUBSExternalServerStatusInfo@3@@std@@` -`class BSPlatform::BSUploadRequest`: VTable [0x00000000031C81D8, 0x0000000000000000 offset, 1 functions] `.?AVBSUploadRequest@BSPlatform@@` -`class BSPlatform::BSDownloadRequest`: VTable [0x00000000031C81F0, 0x0000000000000000 offset, 1 functions] `.?AVBSDownloadRequest@BSPlatform@@` -`class bnet::Callback >,16,1,class bnet::_impl::StdAllocator > > > const >,class bnet::HttpResponseInfo>`: VTable [0x00000000031C85B8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@$$CBV?$FixedVector@V?$FixedString@$09$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@$0BA@$00V?$StdAllocator@V?$FixedString@$09$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@23@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind >,16,1,class bnet::_impl::StdAllocator > > > const >,class bnet::HttpResponseInfo>,class BSPlatform::BSBlacklist>`: VTable [0x00000000031C8600, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@$$CBV?$FixedVector@V?$FixedString@$09$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@$0BA@$00V?$StdAllocator@V?$FixedString@$09$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@23@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VBSBlacklist@BSPlatform@@@bnet@@` -`class bnet::_impl::RefCount`: VTable [0x00000000031C9BB0, 0x0000000000000000 offset, 1 functions] `.?AVRefCount@_impl@bnet@@` -`class bnet::_impl::SharedMutex`: VTable [0x00000000031C9BC8, 0x0000000000000000 offset, 1 functions] `.?AVSharedMutex@_impl@bnet@@` -`class bnet::_impl::OneToManyObservable`: VTable [0x00000000031C9BE0, 0x0000000000000000 offset, 1 functions] `.?AV?$OneToManyObservable@VConfigurationEntry@bnet@@@_impl@bnet@@` -`class bnet::ConfigurationEntry`: VTable [0x00000000031C9BF8, 0x0000000000000000 offset, 11 functions] `.?AVConfigurationEntry@bnet@@` -`class bnet::_impl::IPool`: VTable [0x00000000031C9C70, 0x0000000000000000 offset, 4 functions] `.?AVIPool@_impl@bnet@@` -`class bnet::IDynamicVariableDeleter`: VTable [0x00000000031C9CA0, 0x0000000000000000 offset, 2 functions] `.?AVIDynamicVariableDeleter@bnet@@` -`class bnet::ConfigurationEntryBoolean`: VTable [0x00000000031C9CC0, 0x0000000000000000 offset, 11 functions] `.?AVConfigurationEntryBoolean@bnet@@` -`class bnet::ConfigurationEntryInteger`: VTable [0x00000000031C9D38, 0x0000000000000000 offset, 11 functions] `.?AVConfigurationEntryInteger@bnet@@` -`class bnet::ConfigurationEntryFloat`: VTable [0x00000000031C9DB0, 0x0000000000000000 offset, 11 functions] `.?AVConfigurationEntryFloat@bnet@@` -`class bnet::ConfigurationEntryLong`: VTable [0x00000000031C9E28, 0x0000000000000000 offset, 11 functions] `.?AVConfigurationEntryLong@bnet@@` -`class bnet::ConfigurationEntryString`: VTable [0x00000000031C9EA0, 0x0000000000000000 offset, 11 functions] `.?AVConfigurationEntryString@bnet@@` -`class bnet::_impl::FixedPool<152,50>`: VTable [0x00000000031C9F18, 0x0000000000000000 offset, 4 functions] `.?AV?$FixedPool@$0JI@$0DC@@_impl@bnet@@` -`class bnet::ConfigurationEntryPool`: VTable [0x00000000031C9F48, 0x0000000000000000 offset, 2 functions] `.?AV?$ConfigurationEntryPool@VConfigurationEntryInteger@bnet@@H@bnet@@` -`class bnet::ConfigurationEntryPool`: VTable [0x00000000031C9F68, 0x0000000000000000 offset, 2 functions] `.?AV?$ConfigurationEntryPool@VConfigurationEntryLong@bnet@@_J@bnet@@` -`class bnet::ConfigurationEntryPool`: VTable [0x00000000031C9F88, 0x0000000000000000 offset, 2 functions] `.?AV?$ConfigurationEntryPool@VConfigurationEntryFloat@bnet@@M@bnet@@` -`class bnet::ConfigurationEntryPool`: VTable [0x00000000031C9FA8, 0x0000000000000000 offset, 2 functions] `.?AV?$ConfigurationEntryPool@VConfigurationEntryBoolean@bnet@@_N@bnet@@` -`class bnet::_impl::FixedPool<432,50>`: VTable [0x00000000031C9FC8, 0x0000000000000000 offset, 4 functions] `.?AV?$FixedPool@$0BLA@$0DC@@_impl@bnet@@` -`class bnet::ConfigurationEntryPool`: VTable [0x00000000031C9FF8, 0x0000000000000000 offset, 2 functions] `.?AV?$ConfigurationEntryPool@VConfigurationEntryString@bnet@@PEBD@bnet@@` -`class bnet::IJobCollection`: VTable [0x00000000031CA260, 0x0000000000000000 offset, 1 functions] `.?AVIJobCollection@bnet@@` -`class bnet::_detail::Composite`: VTable [0x00000000031CA278, 0x0000000000000000 offset, 9 functions] `.?AVComposite@_detail@bnet@@` -`class bnet::_detail::Composite`: VTable [0x00000000031CA2D8, 0x0000000000000018 offset, 1 functions] `.?AVComposite@_detail@bnet@@` -`class bnet::_impl::OneToManyObserver`: VTable [0x00000000031CAE30, 0x0000000000000000 offset, 2 functions] `.?AV?$OneToManyObserver@VConfigurationEntry@bnet@@@_impl@bnet@@` -`class bnet::IHeap`: VTable [0x00000000031CAE50, 0x0000000000000000 offset, 3 functions] `.?AVIHeap@bnet@@` -`class bnet::IHttpConnectionProvider`: VTable [0x00000000031CAE78, 0x0000000000000000 offset, 6 functions] `.?AVIHttpConnectionProvider@bnet@@` -`class bnet::IProducerConsumerQueue >`: VTable [0x00000000031CAEC0, 0x0000000000000000 offset, 6 functions] `.?AV?$IProducerConsumerQueue@V?$UniquePtr@VBaseCallback@bnet@@@bnet@@@bnet@@` -`class bnet::ProducerConsumerQueue,struct bnet::ta::ThreadSafe>`: VTable [0x00000000031CAF08, 0x0000000000000000 offset, 6 functions] `.?AV?$ProducerConsumerQueue@V?$UniquePtr@VBaseCallback@bnet@@@bnet@@UThreadSafe@ta@2@@bnet@@` -`class bnet::ProducerConsumerQueue,struct bnet::ta::ThreadSafe>`: VTable [0x00000000031CAF50, 0x0000000000000000 offset, 6 functions] `.?AV?$ProducerConsumerQueue@V?$UniquePtr@VJob@bnet@@@bnet@@UThreadSafe@ta@2@@bnet@@` -`class bnet::IDispenser`: VTable [0x00000000031CAF98, 0x0000000000000000 offset, 1 functions] `.?AV?$IDispenser@VJob@bnet@@@bnet@@` -`class bnet::ConfigurationVariable`: VTable [0x00000000031CAFB0, 0x0000000000000000 offset, 2 functions] `.?AV?$ConfigurationVariable@H@bnet@@` -`class bnet::Network`: VTable [0x00000000031CAFD0, 0x0000000000000000 offset, 1 functions] `.?AVNetwork@bnet@@` -`class bnet::Network`: VTable [0x00000000031CAFE8, 0x0000000000000008 offset, 6 functions] `.?AVNetwork@bnet@@` -`class bnet::Network`: VTable [0x00000000031CB030, 0x0000000000000010 offset, 1 functions] `.?AVNetwork@bnet@@` -`class bnet::Caller`: VTable [0x00000000031CB1D8, 0x0000000000000000 offset, 4 functions] `.?AV?$Caller@P6AXPEAVNetworkLoop@bnet@@@ZPEAV12@@bnet@@` -`class std::_Ref_count_resource_alloc >`: VTable [0x00000000031CB208, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_resource_alloc@PEAPEAUHINSTANCE__@@UModuleDeleter@?A0x23fc826f@bnet@@V?$StdAllocator@X@_impl@4@@std@@` -`class std::_Ref_count_resource_alloc,class bnet::_impl::StdAllocator >`: VTable [0x00000000031CB238, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_resource_alloc@$$TU?$MemoryDeleter@PEAUHINSTANCE__@@@_impl@bnet@@V?$StdAllocator@X@23@@std@@` -`class std::_Ref_count_resource_alloc,class bnet::_impl::StdAllocator >`: VTable [0x00000000031CB268, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_resource_alloc@$$TU?$MemoryDeleter@$$CBU_SECURITY_FUNCTION_TABLE_A@@@_impl@bnet@@V?$StdAllocator@X@23@@std@@` -`class bnet::_detail::implComposite`: VTable [0x00000000031CBC70, 0x0000000000000000 offset, 9 functions] `.?AV?$implComposite@UThreadSafe@ta@bnet@@@_detail@bnet@@` -`class bnet::_detail::implComposite`: VTable [0x00000000031CBCD0, 0x0000000000000018 offset, 1 functions] `.?AV?$implComposite@UThreadSafe@ta@bnet@@@_detail@bnet@@` -`class bnet::Composite`: VTable [0x00000000031CBCE8, 0x0000000000000000 offset, 9 functions] `.?AV?$Composite@UThreadSafe@ta@bnet@@@bnet@@` -`class bnet::Composite`: VTable [0x00000000031CBD48, 0x0000000000000018 offset, 1 functions] `.?AV?$Composite@UThreadSafe@ta@bnet@@@bnet@@` -`class bnet::Parallel`: VTable [0x00000000031CBD60, 0x0000000000000000 offset, 9 functions] `.?AV?$Parallel@UThreadSafe@ta@bnet@@UNoErrorPropagation@23@@bnet@@` -`class bnet::Parallel`: VTable [0x00000000031CBDC0, 0x0000000000000018 offset, 1 functions] `.?AV?$Parallel@UThreadSafe@ta@bnet@@UNoErrorPropagation@23@@bnet@@` -`class bnet::UserQueue`: VTable [0x00000000031CBDD8, 0x0000000000000000 offset, 9 functions] `.?AVUserQueue@bnet@@` -`class bnet::UserQueue`: VTable [0x00000000031CBE38, 0x0000000000000018 offset, 1 functions] `.?AVUserQueue@bnet@@` -`class bnet::UserProcessor`: VTable [0x00000000031CBE50, 0x0000000000000000 offset, 9 functions] `.?AVUserProcessor@bnet@@` -`class bnet::UserProcessor`: VTable [0x00000000031CBEB0, 0x0000000000000018 offset, 1 functions] `.?AVUserProcessor@bnet@@` -`class bnet::UserProcessorCollection`: VTable [0x00000000031CBEC8, 0x0000000000000000 offset, 9 functions] `.?AVUserProcessorCollection@bnet@@` -`class bnet::UserProcessorCollection`: VTable [0x00000000031CBF28, 0x0000000000000018 offset, 1 functions] `.?AVUserProcessorCollection@bnet@@` -`class bnet::JobProcessorCollection`: VTable [0x00000000031CBF40, 0x0000000000000000 offset, 9 functions] `.?AVJobProcessorCollection@bnet@@` -`class bnet::JobProcessorCollection`: VTable [0x00000000031CBFA0, 0x0000000000000018 offset, 1 functions] `.?AVJobProcessorCollection@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031CC0F0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031CC138, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031CC180, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::Caller`: VTable [0x00000000031CC1F0, 0x0000000000000000 offset, 4 functions] `.?AV?$Caller@P6AXPEAVInternalBNet@bnet@@@ZPEAV12@@bnet@@` -`class bnet::_impl::AsyncOperation`: VTable [0x00000000031CC6A8, 0x0000000000000000 offset, 3 functions] `.?AVAsyncOperation@_impl@bnet@@` -`class bnet::_detail::implComposite`: VTable [0x00000000031CC6D0, 0x0000000000000000 offset, 9 functions] `.?AV?$implComposite@UNonThreadSafe@ta@bnet@@@_detail@bnet@@` -`class bnet::_detail::implComposite`: VTable [0x00000000031CC730, 0x0000000000000018 offset, 1 functions] `.?AV?$implComposite@UNonThreadSafe@ta@bnet@@@_detail@bnet@@` -`class bnet::ProducerConsumerQueue,struct bnet::ta::NonThreadSafe>`: VTable [0x00000000031CC748, 0x0000000000000000 offset, 6 functions] `.?AV?$ProducerConsumerQueue@V?$UniquePtr@VJob@bnet@@@bnet@@UNonThreadSafe@ta@2@@bnet@@` -`class bnet::Composite`: VTable [0x00000000031CC790, 0x0000000000000000 offset, 9 functions] `.?AV?$Composite@UNonThreadSafe@ta@bnet@@@bnet@@` -`class bnet::Composite`: VTable [0x00000000031CC7F0, 0x0000000000000018 offset, 1 functions] `.?AV?$Composite@UNonThreadSafe@ta@bnet@@@bnet@@` -`class bnet::Sequence`: VTable [0x00000000031CC808, 0x0000000000000000 offset, 9 functions] `.?AV?$Sequence@UNonThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@` -`class bnet::Sequence`: VTable [0x00000000031CC868, 0x0000000000000018 offset, 1 functions] `.?AV?$Sequence@UNonThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@` -`class bnet::_impl::Observable`: VTable [0x00000000031CC880, 0x0000000000000000 offset, 3 functions] `.?AV?$Observable@VAsyncOperation@_impl@bnet@@W4BNetError@3@@_impl@bnet@@` -`class bnet::SuspendFlow`: VTable [0x00000000031CC8A8, 0x0000000000000000 offset, 9 functions] `.?AVSuspendFlow@bnet@@` -`class bnet::SuspendFlow`: VTable [0x00000000031CC908, 0x0000000000000018 offset, 1 functions] `.?AVSuspendFlow@bnet@@` -`class bnet::SuspendFlow`: VTable [0x00000000031CC920, 0x0000000000000120 offset, 3 functions] `.?AVSuspendFlow@bnet@@` -`class bnet::ResumeFlow`: VTable [0x00000000031CCD68, 0x0000000000000000 offset, 9 functions] `.?AVResumeFlow@bnet@@` -`class bnet::ResumeFlow`: VTable [0x00000000031CCDC8, 0x0000000000000018 offset, 1 functions] `.?AVResumeFlow@bnet@@` -`class bnet::ResumeFlow`: VTable [0x00000000031CCDE0, 0x0000000000000120 offset, 3 functions] `.?AVResumeFlow@bnet@@` -`class bnet::Callback`: VTable [0x00000000031CCE08, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031CCE50, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031CCE98, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031CCEE0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CustomData::BinaryValue`: VTable [0x00000000031CD5A0, 0x0000000000000000 offset, 6 functions] `.?AVBinaryValue@CustomData@bnet@@` -`class bnet::CustomData::ObjectValue`: VTable [0x00000000031CD5E8, 0x0000000000000000 offset, 6 functions] `.?AVObjectValue@CustomData@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031CDA50, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031CDA98, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::BaseHttpRequest`: VTable [0x00000000031CF958, 0x0000000000000000 offset, 16 functions] `.?AVBaseHttpRequest@bnet@@` -`class bnet::HttpRequest >`: VTable [0x00000000031CFA30, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@bnet@@` -`class bnet::EventLog::`anonymous namespace'::CollectErrorRequest`: VTable [0x00000000031CFAD8, 0x0000000000000000 offset, 16 functions] `.?AVCollectErrorRequest@?A0x8b95a019@EventLog@bnet@@` -`class bnet::EventLog::`anonymous namespace'::CollectLogRequest`: VTable [0x00000000031CFBA0, 0x0000000000000000 offset, 16 functions] `.?AVCollectLogRequest@?A0x8b95a019@EventLog@bnet@@` -`class bnet::EventLog::`anonymous namespace'::CollectLogBatchRequest`: VTable [0x00000000031CFC88, 0x0000000000000000 offset, 16 functions] `.?AVCollectLogBatchRequest@?A0x8b95a019@EventLog@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031CFD40, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031CFDF8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031CFEB8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031CFFE8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::IUgcUploader`: VTable [0x00000000031D17B8, 0x0000000000000000 offset, 2 functions] `.?AVIUgcUploader@bnet@@` -`class bnet::Sequence`: VTable [0x00000000031D17D8, 0x0000000000000000 offset, 9 functions] `.?AV?$Sequence@UThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@` -`class bnet::Sequence`: VTable [0x00000000031D1838, 0x0000000000000018 offset, 1 functions] `.?AV?$Sequence@UThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@` -`class bnet::ChunkedUploadFlow`: VTable [0x00000000031D1850, 0x0000000000000000 offset, 9 functions] `.?AVChunkedUploadFlow@bnet@@` -`class bnet::ChunkedUploadFlow`: VTable [0x00000000031D18B0, 0x0000000000000018 offset, 1 functions] `.?AVChunkedUploadFlow@bnet@@` -`class bnet::ChunkedUploadFlow`: VTable [0x00000000031D18C8, 0x0000000000000178 offset, 3 functions] `.?AVChunkedUploadFlow@bnet@@` -`class bnet::ChunkedUploadFlow`: VTable [0x00000000031D18F0, 0x00000000000001A0 offset, 2 functions] `.?AVChunkedUploadFlow@bnet@@` -`class bnet::Callback`: VTable [0x00000000031D1910, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@_KVHttpResponseInfo@bnet@@@bnet@@` -`class bnet::CallbackBind,class bnet::ChunkedUploadFlow>`: VTable [0x00000000031D1958, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@_KVHttpResponseInfo@bnet@@@bnet@@VChunkedUploadFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::ChunkedUploadFlow>`: VTable [0x00000000031D19A0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VChunkedUploadFlow@2@@bnet@@` -`class bnet::IDownloader`: VTable [0x00000000031D23E8, 0x0000000000000000 offset, 2 functions] `.?AVIDownloader@bnet@@` -`class bnet::DownloadFlow`: VTable [0x00000000031D2408, 0x0000000000000000 offset, 9 functions] `.?AVDownloadFlow@bnet@@` -`class bnet::DownloadFlow`: VTable [0x00000000031D2468, 0x0000000000000018 offset, 1 functions] `.?AVDownloadFlow@bnet@@` -`class bnet::DownloadFlow`: VTable [0x00000000031D2480, 0x0000000000000178 offset, 3 functions] `.?AVDownloadFlow@bnet@@` -`class bnet::DownloadFlow`: VTable [0x00000000031D24A8, 0x00000000000001A0 offset, 2 functions] `.?AVDownloadFlow@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031D24C8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VCdpFileInfoResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::DownloadFlow>`: VTable [0x00000000031D2510, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VCdpFileInfoResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VDownloadFlow@2@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031D2558, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VCdpKeyResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::DownloadFlow>`: VTable [0x00000000031D25A0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VCdpKeyResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VDownloadFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::DownloadFlow>`: VTable [0x00000000031D25E8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VFileChunk@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VDownloadFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::DownloadFlow>`: VTable [0x00000000031D2630, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VDownloadFlow@2@@bnet@@` -`class bnet::FileDownloader`: VTable [0x00000000031D2980, 0x0000000000000000 offset, 11 functions] `.?AVFileDownloader@bnet@@` -`class bnet::FileDownloader`: VTable [0x00000000031D29F8, 0x0000000000000018 offset, 1 functions] `.?AVFileDownloader@bnet@@` -`class bnet::FileDownloader`: VTable [0x00000000031D2A10, 0x0000000000000120 offset, 3 functions] `.?AVFileDownloader@bnet@@` -`class bnet::FileDownloader`: VTable [0x00000000031D2A38, 0x0000000000000148 offset, 2 functions] `.?AVFileDownloader@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D3278, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUgcPagedContentListResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcBrowseRequest`: VTable [0x00000000031D3320, 0x0000000000000000 offset, 16 functions] `.?AVUgcBrowseRequest@bnet@@` -`class bnet::UgcArgLessRequest`: VTable [0x00000000031D3558, 0x0000000000000000 offset, 16 functions] `.?AVUgcArgLessRequest@bnet@@` -`class bnet::HttpRequest > >,40,1,class bnet::_impl::StdAllocator > > > > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D3AE8, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@V?$Count@V?$FixedString@$0EA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@bnet@@$0CI@$00V?$StdAllocator@V?$Count@V?$FixedString@$0EA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcCategoryCountRequest`: VTable [0x00000000031D3B90, 0x0000000000000000 offset, 16 functions] `.?AVUgcCategoryCountRequest@bnet@@` -`class bnet::HttpRequest >`: VTable [0x00000000031D3FA8, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@W4UploadStatus@UgcType@bnet@@VHttpResponseInfo@3@@bnet@@@bnet@@` -`class bnet::UgcUploadRequest >`: VTable [0x00000000031D4050, 0x0000000000000000 offset, 16 functions] `.?AV?$UgcUploadRequest@V?$Callback@W4UploadStatus@UgcType@bnet@@VHttpResponseInfo@3@@bnet@@@bnet@@` -`class bnet::UgcContentUploadRequest`: VTable [0x00000000031D40F8, 0x0000000000000000 offset, 16 functions] `.?AVUgcContentUploadRequest@bnet@@` -`class bnet::UgcImageUploadRequest`: VTable [0x00000000031D42F8, 0x0000000000000000 offset, 16 functions] `.?AVUgcImageUploadRequest@bnet@@` -`class bnet::UgcAddVideoRequest`: VTable [0x00000000031D4460, 0x0000000000000000 offset, 16 functions] `.?AVUgcAddVideoRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D4840, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUgcContent@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcContentRequest`: VTable [0x00000000031D48E8, 0x0000000000000000 offset, 16 functions] `.?AVUgcContentRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D4D00, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUgcUploadDetails@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcContentUploadDetailsRequest`: VTable [0x00000000031D4DA8, 0x0000000000000000 offset, 16 functions] `.?AVUgcContentUploadDetailsRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D51E0, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUgcCreationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcCreationRequest`: VTable [0x00000000031D5288, 0x0000000000000000 offset, 16 functions] `.?AVUgcCreationRequest@bnet@@` -`class bnet::UgcEditRequest`: VTable [0x00000000031D5550, 0x0000000000000000 offset, 16 functions] `.?AVUgcEditRequest@bnet@@` -`class bnet::UgcFlagRequest`: VTable [0x00000000031D5770, 0x0000000000000000 offset, 16 functions] `.?AVUgcFlagRequest@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D5A88, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VUgcContent@bnet@@$0BJ@$00V?$StdAllocator@VUgcContent@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListContentRequest`: VTable [0x00000000031D5B30, 0x0000000000000000 offset, 16 functions] `.?AVUgcListContentRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D5F60, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUgcListCategoriesResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListCategoriesRequest`: VTable [0x00000000031D6008, 0x0000000000000000 offset, 16 functions] `.?AVUgcListCategoriesRequest@bnet@@` -`class bnet::HttpRequest >,16,1,class bnet::_impl::StdAllocator > > > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D6510, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@V?$FixedString@$0CA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@$0BA@$00V?$StdAllocator@V?$FixedString@$0CA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@23@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListDlcRequest`: VTable [0x00000000031D65B8, 0x0000000000000000 offset, 16 functions] `.?AVUgcListDlcRequest@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D6A78, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@W4Platform@bnet@@$09$00V?$StdAllocator@W4Platform@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Ugc::ListPlatformsRequest`: VTable [0x00000000031D6B20, 0x0000000000000000 offset, 16 functions] `.?AVListPlatformsRequest@Ugc@bnet@@` -`class bnet::HttpRequest >,8,1,class bnet::_impl::StdAllocator > > > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D7040, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@V?$FixedString@$0IA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@$07$00V?$StdAllocator@V?$FixedString@$0IA@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@23@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Ugc::ListProductsRequest`: VTable [0x00000000031D70E8, 0x0000000000000000 offset, 16 functions] `.?AVListProductsRequest@Ugc@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D7500, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VUgcAuthor@bnet@@$0BE@$00V?$StdAllocator@VUgcAuthor@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListFollowedAuthorRequest`: VTable [0x00000000031D75A8, 0x0000000000000000 offset, 16 functions] `.?AVUgcListFollowedAuthorRequest@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D7A08, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VUgcNotification@bnet@@$0BE@$00V?$StdAllocator@VUgcNotification@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListNotificationRequest`: VTable [0x00000000031D7AB0, 0x0000000000000000 offset, 16 functions] `.?AVUgcListNotificationRequest@bnet@@` -`class bnet::HttpRequest >,16,1,class bnet::_impl::StdAllocator > > > const >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031D8088, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@$$CBV?$FixedVector@V?$FixedString@$09$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@$0BA@$00V?$StdAllocator@V?$FixedString@$09$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@@23@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcListBlacklistedRequest`: VTable [0x00000000031D8130, 0x0000000000000000 offset, 16 functions] `.?AVUgcListBlacklistedRequest@bnet@@` -`class bnet::UgcListFeaturedContentRequest`: VTable [0x00000000031D8380, 0x0000000000000000 offset, 16 functions] `.?AVUgcListFeaturedContentRequest@bnet@@` -`class bnet::UgcListByEntitlementIdsRequest`: VTable [0x00000000031D85B8, 0x0000000000000000 offset, 16 functions] `.?AVUgcListByEntitlementIdsRequest@bnet@@` -`class bnet::UgcNotificationAcknowledgeRequest`: VTable [0x00000000031D8728, 0x0000000000000000 offset, 16 functions] `.?AVUgcNotificationAcknowledgeRequest@bnet@@` -`class bnet::UgcPreviewUploadRequest`: VTable [0x00000000031D8800, 0x0000000000000000 offset, 16 functions] `.?AVUgcPreviewUploadRequest@bnet@@` -`class bnet::UgcQueryRequest`: VTable [0x00000000031D8960, 0x0000000000000000 offset, 16 functions] `.?AVUgcQueryRequest@bnet@@` -`class bnet::UgcRateRequest`: VTable [0x00000000031D8AB0, 0x0000000000000000 offset, 16 functions] `.?AVUgcRateRequest@bnet@@` -`class bnet::HttpRequest >`: VTable [0x00000000031D8E88, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@VUgcReleaseNote@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::UgcAddReleaseNoteRequest`: VTable [0x00000000031D8F30, 0x0000000000000000 offset, 16 functions] `.?AVUgcAddReleaseNoteRequest@bnet@@` -`class bnet::UgcUpdateReleaseNoteRequest`: VTable [0x00000000031D90D0, 0x0000000000000000 offset, 16 functions] `.?AVUgcUpdateReleaseNoteRequest@bnet@@` -`class bnet::UgcRemoveReleaseNoteRequest`: VTable [0x00000000031D9250, 0x0000000000000000 offset, 16 functions] `.?AVUgcRemoveReleaseNoteRequest@bnet@@` -`class bnet::Ugc::RefreshEntitlementRequest`: VTable [0x00000000031D93B0, 0x0000000000000000 offset, 16 functions] `.?AVRefreshEntitlementRequest@Ugc@bnet@@` -`class bnet::Job`: VTable [0x00000000031D99A0, 0x0000000000000000 offset, 6 functions] `.?AVJob@bnet@@` -`class bnet::FreeLessHeap`: VTable [0x00000000031D9AD8, 0x0000000000000000 offset, 3 functions] `.?AVFreeLessHeap@bnet@@` -`class bnet::AcquirableFreeLessHeap`: VTable [0x00000000031D9B00, 0x0000000000000000 offset, 3 functions] `.?AVAcquirableFreeLessHeap@bnet@@` -`class bnet::NetworkLoop`: VTable [0x00000000031DA090, 0x0000000000000000 offset, 9 functions] `.?AVNetworkLoop@bnet@@` -`class bnet::NetworkLoop`: VTable [0x00000000031DA0F0, 0x0000000000000018 offset, 1 functions] `.?AVNetworkLoop@bnet@@` -`class bnet::NetworkLoop`: VTable [0x00000000031DA108, 0x0000000000000178 offset, 6 functions] `.?AVNetworkLoop@bnet@@` -`class bnet::Callback`: VTable [0x00000000031DB0F0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031DB160, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031DB1A8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031DB4C0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031DB520, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031DB5A8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class std::bad_weak_ptr`: VTable [0x00000000031DBC78, 0x0000000000000000 offset, 2 functions] `.?AVbad_weak_ptr@std@@` -`class bnet::HttpRequest >`: VTable [0x00000000031DC030, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@_NVHttpResponseInfo@bnet@@@bnet@@@bnet@@` -`class bnet::AcceptLegalDocumentsRequest`: VTable [0x00000000031DC0D8, 0x0000000000000000 offset, 16 functions] `.?AVAcceptLegalDocumentsRequest@bnet@@` -`class bnet::ListLegalDocumentsFlow`: VTable [0x00000000031DC820, 0x0000000000000000 offset, 9 functions] `.?AVListLegalDocumentsFlow@bnet@@` -`class bnet::ListLegalDocumentsFlow`: VTable [0x00000000031DC880, 0x0000000000000018 offset, 1 functions] `.?AVListLegalDocumentsFlow@bnet@@` -`class bnet::ListLegalDocumentsFlow`: VTable [0x00000000031DC898, 0x0000000000000120 offset, 3 functions] `.?AVListLegalDocumentsFlow@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class bnet::ListLegalDocumentsFlow>`: VTable [0x00000000031DC8C0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VLegalDocument@bnet@@$04$00V?$StdAllocator@VLegalDocument@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VListLegalDocumentsFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::ListLegalDocumentsFlow>`: VTable [0x00000000031DC908, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VListLegalDocumentsFlow@2@@bnet@@` -`class bnet::LogoutFlow`: VTable [0x00000000031DCE58, 0x0000000000000000 offset, 9 functions] `.?AVLogoutFlow@bnet@@` -`class bnet::LogoutFlow`: VTable [0x00000000031DCEB8, 0x0000000000000018 offset, 1 functions] `.?AVLogoutFlow@bnet@@` -`class bnet::LogoutFlow`: VTable [0x00000000031DCED0, 0x0000000000000120 offset, 3 functions] `.?AVLogoutFlow@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031DCEF8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031DCF40, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::Callback`: VTable [0x00000000031DF088, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@VFrame@Notification@bnet@@VWebSocketStatus@3@@bnet@@` -`class bnet::Notification::UserWebSocket::OnConnected`: VTable [0x00000000031DF0E0, 0x0000000000000000 offset, 6 functions] `.?AVOnConnected@UserWebSocket@Notification@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031DF128, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@VFrame@Notification@bnet@@VWebSocketStatus@3@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031DF170, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::Callback > >,class bnet::HttpResponseInfo>`: VTable [0x00000000031DF1B8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@V?$FixedVector@USystemModel@Notification@bnet@@$07$00V?$StdAllocator@USystemModel@Notification@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::Notification::UserData::OnSystemIdFetchedRegister`: VTable [0x00000000031DF200, 0x0000000000000000 offset, 6 functions] `.?AVOnSystemIdFetchedRegister@UserData@Notification@bnet@@` -`class bnet::Notification::UserWebSocket::OnSystemIdFetchedSend`: VTable [0x00000000031DF2E0, 0x0000000000000000 offset, 6 functions] `.?AVOnSystemIdFetchedSend@UserWebSocket@Notification@bnet@@` -`class bnet::Notification::UserWebSocket::OnSystemIdFetchedSend`: VTable [0x00000000031DF328, 0x0000000000000018 offset, 3 functions] `.?AVOnSystemIdFetchedSend@UserWebSocket@Notification@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class bnet::Notification::UserWebSocket::OnSystemIdFetchedSend>`: VTable [0x00000000031DF350, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@USystemModel@Notification@bnet@@$07$00V?$StdAllocator@USystemModel@Notification@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VOnSystemIdFetchedSend@UserWebSocket@Notification@2@@bnet@@` -`class bnet::CallbackBind,class bnet::Notification::UserWebSocket::OnSystemIdFetchedSend>`: VTable [0x00000000031DF398, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@VOnSystemIdFetchedSend@UserWebSocket@Notification@2@@bnet@@` -`class bnet::Notification::UserData::ReconnectJob`: VTable [0x00000000031DF430, 0x0000000000000000 offset, 6 functions] `.?AVReconnectJob@UserData@Notification@bnet@@` -`class bnet::CallbackBind,class bnet::Notification::UserData::ReconnectJob>`: VTable [0x00000000031DF478, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@VReconnectJob@UserData@Notification@2@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000031DF4F8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class std::_Ref_count_obj_alloc >`: VTable [0x00000000031DF7F8, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj_alloc@VUserWebSocket@Notification@bnet@@V?$StdAllocator@X@_impl@3@@std@@` -`class std::_Ref_count_resource_alloc,class bnet::_impl::StdAllocator >`: VTable [0x00000000031DF828, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_resource_alloc@$$TU?$MemoryDeleter@VUserWebSocket@Notification@bnet@@@_impl@bnet@@V?$StdAllocator@X@23@@std@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031DFBA0, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VAccountLinkingResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::AccountLinkingRequest`: VTable [0x00000000031DFC48, 0x0000000000000000 offset, 16 functions] `.?AVAccountLinkingRequest@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031E04D8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VBeamUserData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::AccountQuickCreateFlow`: VTable [0x00000000031E0520, 0x0000000000000000 offset, 9 functions] `.?AVAccountQuickCreateFlow@bnet@@` -`class bnet::AccountQuickCreateFlow`: VTable [0x00000000031E0580, 0x0000000000000018 offset, 1 functions] `.?AVAccountQuickCreateFlow@bnet@@` -`class bnet::AccountQuickCreateFlow`: VTable [0x00000000031E0598, 0x0000000000000120 offset, 3 functions] `.?AVAccountQuickCreateFlow@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::AccountQuickCreateFlow>`: VTable [0x00000000031E05C0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VBeamUserData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VAccountQuickCreateFlow@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class bnet::AccountQuickCreateFlow>`: VTable [0x00000000031E0618, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VLegalDocument@bnet@@$04$00V?$StdAllocator@VLegalDocument@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VAccountQuickCreateFlow@2@@bnet@@` -`class bnet::AnonymousAuthenticationFlow`: VTable [0x00000000031E07E0, 0x0000000000000000 offset, 9 functions] `.?AVAnonymousAuthenticationFlow@bnet@@` -`class bnet::AnonymousAuthenticationFlow`: VTable [0x00000000031E0840, 0x0000000000000018 offset, 1 functions] `.?AVAnonymousAuthenticationFlow@bnet@@` -`class bnet::AnonymousAuthenticationFlow`: VTable [0x00000000031E0858, 0x0000000000000120 offset, 3 functions] `.?AVAnonymousAuthenticationFlow@bnet@@` -`class bnet::CallbackBind,class bnet::AnonymousAuthenticationFlow>`: VTable [0x00000000031E0880, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VAnonymousAuthenticationFlow@2@@bnet@@` -`class bnet::SessionAnonymousCreateFlow`: VTable [0x00000000031E0A48, 0x0000000000000000 offset, 9 functions] `.?AVSessionAnonymousCreateFlow@bnet@@` -`class bnet::SessionAnonymousCreateFlow`: VTable [0x00000000031E0AA8, 0x0000000000000018 offset, 1 functions] `.?AVSessionAnonymousCreateFlow@bnet@@` -`class bnet::SessionAnonymousCreateFlow`: VTable [0x00000000031E0AC0, 0x0000000000000120 offset, 3 functions] `.?AVSessionAnonymousCreateFlow@bnet@@` -`class bnet::CallbackBind,class bnet::SessionAnonymousCreateFlow>`: VTable [0x00000000031E0AE8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VSessionAnonymousCreateFlow@2@@bnet@@` -`class bnet::SessionQuickCreateFlow`: VTable [0x00000000031E0CB0, 0x0000000000000000 offset, 9 functions] `.?AVSessionQuickCreateFlow@bnet@@` -`class bnet::SessionQuickCreateFlow`: VTable [0x00000000031E0D10, 0x0000000000000018 offset, 1 functions] `.?AVSessionQuickCreateFlow@bnet@@` -`class bnet::SessionQuickCreateFlow`: VTable [0x00000000031E0D28, 0x0000000000000120 offset, 3 functions] `.?AVSessionQuickCreateFlow@bnet@@` -`class bnet::CallbackBind,class bnet::SessionQuickCreateFlow>`: VTable [0x00000000031E0D50, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VSessionQuickCreateFlow@2@@bnet@@` -`class bnet::AccountDeletionRequest`: VTable [0x00000000031E0E38, 0x0000000000000000 offset, 16 functions] `.?AVAccountDeletionRequest@bnet@@` -`class bnet::AddFingerprintRequest`: VTable [0x00000000031E10E0, 0x0000000000000000 offset, 16 functions] `.?AVAddFingerprintRequest@bnet@@` -`class bnet::IsAccountLinkableRequest`: VTable [0x00000000031E1380, 0x0000000000000000 offset, 16 functions] `.?AVIsAccountLinkableRequest@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031E17C0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VBeamAuthResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::UserCredentialsAuthenticationFlow`: VTable [0x00000000031E1808, 0x0000000000000000 offset, 9 functions] `.?AVUserCredentialsAuthenticationFlow@bnet@@` -`class bnet::UserCredentialsAuthenticationFlow`: VTable [0x00000000031E1868, 0x0000000000000018 offset, 1 functions] `.?AVUserCredentialsAuthenticationFlow@bnet@@` -`class bnet::UserCredentialsAuthenticationFlow`: VTable [0x00000000031E1880, 0x0000000000000120 offset, 3 functions] `.?AVUserCredentialsAuthenticationFlow@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::UserCredentialsAuthenticationFlow>`: VTable [0x00000000031E18A8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VBeamAuthResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VUserCredentialsAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::UserCredentialsAuthenticationFlow>`: VTable [0x00000000031E18F0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VUserCredentialsAuthenticationFlow@2@@bnet@@` -`class bnet::ExternalAuthenticationFlow`: VTable [0x00000000031E1D58, 0x0000000000000000 offset, 9 functions] `.?AVExternalAuthenticationFlow@bnet@@` -`class bnet::ExternalAuthenticationFlow`: VTable [0x00000000031E1DB8, 0x0000000000000018 offset, 1 functions] `.?AVExternalAuthenticationFlow@bnet@@` -`class bnet::ExternalAuthenticationFlow`: VTable [0x00000000031E1DD0, 0x0000000000000120 offset, 3 functions] `.?AVExternalAuthenticationFlow@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::ExternalAuthenticationFlow>`: VTable [0x00000000031E1DF8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VBeamAuthResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VExternalAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::ExternalAuthenticationFlow>`: VTable [0x00000000031E1E40, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VExternalAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::ExternalAuthenticationFlow>`: VTable [0x00000000031E1E88, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VExternalAuthenticationFlow@2@@bnet@@` -`class bnet::GameCodeAuthenticationFlow`: VTable [0x00000000031E2050, 0x0000000000000000 offset, 9 functions] `.?AVGameCodeAuthenticationFlow@bnet@@` -`class bnet::GameCodeAuthenticationFlow`: VTable [0x00000000031E20B0, 0x0000000000000018 offset, 1 functions] `.?AVGameCodeAuthenticationFlow@bnet@@` -`class bnet::GameCodeAuthenticationFlow`: VTable [0x00000000031E20C8, 0x0000000000000120 offset, 3 functions] `.?AVGameCodeAuthenticationFlow@bnet@@` -`class bnet::CallbackBind,class bnet::GameCodeAuthenticationFlow>`: VTable [0x00000000031E20F0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VGameCodeAuthenticationFlow@2@@bnet@@` -`class bnet::UnlinkAccountFlow`: VTable [0x00000000031E2528, 0x0000000000000000 offset, 9 functions] `.?AVUnlinkAccountFlow@bnet@@` -`class bnet::UnlinkAccountFlow`: VTable [0x00000000031E2588, 0x0000000000000018 offset, 1 functions] `.?AVUnlinkAccountFlow@bnet@@` -`class bnet::UnlinkAccountFlow`: VTable [0x00000000031E25A0, 0x0000000000000120 offset, 3 functions] `.?AVUnlinkAccountFlow@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031E25C8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VUpgradeTokenResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::UnlinkAccountFlow>`: VTable [0x00000000031E2610, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VUpgradeTokenResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VUnlinkAccountFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::UnlinkAccountFlow>`: VTable [0x00000000031E2658, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VUnlinkAccountFlow@2@@bnet@@` -`class bnet::UsernameValidationRequest`: VTable [0x00000000031E2748, 0x0000000000000000 offset, 16 functions] `.?AVUsernameValidationRequest@bnet@@` -`class bnet::VerifyFingerprintRequest`: VTable [0x00000000031E2948, 0x0000000000000000 offset, 16 functions] `.?AVVerifyFingerprintRequest@bnet@@` -`class bnet::VerifyLinkRequest`: VTable [0x00000000031E2B48, 0x0000000000000000 offset, 16 functions] `.?AVVerifyLinkRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031E2F48, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VTwitchAccountInfoResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::TwitchAccountInfoRequest`: VTable [0x00000000031E2FF0, 0x0000000000000000 offset, 16 functions] `.?AVTwitchAccountInfoRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031E3328, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VAccountDisplayNameInfoResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::CheckDisplayNameRequest`: VTable [0x00000000031E33D0, 0x0000000000000000 offset, 16 functions] `.?AVCheckDisplayNameRequest@bnet@@` -`class bnet::CheckEmailRequest`: VTable [0x00000000031E3540, 0x0000000000000000 offset, 16 functions] `.?AVCheckEmailRequest@bnet@@` -`class bnet::RecoverPasswordRequest`: VTable [0x00000000031E3720, 0x0000000000000000 offset, 16 functions] `.?AVRecoverPasswordRequest@bnet@@` -`class bnet::RecoverUsernameRequest`: VTable [0x00000000031E37C8, 0x0000000000000000 offset, 16 functions] `.?AVRecoverUsernameRequest@bnet@@` -`class bnet::ResendVerificationRequest`: VTable [0x00000000031E3908, 0x0000000000000000 offset, 16 functions] `.?AVResendVerificationRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031E3CC0, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VSessionValidateResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::SessionValidateRequest`: VTable [0x00000000031E3D68, 0x0000000000000000 offset, 16 functions] `.?AVSessionValidateRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031E40F0, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VAccountInfoResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::AccountInfoRequest`: VTable [0x00000000031E4198, 0x0000000000000000 offset, 16 functions] `.?AVAccountInfoRequest@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000031E4608, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::BaseCallbackJob,class bnet::Callback,class bnet::HttpResponseInfo>,struct bnet::ta::ThreadSafe>`: VTable [0x00000000031E4650, 0x0000000000000000 offset, 10 functions] `.?AV?$BaseCallbackJob@V?$Sequence@UThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@V?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@2@UThreadSafe@ta@2@@bnet@@` -`class bnet::BaseCallbackJob,class bnet::Callback,class bnet::HttpResponseInfo>,struct bnet::ta::ThreadSafe>`: VTable [0x00000000031E46C0, 0x0000000000000018 offset, 1 functions] `.?AV?$BaseCallbackJob@V?$Sequence@UThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@V?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@2@UThreadSafe@ta@2@@bnet@@` -`class bnet::CallbackSequence,class bnet::HttpResponseInfo>,struct bnet::ta::ThreadSafe,struct bnet::ta::ErrorPropagation>`: VTable [0x00000000031E46D8, 0x0000000000000000 offset, 10 functions] `.?AV?$CallbackSequence@V?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@UThreadSafe@ta@2@UErrorPropagation@42@@bnet@@` -`class bnet::CallbackSequence,class bnet::HttpResponseInfo>,struct bnet::ta::ThreadSafe,struct bnet::ta::ErrorPropagation>`: VTable [0x00000000031E4748, 0x0000000000000018 offset, 1 functions] `.?AV?$CallbackSequence@V?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@UThreadSafe@ta@2@UErrorPropagation@42@@bnet@@` -`class bnet::RetrieveExternalAccountJob`: VTable [0x00000000031E4760, 0x0000000000000000 offset, 10 functions] `.?AVRetrieveExternalAccountJob@bnet@@` -`class bnet::RetrieveExternalAccountJob`: VTable [0x00000000031E47D0, 0x0000000000000018 offset, 1 functions] `.?AVRetrieveExternalAccountJob@bnet@@` -`class bnet::RetrieveExternalAccountJob`: VTable [0x00000000031E47E8, 0x00000000000001A0 offset, 3 functions] `.?AVRetrieveExternalAccountJob@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::RetrieveExternalAccountJob>`: VTable [0x00000000031E4810, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VRetrieveExternalAccountJob@2@@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031E4E28, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VExternalIdAccountInfo@bnet@@$03$00V?$StdAllocator@VExternalIdAccountInfo@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::ExternalServiceRetrieveAccountRequest`: VTable [0x00000000031E4ED0, 0x0000000000000000 offset, 16 functions] `.?AVExternalServiceRetrieveAccountRequest@bnet@@` -`class bnet::HttpRequest >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031E5370, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$FixedString@$0HNA@$00$0A@V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@VHttpResponseInfo@3@@bnet@@@bnet@@` -`class bnet::AccountUpgradeAnonymousToQuickRequest`: VTable [0x00000000031E5418, 0x0000000000000000 offset, 16 functions] `.?AVAccountUpgradeAnonymousToQuickRequest@bnet@@` -`class bnet::GameAccountLinkFlow`: VTable [0x00000000031E56B0, 0x0000000000000000 offset, 9 functions] `.?AVGameAccountLinkFlow@bnet@@` -`class bnet::GameAccountLinkFlow`: VTable [0x00000000031E5710, 0x0000000000000018 offset, 1 functions] `.?AVGameAccountLinkFlow@bnet@@` -`class bnet::GameAccountLinkFlow`: VTable [0x00000000031E5728, 0x0000000000000120 offset, 3 functions] `.?AVGameAccountLinkFlow@bnet@@` -`class bnet::CallbackBind,class bnet::GameAccountLinkFlow>`: VTable [0x00000000031E5750, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VGameAccountLinkFlow@2@@bnet@@` -`class bnet::GameAccountLinkConflictResolveFlow`: VTable [0x00000000031E5918, 0x0000000000000000 offset, 9 functions] `.?AVGameAccountLinkConflictResolveFlow@bnet@@` -`class bnet::GameAccountLinkConflictResolveFlow`: VTable [0x00000000031E5978, 0x0000000000000018 offset, 1 functions] `.?AVGameAccountLinkConflictResolveFlow@bnet@@` -`class bnet::GameAccountLinkConflictResolveFlow`: VTable [0x00000000031E5990, 0x0000000000000120 offset, 3 functions] `.?AVGameAccountLinkConflictResolveFlow@bnet@@` -`class bnet::CallbackBind,class bnet::GameAccountLinkConflictResolveFlow>`: VTable [0x00000000031E59B8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VGameAccountLinkConflictResolveFlow@2@@bnet@@` -`class bnet::GameAccountExternalLinkConflictResolveFlow`: VTable [0x00000000031E5B80, 0x0000000000000000 offset, 9 functions] `.?AVGameAccountExternalLinkConflictResolveFlow@bnet@@` -`class bnet::GameAccountExternalLinkConflictResolveFlow`: VTable [0x00000000031E5BE0, 0x0000000000000018 offset, 1 functions] `.?AVGameAccountExternalLinkConflictResolveFlow@bnet@@` -`class bnet::GameAccountExternalLinkConflictResolveFlow`: VTable [0x00000000031E5BF8, 0x0000000000000120 offset, 3 functions] `.?AVGameAccountExternalLinkConflictResolveFlow@bnet@@` -`class bnet::CallbackBind,class bnet::GameAccountExternalLinkConflictResolveFlow>`: VTable [0x00000000031E5C20, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VGameAccountExternalLinkConflictResolveFlow@2@@bnet@@` -`class bnet::GameAccountUserCredentialsAuthenticationFlow`: VTable [0x00000000031E5F38, 0x0000000000000000 offset, 9 functions] `.?AVGameAccountUserCredentialsAuthenticationFlow@bnet@@` -`class bnet::GameAccountUserCredentialsAuthenticationFlow`: VTable [0x00000000031E5F98, 0x0000000000000018 offset, 1 functions] `.?AVGameAccountUserCredentialsAuthenticationFlow@bnet@@` -`class bnet::GameAccountUserCredentialsAuthenticationFlow`: VTable [0x00000000031E5FB0, 0x0000000000000120 offset, 3 functions] `.?AVGameAccountUserCredentialsAuthenticationFlow@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::GameAccountUserCredentialsAuthenticationFlow>`: VTable [0x00000000031E5FD8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VBeamAuthResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VGameAccountUserCredentialsAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::GameAccountUserCredentialsAuthenticationFlow>`: VTable [0x00000000031E6020, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VGameAccountUserCredentialsAuthenticationFlow@2@@bnet@@` -`class bnet::GameAccountExternalAuthenticationFlow`: VTable [0x00000000031E62D8, 0x0000000000000000 offset, 9 functions] `.?AVGameAccountExternalAuthenticationFlow@bnet@@` -`class bnet::GameAccountExternalAuthenticationFlow`: VTable [0x00000000031E6338, 0x0000000000000018 offset, 1 functions] `.?AVGameAccountExternalAuthenticationFlow@bnet@@` -`class bnet::GameAccountExternalAuthenticationFlow`: VTable [0x00000000031E6350, 0x0000000000000120 offset, 3 functions] `.?AVGameAccountExternalAuthenticationFlow@bnet@@` -`class bnet::CallbackBind,class bnet::GameAccountExternalAuthenticationFlow>`: VTable [0x00000000031E6378, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VGameAccountExternalAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::GameAccountExternalAuthenticationFlow>`: VTable [0x00000000031E63C0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VGameAccountExternalAuthenticationFlow@2@@bnet@@` -`class bnet::GameAccountExternalLinkFlow`: VTable [0x00000000031E6588, 0x0000000000000000 offset, 9 functions] `.?AVGameAccountExternalLinkFlow@bnet@@` -`class bnet::GameAccountExternalLinkFlow`: VTable [0x00000000031E65E8, 0x0000000000000018 offset, 1 functions] `.?AVGameAccountExternalLinkFlow@bnet@@` -`class bnet::GameAccountExternalLinkFlow`: VTable [0x00000000031E6600, 0x0000000000000120 offset, 3 functions] `.?AVGameAccountExternalLinkFlow@bnet@@` -`class bnet::CallbackBind,class bnet::GameAccountExternalLinkFlow>`: VTable [0x00000000031E6628, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VGameAccountExternalLinkFlow@2@@bnet@@` -`class bnet::GameAccountGameCodeAuthenticationFlow`: VTable [0x00000000031E67F0, 0x0000000000000000 offset, 9 functions] `.?AVGameAccountGameCodeAuthenticationFlow@bnet@@` -`class bnet::GameAccountGameCodeAuthenticationFlow`: VTable [0x00000000031E6850, 0x0000000000000018 offset, 1 functions] `.?AVGameAccountGameCodeAuthenticationFlow@bnet@@` -`class bnet::GameAccountGameCodeAuthenticationFlow`: VTable [0x00000000031E6868, 0x0000000000000120 offset, 3 functions] `.?AVGameAccountGameCodeAuthenticationFlow@bnet@@` -`class bnet::CallbackBind,class bnet::GameAccountGameCodeAuthenticationFlow>`: VTable [0x00000000031E6890, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VGameAccountGameCodeAuthenticationFlow@2@@bnet@@` -`class bnet::SessionResumeFlow`: VTable [0x00000000031E6A58, 0x0000000000000000 offset, 9 functions] `.?AVSessionResumeFlow@bnet@@` -`class bnet::SessionResumeFlow`: VTable [0x00000000031E6AB8, 0x0000000000000018 offset, 1 functions] `.?AVSessionResumeFlow@bnet@@` -`class bnet::SessionResumeFlow`: VTable [0x00000000031E6AD0, 0x0000000000000120 offset, 3 functions] `.?AVSessionResumeFlow@bnet@@` -`class bnet::CallbackBind,class bnet::SessionResumeFlow>`: VTable [0x00000000031E6AF8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@VSessionResumeFlow@2@@bnet@@` -`class bnet::NewGameSessionFlow`: VTable [0x00000000031E6CC0, 0x0000000000000000 offset, 9 functions] `.?AVNewGameSessionFlow@bnet@@` -`class bnet::NewGameSessionFlow`: VTable [0x00000000031E6D20, 0x0000000000000018 offset, 1 functions] `.?AVNewGameSessionFlow@bnet@@` -`class bnet::NewGameSessionFlow`: VTable [0x00000000031E6D38, 0x0000000000000120 offset, 3 functions] `.?AVNewGameSessionFlow@bnet@@` -`class bnet::CallbackBind,class bnet::NewGameSessionFlow>`: VTable [0x00000000031E6D60, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VNewGameSessionFlow@2@@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031E72E8, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VMapping@Entitlements@bnet@@$00$00V?$StdAllocator@VMapping@Entitlements@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Entitlements::CombinedEntitlementsListRequest`: VTable [0x00000000031E7390, 0x0000000000000000 offset, 16 functions] `.?AVCombinedEntitlementsListRequest@Entitlements@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031E7820, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$vector@VItem@Entitlements@bnet@@V?$StdAllocator@VItem@Entitlements@bnet@@@_impl@3@@std@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Entitlements::ListRequest`: VTable [0x00000000031E78C8, 0x0000000000000000 offset, 16 functions] `.?AVListRequest@Entitlements@bnet@@` -`class bnet::HttpRequest >`: VTable [0x00000000031E7CE0, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@VConsumeResponse@Entitlements@bnet@@VHttpResponseInfo@3@@bnet@@@bnet@@` -`class bnet::Entitlements::ConsumeRequest`: VTable [0x00000000031E7D88, 0x0000000000000000 offset, 16 functions] `.?AVConsumeRequest@Entitlements@bnet@@` -`class bnet::Entitlements::SearchRequest`: VTable [0x00000000031E7EE8, 0x0000000000000000 offset, 16 functions] `.?AVSearchRequest@Entitlements@bnet@@` -`class bnet::VCCS::Fulfillment::UpdateFirstPartyEntitlementRequest`: VTable [0x00000000031E80A8, 0x0000000000000000 offset, 16 functions] `.?AVUpdateFirstPartyEntitlementRequest@Fulfillment@VCCS@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031E8908, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VDataAttachment@Profile@Gsp@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Gsp::Profile::DataAttachmentRequestBase`: VTable [0x00000000031E89B0, 0x0000000000000000 offset, 16 functions] `.?AVDataAttachmentRequestBase@Profile@Gsp@bnet@@` -`class bnet::Gsp::Profile::DataAttachmentCreateRequest`: VTable [0x00000000031E8A58, 0x0000000000000000 offset, 16 functions] `.?AVDataAttachmentCreateRequest@Profile@Gsp@bnet@@` -`class bnet::Gsp::Profile::DataAttachmentDeleteRequest`: VTable [0x00000000031E8B60, 0x0000000000000000 offset, 16 functions] `.?AVDataAttachmentDeleteRequest@Profile@Gsp@bnet@@` -`class bnet::Gsp::Profile::DataAttachmentGetRequest`: VTable [0x00000000031E8C68, 0x0000000000000000 offset, 16 functions] `.?AVDataAttachmentGetRequest@Profile@Gsp@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031E90A0, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VDataAttachmentListPage@Profile@Gsp@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Gsp::Profile::DataAttachmentListRequest`: VTable [0x00000000031E9148, 0x0000000000000000 offset, 16 functions] `.?AVDataAttachmentListRequest@Profile@Gsp@bnet@@` -`class bnet::Gsp::Profile::DataAttachmentUpdateRequest`: VTable [0x00000000031E9228, 0x0000000000000000 offset, 16 functions] `.?AVDataAttachmentUpdateRequest@Profile@Gsp@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031E9588, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VProfile@1Gsp@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Gsp::Profile::ProfileGetRequest`: VTable [0x00000000031E9630, 0x0000000000000000 offset, 16 functions] `.?AVProfileGetRequest@Profile@Gsp@bnet@@` -`class bnet::Gsp::Profile::ProfileUpdateRequest`: VTable [0x00000000031E9768, 0x0000000000000000 offset, 16 functions] `.?AVProfileUpdateRequest@Profile@Gsp@bnet@@` -`class bnet::EventLog::LogEventRequest`: VTable [0x00000000031E9960, 0x0000000000000000 offset, 16 functions] `.?AVLogEventRequest@EventLog@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F2CB8, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VBalance@Wallet@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::VCCS::Wallet::BalanceRequest`: VTable [0x00000000031F2D60, 0x0000000000000000 offset, 16 functions] `.?AVBalanceRequest@Wallet@VCCS@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F32E8, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VBalance@Wallet@VCCS@bnet@@$00$00V?$StdAllocator@VBalance@Wallet@VCCS@bnet@@@_impl@4@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::VCCS::Wallet::BalanceListRequest`: VTable [0x00000000031F3390, 0x0000000000000000 offset, 16 functions] `.?AVBalanceListRequest@Wallet@VCCS@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F3820, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VPurchaseResult@Wallet@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::VCCS::Wallet::PurchaseRequest`: VTable [0x00000000031F38C8, 0x0000000000000000 offset, 16 functions] `.?AVPurchaseRequest@Wallet@VCCS@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F3F38, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VPurchasePreviewResult@Wallet@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::VCCS::Wallet::PurchasePreviewRequest`: VTable [0x00000000031F3FE0, 0x0000000000000000 offset, 16 functions] `.?AVPurchasePreviewRequest@Wallet@VCCS@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F43D8, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VServerlessTransactionResult@Wallet@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::VCCS::Wallet::ServerlessCreditRequest`: VTable [0x00000000031F4480, 0x0000000000000000 offset, 16 functions] `.?AVServerlessCreditRequest@Wallet@VCCS@bnet@@` -`class bnet::VCCS::Wallet::ServerlessDebitRequest`: VTable [0x00000000031F4610, 0x0000000000000000 offset, 16 functions] `.?AVServerlessDebitRequest@Wallet@VCCS@bnet@@` -`class bnet::UgcMtxPurchaseFlow`: VTable [0x00000000031F4BF8, 0x0000000000000000 offset, 9 functions] `.?AVUgcMtxPurchaseFlow@bnet@@` -`class bnet::UgcMtxPurchaseFlow`: VTable [0x00000000031F4C58, 0x0000000000000018 offset, 1 functions] `.?AVUgcMtxPurchaseFlow@bnet@@` -`class bnet::UgcMtxPurchaseFlow`: VTable [0x00000000031F4C70, 0x0000000000000120 offset, 3 functions] `.?AVUgcMtxPurchaseFlow@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::UgcMtxPurchaseFlow>`: VTable [0x00000000031F4C98, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VPurchaseResult@Wallet@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VUgcMtxPurchaseFlow@2@@bnet@@` -`class bnet::CallbackBind,class bnet::UgcMtxPurchaseFlow>`: VTable [0x00000000031F4CE0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@VUgcMtxPurchaseFlow@2@@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F5318, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VGetContentsResult@Catalog@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::VCCS::Catalog::GetContentsRequest`: VTable [0x00000000031F53C0, 0x0000000000000000 offset, 16 functions] `.?AVGetContentsRequest@Catalog@VCCS@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F5960, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VItem@Catalog@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::VCCS::Catalog::GetItemRequest`: VTable [0x00000000031F5A08, 0x0000000000000000 offset, 16 functions] `.?AVGetItemRequest@Catalog@VCCS@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F6088, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VCatalogCategoryPathResponse@Catalog@VCCS@bnet@@$00$00V?$StdAllocator@VCatalogCategoryPathResponse@Catalog@VCCS@bnet@@@_impl@4@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::VCCS::Catalog::ListCategoryPathRequest`: VTable [0x00000000031F6130, 0x0000000000000000 offset, 16 functions] `.?AVListCategoryPathRequest@Catalog@VCCS@bnet@@` -`class bnet::VCCS::Catalog::ListCategoryPathChildrenRequest`: VTable [0x00000000031F62F8, 0x0000000000000000 offset, 16 functions] `.?AVListCategoryPathChildrenRequest@Catalog@VCCS@bnet@@` -`class bnet::HttpRequest >`: VTable [0x00000000031F67C0, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@VListItemsResult@Catalog@VCCS@bnet@@VHttpResponseInfo@4@@bnet@@@bnet@@` -`class bnet::VCCS::Catalog::ListItemsRequest`: VTable [0x00000000031F6868, 0x0000000000000000 offset, 16 functions] `.?AVListItemsRequest@Catalog@VCCS@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F6B98, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VBundlePreview@Catalog@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::VCCS::Catalog::GetBundlePreviewRequest`: VTable [0x00000000031F6C40, 0x0000000000000000 offset, 16 functions] `.?AVGetBundlePreviewRequest@Catalog@VCCS@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F6FA8, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VGetBundlePreviewListResult@Catalog@VCCS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::VCCS::Catalog::GetBundlePreviewListRequest`: VTable [0x00000000031F7050, 0x0000000000000000 offset, 16 functions] `.?AVGetBundlePreviewListRequest@Catalog@VCCS@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F7878, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::NetworkHelper::detail::BaseCustomHttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F7920, 0x0000000000000000 offset, 16 functions] `.?AV?$BaseCustomHttpRequest@V?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@detail@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::detail::JsonBody,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F79C8, 0x0000000000000000 offset, 16 functions] `.?AV?$JsonBody@V?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@detail@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::JsonResponseRequest`: VTable [0x00000000031F7A70, 0x0000000000000000 offset, 16 functions] `.?AVJsonResponseRequest@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::detail::BaseCustomHttpRequest >`: VTable [0x00000000031F7B18, 0x0000000000000000 offset, 16 functions] `.?AV?$BaseCustomHttpRequest@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@detail@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::detail::JsonBody >`: VTable [0x00000000031F7BC0, 0x0000000000000000 offset, 16 functions] `.?AV?$JsonBody@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@@detail@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::EmptyResponseRequest`: VTable [0x00000000031F7C68, 0x0000000000000000 offset, 16 functions] `.?AVEmptyResponseRequest@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::detail::RawHttpRequest >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F7D10, 0x0000000000000000 offset, 16 functions] `.?AV?$RawHttpRequest@V?$Callback@V?$vector@EV?$StdAllocator@E@_impl@bnet@@@std@@VHttpResponseInfo@bnet@@@bnet@@@detail@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::RawToRawHttpRequest`: VTable [0x00000000031F7DB8, 0x0000000000000000 offset, 16 functions] `.?AVRawToRawHttpRequest@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::detail::RawHttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F7E60, 0x0000000000000000 offset, 16 functions] `.?AV?$RawHttpRequest@V?$Callback@V?$UniquePtr@VValue@CustomData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@detail@NetworkHelper@bnet@@` -`class bnet::NetworkHelper::RawToJsonHttpRequest`: VTable [0x00000000031F7F08, 0x0000000000000000 offset, 16 functions] `.?AVRawToJsonHttpRequest@NetworkHelper@bnet@@` -`class bnet::FileUploader`: VTable [0x00000000031F8260, 0x0000000000000000 offset, 11 functions] `.?AVFileUploader@bnet@@` -`class bnet::FileUploader`: VTable [0x00000000031F82D8, 0x0000000000000018 offset, 1 functions] `.?AVFileUploader@bnet@@` -`class bnet::FileUploader`: VTable [0x00000000031F82F0, 0x0000000000000120 offset, 3 functions] `.?AVFileUploader@bnet@@` -`class bnet::FileUploader`: VTable [0x00000000031F8318, 0x0000000000000148 offset, 2 functions] `.?AVFileUploader@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F87F8, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VMessage@CMS@bnet@@$04$00V?$StdAllocator@VMessage@CMS@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::CMS::ListMessagesRequest`: VTable [0x00000000031F88A0, 0x0000000000000000 offset, 16 functions] `.?AVListMessagesRequest@CMS@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F8DB8, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VMultiMessage@CMS@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::CMS::GetMultiMessageRequest`: VTable [0x00000000031F8E60, 0x0000000000000000 offset, 16 functions] `.?AVGetMultiMessageRequest@CMS@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031F9280, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VExtServerStatusResult@Status@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Status::GetExtServerStatusRequest`: VTable [0x00000000031F9328, 0x0000000000000000 offset, 16 functions] `.?AVGetExtServerStatusRequest@Status@bnet@@` -`class bnet::Status::GetStatusRequest`: VTable [0x00000000031F94E8, 0x0000000000000000 offset, 16 functions] `.?AVGetStatusRequest@Status@bnet@@` -`class bnet::UgcCancelUploadRequest`: VTable [0x00000000031F96A8, 0x0000000000000000 offset, 16 functions] `.?AVUgcCancelUploadRequest@bnet@@` -`class bnet::UgcChunkedUploadCompletionRequest`: VTable [0x00000000031F9810, 0x0000000000000000 offset, 16 functions] `.?AVUgcChunkedUploadCompletionRequest@bnet@@` -`class bnet::HttpRequest >`: VTable [0x00000000031F9B28, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@_KVHttpResponseInfo@bnet@@@bnet@@@bnet@@` -`class bnet::UgcChunkedUploadInitiationRequest`: VTable [0x00000000031F9BD0, 0x0000000000000000 offset, 16 functions] `.?AVUgcChunkedUploadInitiationRequest@bnet@@` -`class bnet::UgcChunkUploadRequest`: VTable [0x00000000031F9DF0, 0x0000000000000000 offset, 16 functions] `.?AVUgcChunkUploadRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031FA490, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VCdpFileInfoResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::CdpFileInfoRequest`: VTable [0x00000000031FA538, 0x0000000000000000 offset, 16 functions] `.?AVCdpFileInfoRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000031FABB8, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VCdpKeyResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::CdpKeyRequest`: VTable [0x00000000031FAC60, 0x0000000000000000 offset, 16 functions] `.?AVCdpKeyRequest@bnet@@` -`class bnet::Parallel`: VTable [0x00000000031FAFC0, 0x0000000000000000 offset, 9 functions] `.?AV?$Parallel@UNonThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@` -`class bnet::Parallel`: VTable [0x00000000031FB020, 0x0000000000000018 offset, 1 functions] `.?AV?$Parallel@UNonThreadSafe@ta@bnet@@UErrorPropagation@23@@bnet@@` -`class bnet::BaseFileDownloader`: VTable [0x00000000031FB038, 0x0000000000000000 offset, 11 functions] `.?AVBaseFileDownloader@bnet@@` -`class bnet::BaseFileDownloader`: VTable [0x00000000031FB0B0, 0x0000000000000018 offset, 1 functions] `.?AVBaseFileDownloader@bnet@@` -`class bnet::BaseFileDownloader`: VTable [0x00000000031FB0C8, 0x0000000000000120 offset, 3 functions] `.?AVBaseFileDownloader@bnet@@` -`class bnet::BaseFileDownloader`: VTable [0x00000000031FB0F0, 0x0000000000000148 offset, 2 functions] `.?AVBaseFileDownloader@bnet@@` -`class bnet::HttpTransport`: VTable [0x00000000031FD248, 0x0000000000000000 offset, 6 functions] `.?AVHttpTransport@bnet@@` -`class bnet::HttpTransport`: VTable [0x00000000031FD290, 0x0000000000000018 offset, 3 functions] `.?AVHttpTransport@bnet@@` -`class bnet::WinHttpTransport`: VTable [0x00000000031FD2B8, 0x0000000000000000 offset, 6 functions] `.?AVWinHttpTransport@bnet@@` -`class bnet::WinHttpTransport`: VTable [0x00000000031FD300, 0x0000000000000018 offset, 3 functions] `.?AVWinHttpTransport@bnet@@` -`class bnet::HttpRequest >`: VTable [0x00000000031FE128, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@VSessionAuthResult@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::SessionRefreshRequest`: VTable [0x00000000031FE1D0, 0x0000000000000000 offset, 16 functions] `.?AVSessionRefreshRequest@bnet@@` -`class bnet::SessionResumeRequest`: VTable [0x00000000031FE2D0, 0x0000000000000000 offset, 16 functions] `.?AVSessionResumeRequest@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::LegalDocument>`: VTable [0x00000000031FE6F0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VFileChunk@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VLegalDocument@2@@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x00000000031FEA58, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@VLegalDocument@bnet@@$04$00V?$StdAllocator@VLegalDocument@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::ListRequiredLegalDocumentsRequest`: VTable [0x00000000031FEB00, 0x0000000000000000 offset, 16 functions] `.?AVListRequiredLegalDocumentsRequest@bnet@@` -`class bnet::SessionLogoutRequest`: VTable [0x00000000031FEC50, 0x0000000000000000 offset, 16 functions] `.?AVSessionLogoutRequest@bnet@@` -`class bnet::NotificationLogoutRequest`: VTable [0x00000000031FEDB8, 0x0000000000000000 offset, 6 functions] `.?AVNotificationLogoutRequest@bnet@@` -`class bnet::NotificationLogoutRequest`: VTable [0x00000000031FEE00, 0x0000000000000018 offset, 3 functions] `.?AVNotificationLogoutRequest@bnet@@` -`class std::_Ref_count_obj_alloc >`: VTable [0x00000000031FF118, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj_alloc@VEventData@Notification@bnet@@V?$StdAllocator@X@_impl@3@@std@@` -`class std::_Ref_count_resource_alloc,class bnet::_impl::StdAllocator >`: VTable [0x00000000031FF148, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_resource_alloc@$$TU?$MemoryDeleter@VEventData@Notification@bnet@@@_impl@bnet@@V?$StdAllocator@X@23@@std@@` -`class bnet::Callback`: VTable [0x00000000031FFA90, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@VWebSocketReadResult@bnet@@VWebSocketStatus@2@@bnet@@` -`class bnet::Notification::`anonymous namespace'::OnReadFrame`: VTable [0x00000000031FFAD8, 0x0000000000000000 offset, 6 functions] `.?AVOnReadFrame@?A0xdc787919@Notification@bnet@@` -`class bnet::Notification::Context::OnSystemFetched`: VTable [0x00000000032000B8, 0x0000000000000000 offset, 6 functions] `.?AVOnSystemFetched@Context@Notification@bnet@@` -`class bnet::Notification::ReceiveJob`: VTable [0x00000000032003B8, 0x0000000000000000 offset, 6 functions] `.?AVReceiveJob@Notification@bnet@@` -`class bnet::Notification::ReceiveJob`: VTable [0x0000000003200400, 0x0000000000000018 offset, 3 functions] `.?AVReceiveJob@Notification@bnet@@` -`class bnet::CallbackBind,class bnet::Notification::ReceiveJob>`: VTable [0x0000000003200438, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VFrame@Notification@bnet@@VWebSocketStatus@3@@bnet@@VReceiveJob@Notification@2@@bnet@@` -`class bnet::Notification::FilterJob`: VTable [0x00000000032005A0, 0x0000000000000000 offset, 9 functions] `.?AVFilterJob@Notification@bnet@@` -`class bnet::Notification::FilterJob`: VTable [0x0000000003200600, 0x0000000000000018 offset, 1 functions] `.?AVFilterJob@Notification@bnet@@` -`class bnet::Notification::FilterJob`: VTable [0x0000000003200618, 0x0000000000000178 offset, 3 functions] `.?AVFilterJob@Notification@bnet@@` -`class bnet::Callback >,class bnet::HttpResponseInfo>`: VTable [0x00000000032015B8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$FixedString@$0CI@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@VHttpResponseInfo@3@@bnet@@` -`class bnet::Callback`: VTable [0x0000000003201600, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@VAccessToken@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::AuthenticationFlow`: VTable [0x0000000003201648, 0x0000000000000000 offset, 9 functions] `.?AVAuthenticationFlow@bnet@@` -`class bnet::AuthenticationFlow`: VTable [0x00000000032016A8, 0x0000000000000018 offset, 1 functions] `.?AVAuthenticationFlow@bnet@@` -`class bnet::AuthenticationFlow`: VTable [0x00000000032016C0, 0x0000000000000120 offset, 3 functions] `.?AVAuthenticationFlow@bnet@@` -`class bnet::CallbackBind,class bnet::AuthenticationFlow>`: VTable [0x00000000032016E8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@VAccessToken@bnet@@VHttpResponseInfo@2@@bnet@@VAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class bnet::AuthenticationFlow>`: VTable [0x0000000003201730, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@VLegalDocument@bnet@@$04$00V?$StdAllocator@VLegalDocument@bnet@@@_impl@2@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind >,class bnet::HttpResponseInfo>,class bnet::AuthenticationFlow>`: VTable [0x0000000003201778, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$FixedString@$0CI@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@VHttpResponseInfo@3@@bnet@@VAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000032017C0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackBind,class bnet::AuthenticationFlow>`: VTable [0x0000000003201808, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@VAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackBind > >,class bnet::HttpResponseInfo>,class bnet::AuthenticationFlow>`: VTable [0x0000000003201850, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@V?$FixedVector@USystemModel@Notification@bnet@@$07$00V?$StdAllocator@USystemModel@Notification@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VAuthenticationFlow@2@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x0000000003201898, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VHttpResponseInfo@bnet@@@bnet@@V@@@bnet@@` -`class bnet::Callback,class bnet::HttpResponseInfo>`: VTable [0x00000000032018E0, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$UniquePtr@VCdpAuthenticationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@` -`class bnet::CallbackBind,class bnet::HttpResponseInfo>,class bnet::AuthenticationFlow>`: VTable [0x0000000003201928, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$UniquePtr@VCdpAuthenticationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@VAuthenticationFlow@2@@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x0000000003201C80, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VBeamUserData@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::BeamQuickCreationRequest`: VTable [0x0000000003201D28, 0x0000000000000000 offset, 16 functions] `.?AVBeamQuickCreationRequest@bnet@@` -`class bnet::AnonymousAuthRequest`: VTable [0x0000000003201E78, 0x0000000000000000 offset, 16 functions] `.?AVAnonymousAuthRequest@bnet@@` -`class bnet::SessionAnonymousAccountCreateRequest`: VTable [0x0000000003201F90, 0x0000000000000000 offset, 16 functions] `.?AVSessionAnonymousAccountCreateRequest@bnet@@` -`class bnet::SessionQuickCreateRequest`: VTable [0x0000000003202088, 0x0000000000000000 offset, 16 functions] `.?AVSessionQuickCreateRequest@bnet@@` -`class bnet::SessionAuthRequest`: VTable [0x0000000003202168, 0x0000000000000000 offset, 16 functions] `.?AVSessionAuthRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x0000000003202328, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VBeamAuthResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::BeamUserCredentialsAuthenticationRequest`: VTable [0x00000000032023D0, 0x0000000000000000 offset, 16 functions] `.?AVBeamUserCredentialsAuthenticationRequest@bnet@@` -`class bnet::BeamExternalAuthenticationRequest`: VTable [0x00000000032024C8, 0x0000000000000000 offset, 16 functions] `.?AVBeamExternalAuthenticationRequest@bnet@@` -`class bnet::SessionExternalAuthRequest`: VTable [0x00000000032025C0, 0x0000000000000000 offset, 16 functions] `.?AVSessionExternalAuthRequest@bnet@@` -`class bnet::Session::GameCodeAuthRequest`: VTable [0x00000000032026B0, 0x0000000000000000 offset, 16 functions] `.?AVGameCodeAuthRequest@Session@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x0000000003202A58, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VUpgradeTokenResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::TokenUpgradeRequest`: VTable [0x0000000003202B00, 0x0000000000000000 offset, 16 functions] `.?AVTokenUpgradeRequest@bnet@@` -`class bnet::AccountUnlinkingRequest`: VTable [0x0000000003202E58, 0x0000000000000000 offset, 16 functions] `.?AVAccountUnlinkingRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x0000000003203988, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VExternalAccountInfo@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::RetrieveExternalAccountRequest`: VTable [0x0000000003203A30, 0x0000000000000000 offset, 16 functions] `.?AVRetrieveExternalAccountRequest@bnet@@` -`class bnet::GameAccountLinkRequest`: VTable [0x0000000003203B48, 0x0000000000000000 offset, 16 functions] `.?AVGameAccountLinkRequest@bnet@@` -`class bnet::GameAccountLinkConflictResolveRequest`: VTable [0x0000000003203C60, 0x0000000000000000 offset, 16 functions] `.?AVGameAccountLinkConflictResolveRequest@bnet@@` -`class bnet::GameAccountExternalLinkConflictResolveRequest`: VTable [0x0000000003203D98, 0x0000000000000000 offset, 16 functions] `.?AVGameAccountExternalLinkConflictResolveRequest@bnet@@` -`class bnet::GameAccountAuthenticationRequest`: VTable [0x0000000003203E88, 0x0000000000000000 offset, 16 functions] `.?AVGameAccountAuthenticationRequest@bnet@@` -`class bnet::GameAccountExternalAuthRequest`: VTable [0x0000000003203F88, 0x0000000000000000 offset, 16 functions] `.?AVGameAccountExternalAuthRequest@bnet@@` -`class bnet::GameAccountExternalLinkRequest`: VTable [0x0000000003204088, 0x0000000000000000 offset, 16 functions] `.?AVGameAccountExternalLinkRequest@bnet@@` -`class bnet::Session::GameAccountGameCodeAuthRequest`: VTable [0x0000000003204188, 0x0000000000000000 offset, 16 functions] `.?AVGameAccountGameCodeAuthRequest@Session@bnet@@` -`class bnet::CustomData::ElementalValue<2>`: VTable [0x00000000032070C0, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$01@CustomData@bnet@@` -`class bnet::CustomData::ElementalValue<4>`: VTable [0x0000000003207108, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$03@CustomData@bnet@@` -`class bnet::CustomData::ElementalValue<6>`: VTable [0x0000000003207150, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$05@CustomData@bnet@@` -`class bnet::CustomData::ElementalValue<7>`: VTable [0x0000000003207198, 0x0000000000000000 offset, 6 functions] `.?AV?$ElementalValue@$06@CustomData@bnet@@` -`class bnet::IUploader`: VTable [0x0000000003207460, 0x0000000000000000 offset, 2 functions] `.?AVIUploader@bnet@@` -`class bnet::BaseFileUploader`: VTable [0x0000000003207480, 0x0000000000000000 offset, 11 functions] `.?AVBaseFileUploader@bnet@@` -`class bnet::BaseFileUploader`: VTable [0x00000000032074F8, 0x0000000000000018 offset, 1 functions] `.?AVBaseFileUploader@bnet@@` -`class bnet::BaseFileUploader`: VTable [0x0000000003207510, 0x0000000000000120 offset, 3 functions] `.?AVBaseFileUploader@bnet@@` -`class bnet::BaseFileUploader`: VTable [0x0000000003207538, 0x0000000000000148 offset, 2 functions] `.?AVBaseFileUploader@bnet@@` -`class bnet::Presence::AppearDoNotDisturbRequest`: VTable [0x000000000320E450, 0x0000000000000000 offset, 16 functions] `.?AVAppearDoNotDisturbRequest@Presence@bnet@@` -`class bnet::Presence::AppearOfflineRequest`: VTable [0x000000000320E5C0, 0x0000000000000000 offset, 16 functions] `.?AVAppearOfflineRequest@Presence@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x000000000320E9E8, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VAggregatedStatuses@Presence@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Presence::GetRequest`: VTable [0x000000000320EA90, 0x0000000000000000 offset, 16 functions] `.?AVGetRequest@Presence@bnet@@` -`class bnet::Presence::UpdateRequest`: VTable [0x000000000320EC50, 0x0000000000000000 offset, 16 functions] `.?AVUpdateRequest@Presence@bnet@@` -`class bnet::HttpRequest > >,class bnet::HttpResponseInfo> >`: VTable [0x000000000320F0C0, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@V?$FixedVector@USystemModel@Notification@bnet@@$07$00V?$StdAllocator@USystemModel@Notification@bnet@@@_impl@3@@_impl@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::Notification::ListSystemRequest`: VTable [0x000000000320F168, 0x0000000000000000 offset, 16 functions] `.?AVListSystemRequest@Notification@bnet@@` -`class bnet::SessionTokenRequest`: VTable [0x000000000320F3D0, 0x0000000000000000 offset, 16 functions] `.?AVSessionTokenRequest@bnet@@` -`class bnet::_impl::FixedPool<163840,3>`: VTable [0x000000000320F518, 0x0000000000000000 offset, 4 functions] `.?AV?$FixedPool@$0CIAAA@$02@_impl@bnet@@` -`class bnet::SharedSRWMutex`: VTable [0x0000000003211880, 0x0000000000000000 offset, 1 functions] `.?AVSharedSRWMutex@bnet@@` -`class bnet::ISocket`: VTable [0x0000000003211898, 0x0000000000000000 offset, 10 functions] `.?AVISocket@bnet@@` -`class bnet::CSocket`: VTable [0x0000000003211908, 0x0000000000000000 offset, 10 functions] `.?AVCSocket@bnet@@` -`class bnet::CSecureSocket`: VTable [0x0000000003211978, 0x0000000000000000 offset, 10 functions] `.?AVCSecureSocket@bnet@@` -`class bnet::Callback`: VTable [0x0000000003211AB8, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@` -`class bnet::Callback,class bnet::SocketStatus>`: VTable [0x0000000003211B00, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@V?$ArrayView@E@bnet@@VSocketStatus@2@@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::InitJob::SocketInitJob`: VTable [0x0000000003211B48, 0x0000000000000000 offset, 6 functions] `.?AVSocketInitJob@InitJob@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::InitJob::SendHandshakeJob`: VTable [0x0000000003211B90, 0x0000000000000000 offset, 6 functions] `.?AVSendHandshakeJob@InitJob@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::InitJob::ReceiveHandshakeJob`: VTable [0x0000000003211BD8, 0x0000000000000000 offset, 6 functions] `.?AVReceiveHandshakeJob@InitJob@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::InitJob`: VTable [0x0000000003211C20, 0x0000000000000000 offset, 9 functions] `.?AVInitJob@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::InitJob`: VTable [0x0000000003211C80, 0x0000000000000018 offset, 1 functions] `.?AVInitJob@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::InitJob`: VTable [0x0000000003211C98, 0x0000000000000120 offset, 3 functions] `.?AVInitJob@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::IWriteJobSequence`: VTable [0x0000000003211CC0, 0x0000000000000000 offset, 2 functions] `.?AVIWriteJobSequence@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::_impl::Observable`: VTable [0x0000000003211CE0, 0x0000000000000000 offset, 2 functions] `.?AV?$Observable@VIWriteJobSequence@WebSocketJob@WebSocketUtils@bnet@@Uvoid_t@bnet_std@@@_impl@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::WriteJobSequence::WriteJob`: VTable [0x0000000003211D00, 0x0000000000000000 offset, 6 functions] `.?AVWriteJob@WriteJobSequence@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::WriteJobSequence::WriteJob`: VTable [0x0000000003211D48, 0x0000000000000018 offset, 3 functions] `.?AVWriteJob@WriteJobSequence@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::WriteJobSequence`: VTable [0x0000000003211D70, 0x0000000000000000 offset, 9 functions] `.?AVWriteJobSequence@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::WriteJobSequence`: VTable [0x0000000003211DD0, 0x0000000000000018 offset, 1 functions] `.?AVWriteJobSequence@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::WriteJobSequence`: VTable [0x0000000003211DE8, 0x0000000000000178 offset, 2 functions] `.?AVWriteJobSequence@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::ReadJob`: VTable [0x0000000003211E08, 0x0000000000000000 offset, 6 functions] `.?AVReadJob@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob::ReadJob`: VTable [0x0000000003211E50, 0x0000000000000018 offset, 3 functions] `.?AVReadJob@WebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob`: VTable [0x0000000003211E78, 0x0000000000000000 offset, 9 functions] `.?AVWebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob`: VTable [0x0000000003211ED8, 0x0000000000000018 offset, 1 functions] `.?AVWebSocketJob@WebSocketUtils@bnet@@` -`class bnet::WebSocketUtils::WebSocketJob`: VTable [0x0000000003211EF0, 0x0000000000000178 offset, 3 functions] `.?AVWebSocketJob@WebSocketUtils@bnet@@` -`class bnet::CallbackBind,class bnet::WebSocketUtils::WebSocketJob>`: VTable [0x0000000003211F18, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VWebSocketJob@WebSocketUtils@2@@bnet@@` -`class bnet::CallbackBind,class bnet::WebSocketUtils::WebSocketJob>`: VTable [0x0000000003211F60, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@VWebSocketJob@WebSocketUtils@2@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x0000000003211FA8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000032120F0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x0000000003212180, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackBind,class bnet::WebSocketUtils::WebSocketJob::InitJob>`: VTable [0x0000000003212220, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VInitJob@WebSocketJob@WebSocketUtils@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SocketStatus>,class bnet::WebSocketUtils::WebSocketJob::InitJob>`: VTable [0x00000000032122C8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$ArrayView@E@bnet@@VSocketStatus@2@@bnet@@VInitJob@WebSocketJob@WebSocketUtils@2@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x00000000032124D0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackBind,class bnet::SocketStatus>,class bnet::WebSocketUtils::WebSocketJob::ReadJob>`: VTable [0x00000000032128B0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$ArrayView@E@bnet@@VSocketStatus@2@@bnet@@VReadJob@WebSocketJob@WebSocketUtils@2@@bnet@@` -`class bnet::CallbackBind,class bnet::WebSocketUtils::Impl>`: VTable [0x00000000032129E8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@VImpl@WebSocketUtils@2@@bnet@@` -`class bnet::Evaluator::IEvaluator`: VTable [0x0000000003212A60, 0x0000000000000000 offset, 3 functions] `.?AVIEvaluator@?$Evaluator@$$A6A_N_K@Z@bnet@@` -`class std::_Ref_count_obj_alloc >`: VTable [0x0000000003212A88, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj_alloc@VCSecureSocket@bnet@@V?$StdAllocator@X@_impl@2@@std@@` -`class std::_Ref_count_obj_alloc >`: VTable [0x0000000003212AB8, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj_alloc@VCSocket@bnet@@V?$StdAllocator@X@_impl@2@@std@@` -`class bnet::Evaluator::EvaluateBind >`: VTable [0x0000000003212AE8, 0x0000000000000000 offset, 3 functions] `.?AV?$EvaluateBind@V@@@?$Evaluator@$$A6A_N_K@Z@bnet@@` -`class bnet::Evaluator::EvaluateBind >`: VTable [0x0000000003212B10, 0x0000000000000000 offset, 3 functions] `.?AV?$EvaluateBind@V@@@?$Evaluator@$$A6A_N_K@Z@bnet@@` -`class bnet::Evaluator::EvaluateBind >`: VTable [0x0000000003212B38, 0x0000000000000000 offset, 3 functions] `.?AV?$EvaluateBind@V@@@?$Evaluator@$$A6A_N_K@Z@bnet@@` -`class std::_Ref_count_resource_alloc,class bnet::_impl::StdAllocator >`: VTable [0x0000000003212B60, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_resource_alloc@PEAVISocket@bnet@@U?$default_delete@VISocket@bnet@@@std@@V?$StdAllocator@X@_impl@2@@std@@` -`class bnet::Notification::ChangeFilterRequest`: VTable [0x0000000003212D70, 0x0000000000000000 offset, 6 functions] `.?AVChangeFilterRequest@Notification@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x0000000003212DB8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VWebSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::NotificationConnectRequest`: VTable [0x0000000003212E90, 0x0000000000000000 offset, 6 functions] `.?AVNotificationConnectRequest@bnet@@` -`class bnet::NotificationConnectRequest`: VTable [0x0000000003212ED8, 0x0000000000000018 offset, 3 functions] `.?AVNotificationConnectRequest@bnet@@` -`class bnet::HttpRequest >`: VTable [0x0000000003213168, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@VAccessToken@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::SessionAccessTokenRequest`: VTable [0x0000000003213210, 0x0000000000000000 offset, 16 functions] `.?AVSessionAccessTokenRequest@bnet@@` -`class bnet::HttpRequest,class bnet::HttpResponseInfo> >`: VTable [0x00000000032135F0, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$UniquePtr@VCdpAuthenticationResult@bnet@@@bnet@@VHttpResponseInfo@2@@bnet@@@bnet@@` -`class bnet::CdpAuthenticationRequest`: VTable [0x0000000003213698, 0x0000000000000000 offset, 16 functions] `.?AVCdpAuthenticationRequest@bnet@@` -`class std::_Ref_count_obj_alloc >`: VTable [0x0000000003213880, 0x0000000000000000 offset, 4 functions] `.?AV?$_Ref_count_obj_alloc@VInternalUser@bnet@@V?$StdAllocatorNoConstruct@X@_impl@2@@std@@` -`class bnet::HttpRequest >,class bnet::HttpResponseInfo> >`: VTable [0x0000000003213B08, 0x0000000000000000 offset, 16 functions] `.?AV?$HttpRequest@V?$Callback@V?$FixedString@$0CI@$00$00V?$StdAllocator@D@_impl@bnet@@@_impl@bnet@@VHttpResponseInfo@3@@bnet@@@bnet@@` -`class bnet::SessionResumeTokenRequest`: VTable [0x0000000003213BB0, 0x0000000000000000 offset, 16 functions] `.?AVSessionResumeTokenRequest@bnet@@` -`class bnet::BeamAuthenticationRequest`: VTable [0x0000000003213DA8, 0x0000000000000000 offset, 16 functions] `.?AVBeamAuthenticationRequest@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob::InitializeJob`: VTable [0x0000000003215370, 0x0000000000000000 offset, 6 functions] `.?AVInitializeJob@SocketJob@WinSocket@?A0x25bfa441@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob::InitializeJob`: VTable [0x00000000032153B8, 0x0000000000000018 offset, 3 functions] `.?AVInitializeJob@SocketJob@WinSocket@?A0x25bfa441@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob::ReceiveJob`: VTable [0x00000000032153E0, 0x0000000000000000 offset, 6 functions] `.?AVReceiveJob@SocketJob@WinSocket@?A0x25bfa441@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob::ReceiveJob`: VTable [0x0000000003215428, 0x0000000000000018 offset, 3 functions] `.?AVReceiveJob@SocketJob@WinSocket@?A0x25bfa441@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob::WriteJob`: VTable [0x0000000003215450, 0x0000000000000000 offset, 6 functions] `.?AVWriteJob@SocketJob@WinSocket@?A0x25bfa441@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob::WriteJob`: VTable [0x0000000003215498, 0x0000000000000018 offset, 3 functions] `.?AVWriteJob@SocketJob@WinSocket@?A0x25bfa441@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob`: VTable [0x00000000032154C0, 0x0000000000000000 offset, 9 functions] `.?AVSocketJob@WinSocket@?A0x25bfa441@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob`: VTable [0x0000000003215520, 0x0000000000000018 offset, 1 functions] `.?AVSocketJob@WinSocket@?A0x25bfa441@bnet@@` -`class bnet::`anonymous namespace'::WinSocket::SocketJob`: VTable [0x0000000003215538, 0x0000000000000178 offset, 3 functions] `.?AVSocketJob@WinSocket@?A0x25bfa441@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x0000000003215560, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::BaseCallbackJob,struct bnet::ta::ThreadSafe>`: VTable [0x0000000003217000, 0x0000000000000000 offset, 7 functions] `.?AV?$BaseCallbackJob@VJob@bnet@@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@2@UThreadSafe@ta@2@@bnet@@` -`class bnet::CallbackJob,struct bnet::ta::ThreadSafe>`: VTable [0x0000000003217050, 0x0000000000000000 offset, 7 functions] `.?AV?$CallbackJob@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@UThreadSafe@ta@2@@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::HandshakeJob`: VTable [0x00000000032170A0, 0x0000000000000000 offset, 7 functions] `.?AVHandshakeJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::HandshakeJob`: VTable [0x00000000032170F0, 0x0000000000000040 offset, 3 functions] `.?AVHandshakeJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::InitializeJob`: VTable [0x0000000003217118, 0x0000000000000000 offset, 9 functions] `.?AVInitializeJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::InitializeJob`: VTable [0x0000000003217178, 0x0000000000000018 offset, 1 functions] `.?AVInitializeJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::InitializeJob`: VTable [0x0000000003217190, 0x0000000000000120 offset, 3 functions] `.?AVInitializeJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::WriteJob`: VTable [0x00000000032171B8, 0x0000000000000000 offset, 6 functions] `.?AVWriteJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::WriteJob`: VTable [0x0000000003217200, 0x0000000000000018 offset, 3 functions] `.?AVWriteJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob::DecodeJob`: VTable [0x0000000003217228, 0x0000000000000000 offset, 6 functions] `.?AVDecodeJob@ReceiveJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob::DecodeJob`: VTable [0x0000000003217270, 0x0000000000000018 offset, 3 functions] `.?AVDecodeJob@ReceiveJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::Callback,class bnet::SocketStatus>`: VTable [0x0000000003217298, 0x0000000000000000 offset, 6 functions] `.?AV?$Callback@U?$SecBufferList@$03@?A0x457c3f56@bnet@@VSocketStatus@3@@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob`: VTable [0x00000000032172E0, 0x0000000000000000 offset, 9 functions] `.?AVReceiveJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob`: VTable [0x0000000003217340, 0x0000000000000018 offset, 1 functions] `.?AVReceiveJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob`: VTable [0x0000000003217358, 0x0000000000000120 offset, 3 functions] `.?AVReceiveJob@SecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob`: VTable [0x0000000003217380, 0x0000000000000000 offset, 9 functions] `.?AVSecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob`: VTable [0x00000000032173E0, 0x0000000000000018 offset, 1 functions] `.?AVSecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::SecureSocket::pImpl::SecureSocketJob`: VTable [0x00000000032173F8, 0x0000000000000178 offset, 3 functions] `.?AVSecureSocketJob@pImpl@SecureSocket@bnet@@` -`class bnet::CallbackBind,class bnet::SecureSocket::pImpl::SecureSocketJob>`: VTable [0x0000000003217420, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VSecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackWrapper,class >`: VTable [0x0000000003217488, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackWrapper@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@V@@@bnet@@` -`class bnet::CallbackBind,class bnet::SecureSocket::pImpl::SecureSocketJob::HandshakeJob>`: VTable [0x00000000032174D0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VHandshakeJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SocketStatus>,class bnet::SecureSocket::pImpl::SecureSocketJob::HandshakeJob>`: VTable [0x00000000032175F0, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$ArrayView@E@bnet@@VSocketStatus@2@@bnet@@VHandshakeJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SecureSocket::pImpl::SecureSocketJob::InitializeJob>`: VTable [0x00000000032176E8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VInitializeJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SecureSocket::pImpl::SecureSocketJob::WriteJob>`: VTable [0x0000000003217778, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VWriteJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SocketStatus>,class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob::DecodeJob>`: VTable [0x0000000003217828, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@V?$ArrayView@E@bnet@@VSocketStatus@2@@bnet@@VDecodeJob@ReceiveJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SocketStatus>,class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob>`: VTable [0x00000000032178A8, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@U?$SecBufferList@$03@?A0x457c3f56@bnet@@VSocketStatus@3@@bnet@@VReceiveJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::CallbackBind,class bnet::SecureSocket::pImpl::SecureSocketJob::ReceiveJob>`: VTable [0x0000000003217918, 0x0000000000000000 offset, 6 functions] `.?AV?$CallbackBind@V?$Callback@Uvoid_t@bnet_std@@VSocketStatus@bnet@@@bnet@@VReceiveJob@SecureSocketJob@pImpl@SecureSocket@2@@bnet@@` -`class bnet::Evaluator::EvaluateBind >`: VTable [0x0000000003217988, 0x0000000000000000 offset, 3 functions] `.?AV?$EvaluateBind@V@@@?$Evaluator@$$A6A_N_K@Z@bnet@@` -`struct BSScript::IVMObjectBindInterface`: VTable [0x0000000003218778, 0x0000000000000000 offset, 11 functions] `.?AUIVMObjectBindInterface@BSScript@@` -`class BSScript::IFunctionArguments`: VTable [0x0000000003218A50, 0x0000000000000000 offset, 2 functions] `.?AVIFunctionArguments@BSScript@@` -`class BSScript::IForEachScriptObjectFunctor`: VTable [0x0000000003218A70, 0x0000000000000000 offset, 2 functions] `.?AVIForEachScriptObjectFunctor@BSScript@@` -`class BSScript::IVMSaveLoadInterface`: VTable [0x0000000003218A90, 0x0000000000000000 offset, 23 functions] `.?AVIVMSaveLoadInterface@BSScript@@` -`class BSScript::IVMDebugInterface`: VTable [0x0000000003218B78, 0x0000000000000000 offset, 2 functions] `.?AVIVMDebugInterface@BSScript@@` -`class BSScript::IVirtualMachine`: VTable [0x0000000003218B98, 0x0000000000000000 offset, 54 functions] `.?AVIVirtualMachine@BSScript@@` -`class BSScript::ErrorLogger`: VTable [0x000000000321B070, 0x0000000000000000 offset, 3 functions] `.?AVErrorLogger@BSScript@@` -`struct BSScript::IMemoryPagePolicy`: VTable [0x000000000321B388, 0x0000000000000000 offset, 5 functions] `.?AUIMemoryPagePolicy@BSScript@@` -`class BSScript::SimpleAllocMemoryPagePolicy`: VTable [0x000000000321B3C8, 0x0000000000000000 offset, 5 functions] `.?AVSimpleAllocMemoryPagePolicy@BSScript@@` -`class BSScript::CompiledScriptLoader`: VTable [0x000000000321BB88, 0x0000000000000000 offset, 4 functions] `.?AVCompiledScriptLoader@BSScript@@` -`class BSScript::Internal::IFuncCallQuery`: VTable [0x000000000321FE28, 0x0000000000000000 offset, 2 functions] `.?AVIFuncCallQuery@Internal@BSScript@@` -`class BSScript::Internal::RawFuncCallQuery`: VTable [0x000000000321FE48, 0x0000000000000000 offset, 2 functions] `.?AVRawFuncCallQuery@Internal@BSScript@@` -`class BSScript::IObjectProcessor`: VTable [0x000000000321FF88, 0x0000000000000000 offset, 4 functions] `.?AVIObjectProcessor@BSScript@@` -`class BSTFreeList`: VTable [0x000000000321FFB8, 0x0000000000000000 offset, 1 functions] `.?AV?$BSTFreeList@UFunctionMessage@Internal@BSScript@@@@` -`class BSTStaticFreeList`: VTable [0x000000000321FFD0, 0x0000000000000000 offset, 1 functions] `.?AV?$BSTStaticFreeList@UFunctionMessage@Internal@BSScript@@$0EAA@@@` -`class BSTMessageQueue`: VTable [0x000000000321FFE8, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@UFunctionMessage@Internal@BSScript@@@@` -`class BSTCommonMessageQueue`: VTable [0x0000000003220028, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@UFunctionMessage@Internal@BSScript@@@@` -`class BSTCommonLLMessageQueue`: VTable [0x0000000003220078, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonLLMessageQueue@UFunctionMessage@Internal@BSScript@@@@` -`class BSTMessageQueue`: VTable [0x00000000032200C8, 0x0000000000000000 offset, 5 functions] `.?AV?$BSTMessageQueue@USuspendedStack@Internal@BSScript@@@@` -`class BSTCommonMessageQueue`: VTable [0x0000000003220108, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonMessageQueue@USuspendedStack@Internal@BSScript@@@@` -`class BSTCommonStaticMessageQueue`: VTable [0x0000000003220158, 0x0000000000000000 offset, 7 functions] `.?AV?$BSTCommonStaticMessageQueue@USuspendedStack@Internal@BSScript@@$0IA@@@` -`class BSScript::Internal::VirtualMachine`: VTable [0x00000000032201A8, 0x0000000000000000 offset, 54 functions] `.?AVVirtualMachine@Internal@BSScript@@` -`class BSScript::Internal::VirtualMachine`: VTable [0x00000000032203B8, 0x0000000000000010 offset, 11 functions] `.?AVVirtualMachine@Internal@BSScript@@` -`class BSScript::Internal::VirtualMachine`: VTable [0x0000000003220430, 0x0000000000000018 offset, 23 functions] `.?AVVirtualMachine@Internal@BSScript@@` -`class BSScript::Internal::VirtualMachine`: VTable [0x0000000003220518, 0x0000000000000020 offset, 2 functions] `.?AVVirtualMachine@Internal@BSScript@@` -`class BSScript::Internal::`anonymous namespace'::ZeroArguments`: VTable [0x0000000003220638, 0x0000000000000000 offset, 2 functions] `.?AVZeroArguments@?A0x799375ae@Internal@BSScript@@` -`class BSScript::Internal::`anonymous namespace'::OneVariableArgument`: VTable [0x0000000003220658, 0x0000000000000000 offset, 2 functions] `.?AVOneVariableArgument@?A0x799375ae@Internal@BSScript@@` -`class BSScript::IStackCallbackFunctor`: VTable [0x0000000003222EF8, 0x0000000000000000 offset, 4 functions] `.?AVIStackCallbackFunctor@BSScript@@` -`class BSScript::IProfilePolicy`: VTable [0x0000000003222F28, 0x0000000000000000 offset, 5 functions] `.?AVIProfilePolicy@BSScript@@` -`class BSScript::UnlinkedTypes::Function::ConvertTypeFunctor`: VTable [0x0000000003222F68, 0x0000000000000000 offset, 2 functions] `.?AVConvertTypeFunctor@Function@UnlinkedTypes@BSScript@@` -`class BSScript::`anonymous namespace'::VMTypeResolveFunctor`: VTable [0x0000000003223150, 0x0000000000000000 offset, 2 functions] `.?AVVMTypeResolveFunctor@?A0x3beacc6e@BSScript@@` -`struct BSTArrayAllocatorFunctor >`: VTable [0x0000000003223B90, 0x0000000000000000 offset, 4 functions] `.?AU?$BSTArrayAllocatorFunctor@V?$BSTSmallArrayHeapAllocator@$0DA@@@@@` -`class BSScript::ByteCode::PackedInstructionStream::InstructionFunctor`: VTable [0x0000000003224558, 0x0000000000000000 offset, 3 functions] `.?AVInstructionFunctor@PackedInstructionStream@ByteCode@BSScript@@` -`class BSScript::IFunction`: VTable [0x0000000003225178, 0x0000000000000000 offset, 21 functions] `.?AVIFunction@BSScript@@` -`class BSScript::Internal::NativeFunctionStub`: VTable [0x00000000032252B8, 0x0000000000000000 offset, 21 functions] `.?AVNativeFunctionStub@Internal@BSScript@@` -`class BSScript::UnlinkedTypes::InstructionStream::InstructionFunctor`: VTable [0x0000000003225390, 0x0000000000000000 offset, 3 functions] `.?AVInstructionFunctor@InstructionStream@UnlinkedTypes@BSScript@@` -`class BSScript::UnlinkedTypes::`anonymous namespace'::CountInstructionInfo`: VTable [0x0000000003225438, 0x0000000000000000 offset, 3 functions] `.?AVCountInstructionInfo@?A0xdef6c925@UnlinkedTypes@BSScript@@` -`class BSScript::UnlinkedTypes::`anonymous namespace'::WriteInstructionsFunctor`: VTable [0x0000000003225460, 0x0000000000000000 offset, 3 functions] `.?AVWriteInstructionsFunctor@?A0xdef6c925@UnlinkedTypes@BSScript@@` -`class BSScript::UnlinkedTypes::`anonymous namespace'::BuildInstructionOffsetMapFunctor`: VTable [0x0000000003225488, 0x0000000000000000 offset, 3 functions] `.?AVBuildInstructionOffsetMapFunctor@?A0xdef6c925@UnlinkedTypes@BSScript@@` -`class BSScript::UnlinkedTypes::`anonymous namespace'::UnpackInstructionsFunctor`: VTable [0x00000000032254B0, 0x0000000000000000 offset, 3 functions] `.?AVUnpackInstructionsFunctor@?A0xdef6c925@UnlinkedTypes@BSScript@@` -`class BSScript::UnlinkedTypes::`anonymous namespace'::CollectStringsFunctor`: VTable [0x0000000003225558, 0x0000000000000000 offset, 3 functions] `.?AVCollectStringsFunctor@?A0xdef6c925@UnlinkedTypes@BSScript@@` -`class BSScript::Internal::CodeTasklet`: VTable [0x0000000003226970, 0x0000000000000000 offset, 2 functions] `.?AVCodeTasklet@Internal@BSScript@@` -`class BSScript::Internal::AutoPropGetFunction`: VTable [0x0000000003227810, 0x0000000000000000 offset, 21 functions] `.?AVAutoPropGetFunction@Internal@BSScript@@` -`class BSScript::Internal::AutoPropSetFunction`: VTable [0x00000000032278E8, 0x0000000000000000 offset, 21 functions] `.?AVAutoPropSetFunction@Internal@BSScript@@` -`class BSScript::LinkerProcessor`: VTable [0x0000000003228200, 0x0000000000000000 offset, 4 functions] `.?AVLinkerProcessor@BSScript@@` -`class BSScript::`anonymous namespace'::LinkerConvertTypeFunctor`: VTable [0x0000000003228230, 0x0000000000000000 offset, 2 functions] `.?AVLinkerConvertTypeFunctor@?A0xda230385@BSScript@@` -`class BSScript::Internal::ScriptFunction`: VTable [0x0000000003229068, 0x0000000000000000 offset, 21 functions] `.?AVScriptFunction@Internal@BSScript@@` -`class BSGraphics::Include`: VTable [0x000000000322BCD8, 0x0000000000000000 offset, 2 functions] `.?AVInclude@BSGraphics@@` -`class BSImagespaceShaderLensFlare`: VTable [0x0000000003234900, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderLensFlare@@` -`class BSImagespaceShaderLensFlare`: VTable [0x00000000032349B8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderLensFlare@@` -`class BSImagespaceShaderLensFlare`: VTable [0x00000000032349D8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderLensFlare@@` -`class BSImagespaceShaderLensFlare`: VTable [0x00000000032349F0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderLensFlare@@` -`class BSImagespaceShaderLensFlareVisibility`: VTable [0x0000000003234A68, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderLensFlareVisibility@@` -`class BSImagespaceShaderLensFlareVisibility`: VTable [0x0000000003234B20, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderLensFlareVisibility@@` -`class BSImagespaceShaderLensFlareVisibility`: VTable [0x0000000003234B40, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderLensFlareVisibility@@` -`class BSImagespaceShaderLensFlareVisibility`: VTable [0x0000000003234B58, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderLensFlareVisibility@@` -`class BSShaderProperty`: VTable [0x0000000003236CA8, 0x0000000000000000 offset, 65 functions] `.?AVBSShaderProperty@@` -`class BSGrassShaderProperty`: VTable [0x00000000032377B8, 0x0000000000000000 offset, 67 functions] `.?AVBSGrassShaderProperty@@` -`class BSLightingShaderProperty`: VTable [0x000000000323A4A0, 0x0000000000000000 offset, 65 functions] `.?AVBSLightingShaderProperty@@` -`class BSGrassShader`: VTable [0x000000000323B138, 0x0000000000000000 offset, 12 functions] `.?AVBSGrassShader@@` -`class BSGrassShader`: VTable [0x000000000323B1B8, 0x0000000000000010 offset, 2 functions] `.?AVBSGrassShader@@` -`class BSGrassShader`: VTable [0x000000000323B1D8, 0x0000000000000018 offset, 1 functions] `.?AVBSGrassShader@@` -`class BSFadeNode`: VTable [0x000000000323BAC0, 0x0000000000000000 offset, 66 functions] `.?AVBSFadeNode@@` -`class BSEffectShaderProperty`: VTable [0x000000000323C1D0, 0x0000000000000000 offset, 65 functions] `.?AVBSEffectShaderProperty@@` -`class BSFogProperty`: VTable [0x000000000323C658, 0x0000000000000000 offset, 41 functions] `.?AVBSFogProperty@@` -`class NiTArray >`: VTable [0x000000000323DF90, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVImageSpaceEffect@@V?$NiTMallocInterface@PEAVImageSpaceEffect@@@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000323DFA8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVImageSpaceEffect@@@@` -`class BSImagespaceShaderAlphaBlend`: VTable [0x000000000323DFC0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderAlphaBlend@@` -`class BSImagespaceShaderAlphaBlend`: VTable [0x000000000323E078, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderAlphaBlend@@` -`class BSImagespaceShaderAlphaBlend`: VTable [0x000000000323E098, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderAlphaBlend@@` -`class BSImagespaceShaderAlphaBlend`: VTable [0x000000000323E0B0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderAlphaBlend@@` -`class BSImagespaceShaderBlur3`: VTable [0x000000000323E350, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur3@@` -`class BSImagespaceShaderBlur3`: VTable [0x000000000323E408, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur3@@` -`class BSImagespaceShaderBlur3`: VTable [0x000000000323E428, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur3@@` -`class BSImagespaceShaderBlur3`: VTable [0x000000000323E440, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur3@@` -`class BSImagespaceShaderBlur5`: VTable [0x000000000323E558, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur5@@` -`class BSImagespaceShaderBlur5`: VTable [0x000000000323E610, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur5@@` -`class BSImagespaceShaderBlur5`: VTable [0x000000000323E630, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur5@@` -`class BSImagespaceShaderBlur5`: VTable [0x000000000323E648, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur5@@` -`class BSImagespaceShaderBlur7`: VTable [0x000000000323E720, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur7@@` -`class BSImagespaceShaderBlur7`: VTable [0x000000000323E7D8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur7@@` -`class BSImagespaceShaderBlur7`: VTable [0x000000000323E7F8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur7@@` -`class BSImagespaceShaderBlur7`: VTable [0x000000000323E810, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur7@@` -`class BSImagespaceShaderBlur9`: VTable [0x000000000323E8E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur9@@` -`class BSImagespaceShaderBlur9`: VTable [0x000000000323E9A0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur9@@` -`class BSImagespaceShaderBlur9`: VTable [0x000000000323E9C0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur9@@` -`class BSImagespaceShaderBlur9`: VTable [0x000000000323E9D8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur9@@` -`class BSImagespaceShaderBlur11`: VTable [0x000000000323EAB0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur11@@` -`class BSImagespaceShaderBlur11`: VTable [0x000000000323EB68, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur11@@` -`class BSImagespaceShaderBlur11`: VTable [0x000000000323EB88, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur11@@` -`class BSImagespaceShaderBlur11`: VTable [0x000000000323EBA0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur11@@` -`class BSImagespaceShaderBlur13`: VTable [0x000000000323EC78, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur13@@` -`class BSImagespaceShaderBlur13`: VTable [0x000000000323ED30, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur13@@` -`class BSImagespaceShaderBlur13`: VTable [0x000000000323ED50, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur13@@` -`class BSImagespaceShaderBlur13`: VTable [0x000000000323ED68, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur13@@` -`class BSImagespaceShaderBlur15`: VTable [0x000000000323EE40, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBlur15@@` -`class BSImagespaceShaderBlur15`: VTable [0x000000000323EEF8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBlur15@@` -`class BSImagespaceShaderBlur15`: VTable [0x000000000323EF18, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBlur15@@` -`class BSImagespaceShaderBlur15`: VTable [0x000000000323EF30, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBlur15@@` -`class BSImagespaceShaderNonHDRBlur3`: VTable [0x000000000323F008, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur3@@` -`class BSImagespaceShaderNonHDRBlur3`: VTable [0x000000000323F0C0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur3@@` -`class BSImagespaceShaderNonHDRBlur3`: VTable [0x000000000323F0E0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur3@@` -`class BSImagespaceShaderNonHDRBlur3`: VTable [0x000000000323F0F8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur3@@` -`class BSImagespaceShaderNonHDRBlur5`: VTable [0x000000000323F1A8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur5@@` -`class BSImagespaceShaderNonHDRBlur5`: VTable [0x000000000323F260, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur5@@` -`class BSImagespaceShaderNonHDRBlur5`: VTable [0x000000000323F280, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur5@@` -`class BSImagespaceShaderNonHDRBlur5`: VTable [0x000000000323F298, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur5@@` -`class BSImagespaceShaderNonHDRBlur7`: VTable [0x000000000323F348, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur7@@` -`class BSImagespaceShaderNonHDRBlur7`: VTable [0x000000000323F400, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur7@@` -`class BSImagespaceShaderNonHDRBlur7`: VTable [0x000000000323F420, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur7@@` -`class BSImagespaceShaderNonHDRBlur7`: VTable [0x000000000323F438, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur7@@` -`class BSImagespaceShaderNonHDRBlur9`: VTable [0x000000000323F4E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur9@@` -`class BSImagespaceShaderNonHDRBlur9`: VTable [0x000000000323F5A0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur9@@` -`class BSImagespaceShaderNonHDRBlur9`: VTable [0x000000000323F5C0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur9@@` -`class BSImagespaceShaderNonHDRBlur9`: VTable [0x000000000323F5D8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur9@@` -`class BSImagespaceShaderNonHDRBlur11`: VTable [0x000000000323F688, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur11@@` -`class BSImagespaceShaderNonHDRBlur11`: VTable [0x000000000323F740, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur11@@` -`class BSImagespaceShaderNonHDRBlur11`: VTable [0x000000000323F760, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur11@@` -`class BSImagespaceShaderNonHDRBlur11`: VTable [0x000000000323F778, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur11@@` -`class BSImagespaceShaderNonHDRBlur13`: VTable [0x000000000323F830, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur13@@` -`class BSImagespaceShaderNonHDRBlur13`: VTable [0x000000000323F8E8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur13@@` -`class BSImagespaceShaderNonHDRBlur13`: VTable [0x000000000323F908, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur13@@` -`class BSImagespaceShaderNonHDRBlur13`: VTable [0x000000000323F920, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur13@@` -`class BSImagespaceShaderNonHDRBlur15`: VTable [0x000000000323F9D8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNonHDRBlur15@@` -`class BSImagespaceShaderNonHDRBlur15`: VTable [0x000000000323FA90, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNonHDRBlur15@@` -`class BSImagespaceShaderNonHDRBlur15`: VTable [0x000000000323FAB0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNonHDRBlur15@@` -`class BSImagespaceShaderNonHDRBlur15`: VTable [0x000000000323FAC8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNonHDRBlur15@@` -`class BSImagespaceShaderBrightPassBlur3`: VTable [0x000000000323FB80, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur3@@` -`class BSImagespaceShaderBrightPassBlur3`: VTable [0x000000000323FC38, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur3@@` -`class BSImagespaceShaderBrightPassBlur3`: VTable [0x000000000323FC58, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur3@@` -`class BSImagespaceShaderBrightPassBlur3`: VTable [0x000000000323FC70, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur3@@` -`class BSImagespaceShaderBrightPassBlur5`: VTable [0x000000000323FD58, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur5@@` -`class BSImagespaceShaderBrightPassBlur5`: VTable [0x000000000323FE10, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur5@@` -`class BSImagespaceShaderBrightPassBlur5`: VTable [0x000000000323FE30, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur5@@` -`class BSImagespaceShaderBrightPassBlur5`: VTable [0x000000000323FE48, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur5@@` -`class BSImagespaceShaderBrightPassBlur7`: VTable [0x000000000323FF00, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur7@@` -`class BSImagespaceShaderBrightPassBlur7`: VTable [0x000000000323FFB8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur7@@` -`class BSImagespaceShaderBrightPassBlur7`: VTable [0x000000000323FFD8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur7@@` -`class BSImagespaceShaderBrightPassBlur7`: VTable [0x000000000323FFF0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur7@@` -`class BSImagespaceShaderBrightPassBlur9`: VTable [0x00000000032400A8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur9@@` -`class BSImagespaceShaderBrightPassBlur9`: VTable [0x0000000003240160, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur9@@` -`class BSImagespaceShaderBrightPassBlur9`: VTable [0x0000000003240180, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur9@@` -`class BSImagespaceShaderBrightPassBlur9`: VTable [0x0000000003240198, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur9@@` -`class BSImagespaceShaderBrightPassBlur11`: VTable [0x0000000003240250, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur11@@` -`class BSImagespaceShaderBrightPassBlur11`: VTable [0x0000000003240308, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur11@@` -`class BSImagespaceShaderBrightPassBlur11`: VTable [0x0000000003240328, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur11@@` -`class BSImagespaceShaderBrightPassBlur11`: VTable [0x0000000003240340, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur11@@` -`class BSImagespaceShaderBrightPassBlur13`: VTable [0x0000000003240400, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur13@@` -`class BSImagespaceShaderBrightPassBlur13`: VTable [0x00000000032404B8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur13@@` -`class BSImagespaceShaderBrightPassBlur13`: VTable [0x00000000032404D8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur13@@` -`class BSImagespaceShaderBrightPassBlur13`: VTable [0x00000000032404F0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur13@@` -`class BSImagespaceShaderBrightPassBlur15`: VTable [0x00000000032405B0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderBrightPassBlur15@@` -`class BSImagespaceShaderBrightPassBlur15`: VTable [0x0000000003240668, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderBrightPassBlur15@@` -`class BSImagespaceShaderBrightPassBlur15`: VTable [0x0000000003240688, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderBrightPassBlur15@@` -`class BSImagespaceShaderBrightPassBlur15`: VTable [0x00000000032406A0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderBrightPassBlur15@@` -`class BSImagespaceShaderCopy`: VTable [0x0000000003240760, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderCopy@@` -`class BSImagespaceShaderCopy`: VTable [0x0000000003240818, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderCopy@@` -`class BSImagespaceShaderCopy`: VTable [0x0000000003240838, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderCopy@@` -`class BSImagespaceShaderCopy`: VTable [0x0000000003240850, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderCopy@@` -`class BSImagespaceShaderCopyDynamicFetchDisabled`: VTable [0x00000000032408F0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderCopyDynamicFetchDisabled@@` -`class BSImagespaceShaderCopyDynamicFetchDisabled`: VTable [0x00000000032409A8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderCopyDynamicFetchDisabled@@` -`class BSImagespaceShaderCopyDynamicFetchDisabled`: VTable [0x00000000032409C8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderCopyDynamicFetchDisabled@@` -`class BSImagespaceShaderCopyDynamicFetchDisabled`: VTable [0x00000000032409E0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderCopyDynamicFetchDisabled@@` -`class BSImagespaceShaderCopyScaleBias`: VTable [0x0000000003240AC8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderCopyScaleBias@@` -`class BSImagespaceShaderCopyScaleBias`: VTable [0x0000000003240B80, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderCopyScaleBias@@` -`class BSImagespaceShaderCopyScaleBias`: VTable [0x0000000003240BA0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderCopyScaleBias@@` -`class BSImagespaceShaderCopyScaleBias`: VTable [0x0000000003240BB8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderCopyScaleBias@@` -`class BSImagespaceShaderTextureMask`: VTable [0x0000000003240C90, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderTextureMask@@` -`class BSImagespaceShaderTextureMask`: VTable [0x0000000003240D48, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderTextureMask@@` -`class BSImagespaceShaderTextureMask`: VTable [0x0000000003240D68, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderTextureMask@@` -`class BSImagespaceShaderTextureMask`: VTable [0x0000000003240D80, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderTextureMask@@` -`class BSImagespaceShaderGreyScale`: VTable [0x0000000003240E58, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderGreyScale@@` -`class BSImagespaceShaderGreyScale`: VTable [0x0000000003240F10, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderGreyScale@@` -`class BSImagespaceShaderGreyScale`: VTable [0x0000000003240F30, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderGreyScale@@` -`class BSImagespaceShaderGreyScale`: VTable [0x0000000003240F48, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderGreyScale@@` -`class BSImagespaceShaderCopyCustomViewport`: VTable [0x0000000003241020, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderCopyCustomViewport@@` -`class BSImagespaceShaderCopyCustomViewport`: VTable [0x00000000032410D8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderCopyCustomViewport@@` -`class BSImagespaceShaderCopyCustomViewport`: VTable [0x00000000032410F8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderCopyCustomViewport@@` -`class BSImagespaceShaderCopyCustomViewport`: VTable [0x0000000003241110, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderCopyCustomViewport@@` -`class BSImagespaceShaderDepthOfField`: VTable [0x00000000032411D8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDepthOfField@@` -`class BSImagespaceShaderDepthOfField`: VTable [0x0000000003241290, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDepthOfField@@` -`class BSImagespaceShaderDepthOfField`: VTable [0x00000000032412B0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDepthOfField@@` -`class BSImagespaceShaderDepthOfField`: VTable [0x00000000032412C8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDepthOfField@@` -`class BSImagespaceShaderDepthOfFieldFogged`: VTable [0x00000000032413D8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDepthOfFieldFogged@@` -`class BSImagespaceShaderDepthOfFieldFogged`: VTable [0x0000000003241490, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDepthOfFieldFogged@@` -`class BSImagespaceShaderDepthOfFieldFogged`: VTable [0x00000000032414B0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDepthOfFieldFogged@@` -`class BSImagespaceShaderDepthOfFieldFogged`: VTable [0x00000000032414C8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDepthOfFieldFogged@@` -`class BSImagespaceShaderDepthOfFieldMaskedFogged`: VTable [0x00000000032415B8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDepthOfFieldMaskedFogged@@` -`class BSImagespaceShaderDepthOfFieldMaskedFogged`: VTable [0x0000000003241670, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDepthOfFieldMaskedFogged@@` -`class BSImagespaceShaderDepthOfFieldMaskedFogged`: VTable [0x0000000003241690, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDepthOfFieldMaskedFogged@@` -`class BSImagespaceShaderDepthOfFieldMaskedFogged`: VTable [0x00000000032416A8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDepthOfFieldMaskedFogged@@` -`class BSImagespaceShaderDistantBlur`: VTable [0x00000000032417A8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDistantBlur@@` -`class BSImagespaceShaderDistantBlur`: VTable [0x0000000003241860, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDistantBlur@@` -`class BSImagespaceShaderDistantBlur`: VTable [0x0000000003241880, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDistantBlur@@` -`class BSImagespaceShaderDistantBlur`: VTable [0x0000000003241898, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDistantBlur@@` -`class BSImagespaceShaderDistantBlurFogged`: VTable [0x0000000003241958, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDistantBlurFogged@@` -`class BSImagespaceShaderDistantBlurFogged`: VTable [0x0000000003241A10, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDistantBlurFogged@@` -`class BSImagespaceShaderDistantBlurFogged`: VTable [0x0000000003241A30, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDistantBlurFogged@@` -`class BSImagespaceShaderDistantBlurFogged`: VTable [0x0000000003241A48, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDistantBlurFogged@@` -`class BSImagespaceShaderDistantBlurMaskedFogged`: VTable [0x0000000003241B08, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDistantBlurMaskedFogged@@` -`class BSImagespaceShaderDistantBlurMaskedFogged`: VTable [0x0000000003241BC0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDistantBlurMaskedFogged@@` -`class BSImagespaceShaderDistantBlurMaskedFogged`: VTable [0x0000000003241BE0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDistantBlurMaskedFogged@@` -`class BSImagespaceShaderDistantBlurMaskedFogged`: VTable [0x0000000003241BF8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDistantBlurMaskedFogged@@` -`class BSImagespaceShaderDoubleVision`: VTable [0x0000000003241CC8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderDoubleVision@@` -`class BSImagespaceShaderDoubleVision`: VTable [0x0000000003241D80, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderDoubleVision@@` -`class BSImagespaceShaderDoubleVision`: VTable [0x0000000003241DA0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderDoubleVision@@` -`class BSImagespaceShaderDoubleVision`: VTable [0x0000000003241DB8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderDoubleVision@@` -`class BSImagespaceShaderFXAA`: VTable [0x0000000003241EA8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderFXAA@@` -`class BSImagespaceShaderFXAA`: VTable [0x0000000003241F60, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderFXAA@@` -`class BSImagespaceShaderFXAA`: VTable [0x0000000003241F80, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderFXAA@@` -`class BSImagespaceShaderFXAA`: VTable [0x0000000003241F98, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderFXAA@@` -`class BSImagespaceShaderHDRDownSample4`: VTable [0x00000000032420A0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample4@@` -`class BSImagespaceShaderHDRDownSample4`: VTable [0x0000000003242158, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample4@@` -`class BSImagespaceShaderHDRDownSample4`: VTable [0x0000000003242178, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample4@@` -`class BSImagespaceShaderHDRDownSample4`: VTable [0x0000000003242190, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample4@@` -`class BSImagespaceShaderHDRDownSample16Lum`: VTable [0x0000000003242260, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample16Lum@@` -`class BSImagespaceShaderHDRDownSample16Lum`: VTable [0x0000000003242318, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample16Lum@@` -`class BSImagespaceShaderHDRDownSample16Lum`: VTable [0x0000000003242338, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample16Lum@@` -`class BSImagespaceShaderHDRDownSample16Lum`: VTable [0x0000000003242350, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample16Lum@@` -`class BSImagespaceShaderHDRDownSample4RGB2Lum`: VTable [0x0000000003242430, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample4RGB2Lum@@` -`class BSImagespaceShaderHDRDownSample4RGB2Lum`: VTable [0x00000000032424E8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample4RGB2Lum@@` -`class BSImagespaceShaderHDRDownSample4RGB2Lum`: VTable [0x0000000003242508, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample4RGB2Lum@@` -`class BSImagespaceShaderHDRDownSample4RGB2Lum`: VTable [0x0000000003242520, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample4RGB2Lum@@` -`class BSImagespaceShaderHDRDownSample16`: VTable [0x00000000032425F8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample16@@` -`class BSImagespaceShaderHDRDownSample16`: VTable [0x00000000032426B0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample16@@` -`class BSImagespaceShaderHDRDownSample16`: VTable [0x00000000032426D0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample16@@` -`class BSImagespaceShaderHDRDownSample16`: VTable [0x00000000032426E8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample16@@` -`class BSImagespaceShaderHDRDownSample4LumClamp`: VTable [0x00000000032427A0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample4LumClamp@@` -`class BSImagespaceShaderHDRDownSample4LumClamp`: VTable [0x0000000003242858, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample4LumClamp@@` -`class BSImagespaceShaderHDRDownSample4LumClamp`: VTable [0x0000000003242878, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample4LumClamp@@` -`class BSImagespaceShaderHDRDownSample4LumClamp`: VTable [0x0000000003242890, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample4LumClamp@@` -`class BSImagespaceShaderHDRDownSample16LumClamp`: VTable [0x0000000003242978, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample16LumClamp@@` -`class BSImagespaceShaderHDRDownSample16LumClamp`: VTable [0x0000000003242A30, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample16LumClamp@@` -`class BSImagespaceShaderHDRDownSample16LumClamp`: VTable [0x0000000003242A50, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample16LumClamp@@` -`class BSImagespaceShaderHDRDownSample16LumClamp`: VTable [0x0000000003242A68, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample16LumClamp@@` -`class BSImagespaceShaderHDRDownSample4LightAdapt`: VTable [0x0000000003242B38, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample4LightAdapt@@` -`class BSImagespaceShaderHDRDownSample4LightAdapt`: VTable [0x0000000003242BF0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample4LightAdapt@@` -`class BSImagespaceShaderHDRDownSample4LightAdapt`: VTable [0x0000000003242C10, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample4LightAdapt@@` -`class BSImagespaceShaderHDRDownSample4LightAdapt`: VTable [0x0000000003242C28, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample4LightAdapt@@` -`class BSImagespaceShaderHDRDownSample16LightAdapt`: VTable [0x0000000003242D20, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRDownSample16LightAdapt@@` -`class BSImagespaceShaderHDRDownSample16LightAdapt`: VTable [0x0000000003242DD8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRDownSample16LightAdapt@@` -`class BSImagespaceShaderHDRDownSample16LightAdapt`: VTable [0x0000000003242DF8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRDownSample16LightAdapt@@` -`class BSImagespaceShaderHDRDownSample16LightAdapt`: VTable [0x0000000003242E10, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRDownSample16LightAdapt@@` -`class BSImagespaceShaderHDRTonemapBlendCinematic`: VTable [0x0000000003242EE8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematic@@` -`class BSImagespaceShaderHDRTonemapBlendCinematic`: VTable [0x0000000003242FA0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematic@@` -`class BSImagespaceShaderHDRTonemapBlendCinematic`: VTable [0x0000000003242FC0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematic@@` -`class BSImagespaceShaderHDRTonemapBlendCinematic`: VTable [0x0000000003242FD8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematic@@` -`class BSImagespaceShaderHDRTonemapBlendCinematicFade`: VTable [0x00000000032430C8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematicFade@@` -`class BSImagespaceShaderHDRTonemapBlendCinematicFade`: VTable [0x0000000003243180, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematicFade@@` -`class BSImagespaceShaderHDRTonemapBlendCinematicFade`: VTable [0x00000000032431A0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematicFade@@` -`class BSImagespaceShaderHDRTonemapBlendCinematicFade`: VTable [0x00000000032431B8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderHDRTonemapBlendCinematicFade@@` -`class BSImagespaceShaderLocalMap`: VTable [0x00000000032432A0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderLocalMap@@` -`class BSImagespaceShaderLocalMap`: VTable [0x0000000003243358, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderLocalMap@@` -`class BSImagespaceShaderLocalMap`: VTable [0x0000000003243378, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderLocalMap@@` -`class BSImagespaceShaderLocalMap`: VTable [0x0000000003243390, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderLocalMap@@` -`class BSImagespaceShaderMap`: VTable [0x0000000003243448, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderMap@@` -`class BSImagespaceShaderMap`: VTable [0x0000000003243500, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderMap@@` -`class BSImagespaceShaderMap`: VTable [0x0000000003243520, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderMap@@` -`class BSImagespaceShaderMap`: VTable [0x0000000003243538, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderMap@@` -`class BSImagespaceShaderWorldMap`: VTable [0x00000000032435E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWorldMap@@` -`class BSImagespaceShaderWorldMap`: VTable [0x00000000032436A0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWorldMap@@` -`class BSImagespaceShaderWorldMap`: VTable [0x00000000032436C0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWorldMap@@` -`class BSImagespaceShaderWorldMap`: VTable [0x00000000032436D8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWorldMap@@` -`class BSImagespaceShaderWorldMapNoSkyBlur`: VTable [0x00000000032437B0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWorldMapNoSkyBlur@@` -`class BSImagespaceShaderWorldMapNoSkyBlur`: VTable [0x0000000003243868, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWorldMapNoSkyBlur@@` -`class BSImagespaceShaderWorldMapNoSkyBlur`: VTable [0x0000000003243888, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWorldMapNoSkyBlur@@` -`class BSImagespaceShaderWorldMapNoSkyBlur`: VTable [0x00000000032438A0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWorldMapNoSkyBlur@@` -`class BSImagespaceShaderNoiseScrollAndBlend`: VTable [0x0000000003243968, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNoiseScrollAndBlend@@` -`class BSImagespaceShaderNoiseScrollAndBlend`: VTable [0x0000000003243A20, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNoiseScrollAndBlend@@` -`class BSImagespaceShaderNoiseScrollAndBlend`: VTable [0x0000000003243A40, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNoiseScrollAndBlend@@` -`class BSImagespaceShaderNoiseScrollAndBlend`: VTable [0x0000000003243A58, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNoiseScrollAndBlend@@` -`class BSImagespaceShaderNoiseNormalmap`: VTable [0x0000000003243BB8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderNoiseNormalmap@@` -`class BSImagespaceShaderNoiseNormalmap`: VTable [0x0000000003243C70, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderNoiseNormalmap@@` -`class BSImagespaceShaderNoiseNormalmap`: VTable [0x0000000003243C90, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderNoiseNormalmap@@` -`class BSImagespaceShaderNoiseNormalmap`: VTable [0x0000000003243CA8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderNoiseNormalmap@@` -`class BSImagespaceShaderRadialBlur`: VTable [0x0000000003243D70, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderRadialBlur@@` -`class BSImagespaceShaderRadialBlur`: VTable [0x0000000003243E28, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderRadialBlur@@` -`class BSImagespaceShaderRadialBlur`: VTable [0x0000000003243E48, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderRadialBlur@@` -`class BSImagespaceShaderRadialBlur`: VTable [0x0000000003243E60, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderRadialBlur@@` -`class BSImagespaceShaderRadialBlurMedium`: VTable [0x0000000003243F28, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderRadialBlurMedium@@` -`class BSImagespaceShaderRadialBlurMedium`: VTable [0x0000000003243FE0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderRadialBlurMedium@@` -`class BSImagespaceShaderRadialBlurMedium`: VTable [0x0000000003244000, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderRadialBlurMedium@@` -`class BSImagespaceShaderRadialBlurMedium`: VTable [0x0000000003244018, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderRadialBlurMedium@@` -`class BSImagespaceShaderRadialBlurHigh`: VTable [0x00000000032440D8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderRadialBlurHigh@@` -`class BSImagespaceShaderRadialBlurHigh`: VTable [0x0000000003244190, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderRadialBlurHigh@@` -`class BSImagespaceShaderRadialBlurHigh`: VTable [0x00000000032441B0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderRadialBlurHigh@@` -`class BSImagespaceShaderRadialBlurHigh`: VTable [0x00000000032441C8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderRadialBlurHigh@@` -`class BSImagespaceShaderRefraction`: VTable [0x0000000003244280, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderRefraction@@` -`class BSImagespaceShaderRefraction`: VTable [0x0000000003244338, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderRefraction@@` -`class BSImagespaceShaderRefraction`: VTable [0x0000000003244358, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderRefraction@@` -`class BSImagespaceShaderRefraction`: VTable [0x0000000003244370, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderRefraction@@` -`class BSImagespaceShaderWaterDisplacementClearSimulation`: VTable [0x0000000003244420, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementClearSimulation@@` -`class BSImagespaceShaderWaterDisplacementClearSimulation`: VTable [0x00000000032444D8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementClearSimulation@@` -`class BSImagespaceShaderWaterDisplacementClearSimulation`: VTable [0x00000000032444F8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementClearSimulation@@` -`class BSImagespaceShaderWaterDisplacementClearSimulation`: VTable [0x0000000003244510, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementClearSimulation@@` -`class BSImagespaceShaderWaterDisplacementTexOffset`: VTable [0x0000000003244618, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementTexOffset@@` -`class BSImagespaceShaderWaterDisplacementTexOffset`: VTable [0x00000000032446D0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementTexOffset@@` -`class BSImagespaceShaderWaterDisplacementTexOffset`: VTable [0x00000000032446F0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementTexOffset@@` -`class BSImagespaceShaderWaterDisplacementTexOffset`: VTable [0x0000000003244708, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementTexOffset@@` -`class BSImagespaceShaderWaterDisplacementWadingRipple`: VTable [0x0000000003244848, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementWadingRipple@@` -`class BSImagespaceShaderWaterDisplacementWadingRipple`: VTable [0x0000000003244900, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementWadingRipple@@` -`class BSImagespaceShaderWaterDisplacementWadingRipple`: VTable [0x0000000003244920, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementWadingRipple@@` -`class BSImagespaceShaderWaterDisplacementWadingRipple`: VTable [0x0000000003244938, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementWadingRipple@@` -`class BSImagespaceShaderWaterDisplacementRainRipple`: VTable [0x0000000003244A48, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementRainRipple@@` -`class BSImagespaceShaderWaterDisplacementRainRipple`: VTable [0x0000000003244B00, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementRainRipple@@` -`class BSImagespaceShaderWaterDisplacementRainRipple`: VTable [0x0000000003244B20, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementRainRipple@@` -`class BSImagespaceShaderWaterDisplacementRainRipple`: VTable [0x0000000003244B38, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementRainRipple@@` -`class BSImagespaceShaderWaterWadingHeightmap`: VTable [0x0000000003244C18, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterWadingHeightmap@@` -`class BSImagespaceShaderWaterWadingHeightmap`: VTable [0x0000000003244CD0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterWadingHeightmap@@` -`class BSImagespaceShaderWaterWadingHeightmap`: VTable [0x0000000003244CF0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterWadingHeightmap@@` -`class BSImagespaceShaderWaterWadingHeightmap`: VTable [0x0000000003244D08, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterWadingHeightmap@@` -`class BSImagespaceShaderWaterRainHeightmap`: VTable [0x0000000003244DE8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterRainHeightmap@@` -`class BSImagespaceShaderWaterRainHeightmap`: VTable [0x0000000003244EA0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterRainHeightmap@@` -`class BSImagespaceShaderWaterRainHeightmap`: VTable [0x0000000003244EC0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterRainHeightmap@@` -`class BSImagespaceShaderWaterRainHeightmap`: VTable [0x0000000003244ED8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterRainHeightmap@@` -`class BSImagespaceShaderWaterBlendHeightmaps`: VTable [0x0000000003244FA8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterBlendHeightmaps@@` -`class BSImagespaceShaderWaterBlendHeightmaps`: VTable [0x0000000003245060, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterBlendHeightmaps@@` -`class BSImagespaceShaderWaterBlendHeightmaps`: VTable [0x0000000003245080, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterBlendHeightmaps@@` -`class BSImagespaceShaderWaterBlendHeightmaps`: VTable [0x0000000003245098, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterBlendHeightmaps@@` -`class BSImagespaceShaderWaterSmoothHeightmap`: VTable [0x0000000003245188, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterSmoothHeightmap@@` -`class BSImagespaceShaderWaterSmoothHeightmap`: VTable [0x0000000003245240, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterSmoothHeightmap@@` -`class BSImagespaceShaderWaterSmoothHeightmap`: VTable [0x0000000003245260, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterSmoothHeightmap@@` -`class BSImagespaceShaderWaterSmoothHeightmap`: VTable [0x0000000003245278, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterSmoothHeightmap@@` -`class BSImagespaceShaderWaterDisplacementNormals`: VTable [0x0000000003245348, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterDisplacementNormals@@` -`class BSImagespaceShaderWaterDisplacementNormals`: VTable [0x0000000003245400, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterDisplacementNormals@@` -`class BSImagespaceShaderWaterDisplacementNormals`: VTable [0x0000000003245420, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterDisplacementNormals@@` -`class BSImagespaceShaderWaterDisplacementNormals`: VTable [0x0000000003245438, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterDisplacementNormals@@` -`class BSImagespaceShaderVolumetricLighting`: VTable [0x0000000003245518, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderVolumetricLighting@@` -`class BSImagespaceShaderVolumetricLighting`: VTable [0x00000000032455D0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderVolumetricLighting@@` -`class BSImagespaceShaderVolumetricLighting`: VTable [0x00000000032455F0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderVolumetricLighting@@` -`class BSImagespaceShaderVolumetricLighting`: VTable [0x0000000003245608, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderVolumetricLighting@@` -`class BSImagespaceShaderWaterFlow`: VTable [0x0000000003245838, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderWaterFlow@@` -`class BSImagespaceShaderWaterFlow`: VTable [0x00000000032458F0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderWaterFlow@@` -`class BSImagespaceShaderWaterFlow`: VTable [0x0000000003245910, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderWaterFlow@@` -`class BSImagespaceShaderWaterFlow`: VTable [0x0000000003245928, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderWaterFlow@@` -`class BSImagespaceShaderApplyReflections`: VTable [0x0000000003245A48, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderApplyReflections@@` -`class BSImagespaceShaderApplyReflections`: VTable [0x0000000003245B00, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderApplyReflections@@` -`class BSImagespaceShaderApplyReflections`: VTable [0x0000000003245B20, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderApplyReflections@@` -`class BSImagespaceShaderApplyReflections`: VTable [0x0000000003245B38, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderApplyReflections@@` -`class BSImagespaceShaderISApplyVolumetricLighting`: VTable [0x0000000003245C50, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISApplyVolumetricLighting@@` -`class BSImagespaceShaderISApplyVolumetricLighting`: VTable [0x0000000003245D08, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISApplyVolumetricLighting@@` -`class BSImagespaceShaderISApplyVolumetricLighting`: VTable [0x0000000003245D28, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISApplyVolumetricLighting@@` -`class BSImagespaceShaderISApplyVolumetricLighting`: VTable [0x0000000003245D40, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISApplyVolumetricLighting@@` -`class BSImagespaceShaderISBasicCopy`: VTable [0x0000000003245E78, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISBasicCopy@@` -`class BSImagespaceShaderISBasicCopy`: VTable [0x0000000003245F30, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISBasicCopy@@` -`class BSImagespaceShaderISBasicCopy`: VTable [0x0000000003245F50, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISBasicCopy@@` -`class BSImagespaceShaderISBasicCopy`: VTable [0x0000000003245F68, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISBasicCopy@@` -`class BSImagespaceShaderISBlur`: VTable [0x0000000003246020, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISBlur@@` -`class BSImagespaceShaderISBlur`: VTable [0x00000000032460D8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISBlur@@` -`class BSImagespaceShaderISBlur`: VTable [0x00000000032460F8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISBlur@@` -`class BSImagespaceShaderISBlur`: VTable [0x0000000003246110, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISBlur@@` -`class BSImagespaceShaderISVolumetricLightingBlurHCS`: VTable [0x0000000003246200, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurHCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurHCS`: VTable [0x00000000032462B8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurHCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurHCS`: VTable [0x00000000032462D8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurHCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurHCS`: VTable [0x00000000032462F0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurHCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurVCS`: VTable [0x00000000032464A8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurVCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurVCS`: VTable [0x0000000003246560, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurVCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurVCS`: VTable [0x0000000003246580, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurVCS@@` -`class BSImagespaceShaderISVolumetricLightingBlurVCS`: VTable [0x0000000003246598, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISVolumetricLightingBlurVCS@@` -`class BSImagespaceShaderReflectionBlurHCS`: VTable [0x0000000003246688, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderReflectionBlurHCS@@` -`class BSImagespaceShaderReflectionBlurHCS`: VTable [0x0000000003246740, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderReflectionBlurHCS@@` -`class BSImagespaceShaderReflectionBlurHCS`: VTable [0x0000000003246760, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderReflectionBlurHCS@@` -`class BSImagespaceShaderReflectionBlurHCS`: VTable [0x0000000003246778, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderReflectionBlurHCS@@` -`class BSImagespaceShaderReflectionBlurVCS`: VTable [0x0000000003246838, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderReflectionBlurVCS@@` -`class BSImagespaceShaderReflectionBlurVCS`: VTable [0x00000000032468F0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderReflectionBlurVCS@@` -`class BSImagespaceShaderReflectionBlurVCS`: VTable [0x0000000003246910, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderReflectionBlurVCS@@` -`class BSImagespaceShaderReflectionBlurVCS`: VTable [0x0000000003246928, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderReflectionBlurVCS@@` -`class BSImagespaceShaderISParallaxMaskBlurHCS`: VTable [0x00000000032469E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurHCS@@` -`class BSImagespaceShaderISParallaxMaskBlurHCS`: VTable [0x0000000003246AA0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurHCS@@` -`class BSImagespaceShaderISParallaxMaskBlurHCS`: VTable [0x0000000003246AC0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurHCS@@` -`class BSImagespaceShaderISParallaxMaskBlurHCS`: VTable [0x0000000003246AD8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurHCS@@` -`class BSImagespaceShaderISParallaxMaskBlurVCS`: VTable [0x0000000003246BC0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurVCS@@` -`class BSImagespaceShaderISParallaxMaskBlurVCS`: VTable [0x0000000003246C78, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurVCS@@` -`class BSImagespaceShaderISParallaxMaskBlurVCS`: VTable [0x0000000003246C98, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurVCS@@` -`class BSImagespaceShaderISParallaxMaskBlurVCS`: VTable [0x0000000003246CB0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISParallaxMaskBlurVCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurHCS`: VTable [0x0000000003246D78, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurHCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurHCS`: VTable [0x0000000003246E30, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurHCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurHCS`: VTable [0x0000000003246E50, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurHCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurHCS`: VTable [0x0000000003246E68, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurHCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurVCS`: VTable [0x0000000003246F40, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurVCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurVCS`: VTable [0x0000000003246FF8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurVCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurVCS`: VTable [0x0000000003247018, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurVCS@@` -`class BSImagespaceShaderISDepthOfFieldBlurVCS`: VTable [0x0000000003247030, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDepthOfFieldBlurVCS@@` -`class BSImagespaceShaderISCompositeVolumetricLighting`: VTable [0x0000000003247100, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISCompositeVolumetricLighting@@` -`class BSImagespaceShaderISCompositeVolumetricLighting`: VTable [0x00000000032471B8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISCompositeVolumetricLighting@@` -`class BSImagespaceShaderISCompositeVolumetricLighting`: VTable [0x00000000032471D8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISCompositeVolumetricLighting@@` -`class BSImagespaceShaderISCompositeVolumetricLighting`: VTable [0x00000000032471F0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISCompositeVolumetricLighting@@` -`class BSImagespaceShaderISCompositeLensFlare`: VTable [0x0000000003247358, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISCompositeLensFlare@@` -`class BSImagespaceShaderISCompositeLensFlare`: VTable [0x0000000003247410, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISCompositeLensFlare@@` -`class BSImagespaceShaderISCompositeLensFlare`: VTable [0x0000000003247430, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISCompositeLensFlare@@` -`class BSImagespaceShaderISCompositeLensFlare`: VTable [0x0000000003247448, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISCompositeLensFlare@@` -`class BSImagespaceShaderISCompositeLensFlareVolumetricLighting`: VTable [0x0000000003247520, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISCompositeLensFlareVolumetricLighting@@` -`class BSImagespaceShaderISCompositeLensFlareVolumetricLighting`: VTable [0x00000000032475D8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISCompositeLensFlareVolumetricLighting@@` -`class BSImagespaceShaderISCompositeLensFlareVolumetricLighting`: VTable [0x00000000032475F8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISCompositeLensFlareVolumetricLighting@@` -`class BSImagespaceShaderISCompositeLensFlareVolumetricLighting`: VTable [0x0000000003247610, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISCompositeLensFlareVolumetricLighting@@` -`class BSImagespaceShaderISCopySubRegionCS`: VTable [0x00000000032476D0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISCopySubRegionCS@@` -`class BSImagespaceShaderISCopySubRegionCS`: VTable [0x0000000003247788, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISCopySubRegionCS@@` -`class BSImagespaceShaderISCopySubRegionCS`: VTable [0x00000000032477A8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISCopySubRegionCS@@` -`class BSImagespaceShaderISCopySubRegionCS`: VTable [0x00000000032477C0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISCopySubRegionCS@@` -`class BSImagespaceShaderISDebugSnow`: VTable [0x00000000032478C0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDebugSnow@@` -`class BSImagespaceShaderISDebugSnow`: VTable [0x0000000003247978, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDebugSnow@@` -`class BSImagespaceShaderISDebugSnow`: VTable [0x0000000003247998, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDebugSnow@@` -`class BSImagespaceShaderISDebugSnow`: VTable [0x00000000032479B0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDebugSnow@@` -`class BSImagespaceShaderISDownsample`: VTable [0x0000000003247A78, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDownsample@@` -`class BSImagespaceShaderISDownsample`: VTable [0x0000000003247B30, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDownsample@@` -`class BSImagespaceShaderISDownsample`: VTable [0x0000000003247B50, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDownsample@@` -`class BSImagespaceShaderISDownsample`: VTable [0x0000000003247B68, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDownsample@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightest`: VTable [0x0000000003247CA8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightest@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightest`: VTable [0x0000000003247D60, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightest@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightest`: VTable [0x0000000003247D80, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightest@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightest`: VTable [0x0000000003247D98, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightest@@` -`class BSImagespaceShaderISDownsampleCS`: VTable [0x0000000003247E88, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDownsampleCS@@` -`class BSImagespaceShaderISDownsampleCS`: VTable [0x0000000003247F40, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDownsampleCS@@` -`class BSImagespaceShaderISDownsampleCS`: VTable [0x0000000003247F60, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDownsampleCS@@` -`class BSImagespaceShaderISDownsampleCS`: VTable [0x0000000003247F78, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDownsampleCS@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightestCS`: VTable [0x0000000003248080, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightestCS@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightestCS`: VTable [0x0000000003248138, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightestCS@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightestCS`: VTable [0x0000000003248158, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightestCS@@` -`class BSImagespaceShaderISDownsampleIgnoreBrightestCS`: VTable [0x0000000003248170, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDownsampleIgnoreBrightestCS@@` -`class BSImagespaceShaderISExp`: VTable [0x0000000003248250, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISExp@@` -`class BSImagespaceShaderISExp`: VTable [0x0000000003248308, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISExp@@` -`class BSImagespaceShaderISExp`: VTable [0x0000000003248328, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISExp@@` -`class BSImagespaceShaderISExp`: VTable [0x0000000003248340, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISExp@@` -`class BSImagespaceShaderISIBLensFlares`: VTable [0x00000000032483F0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISIBLensFlares@@` -`class BSImagespaceShaderISIBLensFlares`: VTable [0x00000000032484A8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISIBLensFlares@@` -`class BSImagespaceShaderISIBLensFlares`: VTable [0x00000000032484C8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISIBLensFlares@@` -`class BSImagespaceShaderISIBLensFlares`: VTable [0x00000000032484E0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISIBLensFlares@@` -`class BSImagespaceShaderISLightingComposite`: VTable [0x0000000003248718, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISLightingComposite@@` -`class BSImagespaceShaderISLightingComposite`: VTable [0x00000000032487D0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISLightingComposite@@` -`class BSImagespaceShaderISLightingComposite`: VTable [0x00000000032487F0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISLightingComposite@@` -`class BSImagespaceShaderISLightingComposite`: VTable [0x0000000003248808, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISLightingComposite@@` -`class BSImagespaceShaderISLightingCompositeNoDirectionalLight`: VTable [0x0000000003248940, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISLightingCompositeNoDirectionalLight@@` -`class BSImagespaceShaderISLightingCompositeNoDirectionalLight`: VTable [0x00000000032489F8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISLightingCompositeNoDirectionalLight@@` -`class BSImagespaceShaderISLightingCompositeNoDirectionalLight`: VTable [0x0000000003248A18, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISLightingCompositeNoDirectionalLight@@` -`class BSImagespaceShaderISLightingCompositeNoDirectionalLight`: VTable [0x0000000003248A30, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISLightingCompositeNoDirectionalLight@@` -`class BSImagespaceShaderISLightingCompositeMenu`: VTable [0x0000000003248B20, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISLightingCompositeMenu@@` -`class BSImagespaceShaderISLightingCompositeMenu`: VTable [0x0000000003248BD8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISLightingCompositeMenu@@` -`class BSImagespaceShaderISLightingCompositeMenu`: VTable [0x0000000003248BF8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISLightingCompositeMenu@@` -`class BSImagespaceShaderISLightingCompositeMenu`: VTable [0x0000000003248C10, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISLightingCompositeMenu@@` -`class BSImagespaceShaderISPerlinNoiseCS`: VTable [0x0000000003248CE8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISPerlinNoiseCS@@` -`class BSImagespaceShaderISPerlinNoiseCS`: VTable [0x0000000003248DA0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISPerlinNoiseCS@@` -`class BSImagespaceShaderISPerlinNoiseCS`: VTable [0x0000000003248DC0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISPerlinNoiseCS@@` -`class BSImagespaceShaderISPerlinNoiseCS`: VTable [0x0000000003248DD8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISPerlinNoiseCS@@` -`class BSImagespaceShaderISPerlinNoise2DCS`: VTable [0x0000000003248EB8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISPerlinNoise2DCS@@` -`class BSImagespaceShaderISPerlinNoise2DCS`: VTable [0x0000000003248F70, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISPerlinNoise2DCS@@` -`class BSImagespaceShaderISPerlinNoise2DCS`: VTable [0x0000000003248F90, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISPerlinNoise2DCS@@` -`class BSImagespaceShaderISPerlinNoise2DCS`: VTable [0x0000000003248FA8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISPerlinNoise2DCS@@` -`class BSImagespaceShaderReflectionsRayTracing`: VTable [0x0000000003249078, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderReflectionsRayTracing@@` -`class BSImagespaceShaderReflectionsRayTracing`: VTable [0x0000000003249130, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderReflectionsRayTracing@@` -`class BSImagespaceShaderReflectionsRayTracing`: VTable [0x0000000003249150, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderReflectionsRayTracing@@` -`class BSImagespaceShaderReflectionsRayTracing`: VTable [0x0000000003249168, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderReflectionsRayTracing@@` -`class BSImagespaceShaderReflectionsDebugSpecMask`: VTable [0x0000000003249290, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderReflectionsDebugSpecMask@@` -`class BSImagespaceShaderReflectionsDebugSpecMask`: VTable [0x0000000003249348, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderReflectionsDebugSpecMask@@` -`class BSImagespaceShaderReflectionsDebugSpecMask`: VTable [0x0000000003249368, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderReflectionsDebugSpecMask@@` -`class BSImagespaceShaderReflectionsDebugSpecMask`: VTable [0x0000000003249380, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderReflectionsDebugSpecMask@@` -`class BSImagespaceShaderISSAOBlurH`: VTable [0x0000000003249460, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOBlurH@@` -`class BSImagespaceShaderISSAOBlurH`: VTable [0x0000000003249518, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOBlurH@@` -`class BSImagespaceShaderISSAOBlurH`: VTable [0x0000000003249538, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOBlurH@@` -`class BSImagespaceShaderISSAOBlurH`: VTable [0x0000000003249550, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOBlurH@@` -`class BSImagespaceShaderISSAOBlurV`: VTable [0x0000000003249628, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOBlurV@@` -`class BSImagespaceShaderISSAOBlurV`: VTable [0x00000000032496E0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOBlurV@@` -`class BSImagespaceShaderISSAOBlurV`: VTable [0x0000000003249700, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOBlurV@@` -`class BSImagespaceShaderISSAOBlurV`: VTable [0x0000000003249718, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOBlurV@@` -`class BSImagespaceShaderISSAOBlurHCS`: VTable [0x00000000032497D0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOBlurHCS@@` -`class BSImagespaceShaderISSAOBlurHCS`: VTable [0x0000000003249888, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOBlurHCS@@` -`class BSImagespaceShaderISSAOBlurHCS`: VTable [0x00000000032498A8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOBlurHCS@@` -`class BSImagespaceShaderISSAOBlurHCS`: VTable [0x00000000032498C0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOBlurHCS@@` -`class BSImagespaceShaderISSAOBlurVCS`: VTable [0x0000000003249998, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOBlurVCS@@` -`class BSImagespaceShaderISSAOBlurVCS`: VTable [0x0000000003249A50, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOBlurVCS@@` -`class BSImagespaceShaderISSAOBlurVCS`: VTable [0x0000000003249A70, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOBlurVCS@@` -`class BSImagespaceShaderISSAOBlurVCS`: VTable [0x0000000003249A88, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOBlurVCS@@` -`class BSImagespaceShaderISSAOCameraZ`: VTable [0x0000000003249B40, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCameraZ@@` -`class BSImagespaceShaderISSAOCameraZ`: VTable [0x0000000003249BF8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCameraZ@@` -`class BSImagespaceShaderISSAOCameraZ`: VTable [0x0000000003249C18, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCameraZ@@` -`class BSImagespaceShaderISSAOCameraZ`: VTable [0x0000000003249C30, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCameraZ@@` -`class BSImagespaceShaderISSAOCameraZAndMipsCS`: VTable [0x0000000003249CF0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCameraZAndMipsCS@@` -`class BSImagespaceShaderISSAOCameraZAndMipsCS`: VTable [0x0000000003249DA8, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCameraZAndMipsCS@@` -`class BSImagespaceShaderISSAOCameraZAndMipsCS`: VTable [0x0000000003249DC8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCameraZAndMipsCS@@` -`class BSImagespaceShaderISSAOCameraZAndMipsCS`: VTable [0x0000000003249DE0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCameraZAndMipsCS@@` -`class BSImagespaceShaderISSAOCompositeSAO`: VTable [0x0000000003249ED8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCompositeSAO@@` -`class BSImagespaceShaderISSAOCompositeSAO`: VTable [0x0000000003249F90, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCompositeSAO@@` -`class BSImagespaceShaderISSAOCompositeSAO`: VTable [0x0000000003249FB0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCompositeSAO@@` -`class BSImagespaceShaderISSAOCompositeSAO`: VTable [0x0000000003249FC8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCompositeSAO@@` -`class BSImagespaceShaderISSAOCompositeFog`: VTable [0x000000000324A190, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCompositeFog@@` -`class BSImagespaceShaderISSAOCompositeFog`: VTable [0x000000000324A248, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCompositeFog@@` -`class BSImagespaceShaderISSAOCompositeFog`: VTable [0x000000000324A268, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCompositeFog@@` -`class BSImagespaceShaderISSAOCompositeFog`: VTable [0x000000000324A280, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCompositeFog@@` -`class BSImagespaceShaderISSAOCompositeSAOFog`: VTable [0x000000000324A350, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAOCompositeSAOFog@@` -`class BSImagespaceShaderISSAOCompositeSAOFog`: VTable [0x000000000324A408, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAOCompositeSAOFog@@` -`class BSImagespaceShaderISSAOCompositeSAOFog`: VTable [0x000000000324A428, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAOCompositeSAOFog@@` -`class BSImagespaceShaderISSAOCompositeSAOFog`: VTable [0x000000000324A440, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAOCompositeSAOFog@@` -`class BSImagespaceShaderISMinify`: VTable [0x000000000324A508, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISMinify@@` -`class BSImagespaceShaderISMinify`: VTable [0x000000000324A5C0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISMinify@@` -`class BSImagespaceShaderISMinify`: VTable [0x000000000324A5E0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISMinify@@` -`class BSImagespaceShaderISMinify`: VTable [0x000000000324A5F8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISMinify@@` -`class BSImagespaceShaderISMinifyContrast`: VTable [0x000000000324A708, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISMinifyContrast@@` -`class BSImagespaceShaderISMinifyContrast`: VTable [0x000000000324A7C0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISMinifyContrast@@` -`class BSImagespaceShaderISMinifyContrast`: VTable [0x000000000324A7E0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISMinifyContrast@@` -`class BSImagespaceShaderISMinifyContrast`: VTable [0x000000000324A7F8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISMinifyContrast@@` -`class BSImagespaceShaderISSAORawAO`: VTable [0x000000000324A8D8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAORawAO@@` -`class BSImagespaceShaderISSAORawAO`: VTable [0x000000000324A990, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAORawAO@@` -`class BSImagespaceShaderISSAORawAO`: VTable [0x000000000324A9B0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAORawAO@@` -`class BSImagespaceShaderISSAORawAO`: VTable [0x000000000324A9C8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAORawAO@@` -`class BSImagespaceShaderISSAORawAONoTemporal`: VTable [0x000000000324AB08, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAORawAONoTemporal@@` -`class BSImagespaceShaderISSAORawAONoTemporal`: VTable [0x000000000324ABC0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAORawAONoTemporal@@` -`class BSImagespaceShaderISSAORawAONoTemporal`: VTable [0x000000000324ABE0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAORawAONoTemporal@@` -`class BSImagespaceShaderISSAORawAONoTemporal`: VTable [0x000000000324ABF8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAORawAONoTemporal@@` -`class BSImagespaceShaderISSAORawAOCS`: VTable [0x000000000324ACC0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSAORawAOCS@@` -`class BSImagespaceShaderISSAORawAOCS`: VTable [0x000000000324AD78, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSAORawAOCS@@` -`class BSImagespaceShaderISSAORawAOCS`: VTable [0x000000000324AD98, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSAORawAOCS@@` -`class BSImagespaceShaderISSAORawAOCS`: VTable [0x000000000324ADB0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSAORawAOCS@@` -`class BSImagespaceShaderISSILComposite`: VTable [0x000000000324AE80, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSILComposite@@` -`class BSImagespaceShaderISSILComposite`: VTable [0x000000000324AF38, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSILComposite@@` -`class BSImagespaceShaderISSILComposite`: VTable [0x000000000324AF58, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSILComposite@@` -`class BSImagespaceShaderISSILComposite`: VTable [0x000000000324AF70, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSILComposite@@` -`class BSImagespaceShaderISSILRawInd`: VTable [0x000000000324B038, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSILRawInd@@` -`class BSImagespaceShaderISSILRawInd`: VTable [0x000000000324B0F0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSILRawInd@@` -`class BSImagespaceShaderISSILRawInd`: VTable [0x000000000324B110, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSILRawInd@@` -`class BSImagespaceShaderISSILRawInd`: VTable [0x000000000324B128, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSILRawInd@@` -`class BSImagespaceShaderISSimpleColor`: VTable [0x000000000324B218, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSimpleColor@@` -`class BSImagespaceShaderISSimpleColor`: VTable [0x000000000324B2D0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSimpleColor@@` -`class BSImagespaceShaderISSimpleColor`: VTable [0x000000000324B2F0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSimpleColor@@` -`class BSImagespaceShaderISSimpleColor`: VTable [0x000000000324B308, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSimpleColor@@` -`class BSImagespaceShaderISDisplayDepth`: VTable [0x000000000324B3D0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISDisplayDepth@@` -`class BSImagespaceShaderISDisplayDepth`: VTable [0x000000000324B488, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISDisplayDepth@@` -`class BSImagespaceShaderISDisplayDepth`: VTable [0x000000000324B4A8, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISDisplayDepth@@` -`class BSImagespaceShaderISDisplayDepth`: VTable [0x000000000324B4C0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISDisplayDepth@@` -`class BSImagespaceShaderISSnowSSS`: VTable [0x000000000324B588, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISSnowSSS@@` -`class BSImagespaceShaderISSnowSSS`: VTable [0x000000000324B640, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISSnowSSS@@` -`class BSImagespaceShaderISSnowSSS`: VTable [0x000000000324B660, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISSnowSSS@@` -`class BSImagespaceShaderISSnowSSS`: VTable [0x000000000324B678, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISSnowSSS@@` -`class BSImagespaceShaderISTemporalAA`: VTable [0x000000000324B768, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISTemporalAA@@` -`class BSImagespaceShaderISTemporalAA`: VTable [0x000000000324B820, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISTemporalAA@@` -`class BSImagespaceShaderISTemporalAA`: VTable [0x000000000324B840, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISTemporalAA@@` -`class BSImagespaceShaderISTemporalAA`: VTable [0x000000000324B858, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISTemporalAA@@` -`class BSImagespaceShaderISTemporalAA_UI`: VTable [0x000000000324BA48, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISTemporalAA_UI@@` -`class BSImagespaceShaderISTemporalAA_UI`: VTable [0x000000000324BB00, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISTemporalAA_UI@@` -`class BSImagespaceShaderISTemporalAA_UI`: VTable [0x000000000324BB20, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISTemporalAA_UI@@` -`class BSImagespaceShaderISTemporalAA_UI`: VTable [0x000000000324BB38, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISTemporalAA_UI@@` -`class BSImagespaceShaderISTemporalAA_Water`: VTable [0x000000000324BBF8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISTemporalAA_Water@@` -`class BSImagespaceShaderISTemporalAA_Water`: VTable [0x000000000324BCB0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISTemporalAA_Water@@` -`class BSImagespaceShaderISTemporalAA_Water`: VTable [0x000000000324BCD0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISTemporalAA_Water@@` -`class BSImagespaceShaderISTemporalAA_Water`: VTable [0x000000000324BCE8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISTemporalAA_Water@@` -`class BSImagespaceShaderISUpsampleDynamicResolution`: VTable [0x000000000324BDC0, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISUpsampleDynamicResolution@@` -`class BSImagespaceShaderISUpsampleDynamicResolution`: VTable [0x000000000324BE78, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISUpsampleDynamicResolution@@` -`class BSImagespaceShaderISUpsampleDynamicResolution`: VTable [0x000000000324BE98, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISUpsampleDynamicResolution@@` -`class BSImagespaceShaderISUpsampleDynamicResolution`: VTable [0x000000000324BEB0, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISUpsampleDynamicResolution@@` -`class BSImagespaceShaderISWaterBlend`: VTable [0x000000000324BFA8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISWaterBlend@@` -`class BSImagespaceShaderISWaterBlend`: VTable [0x000000000324C060, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISWaterBlend@@` -`class BSImagespaceShaderISWaterBlend`: VTable [0x000000000324C080, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISWaterBlend@@` -`class BSImagespaceShaderISWaterBlend`: VTable [0x000000000324C098, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISWaterBlend@@` -`class BSImagespaceShaderISUnderwaterMask`: VTable [0x000000000324C180, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShaderISUnderwaterMask@@` -`class BSImagespaceShaderISUnderwaterMask`: VTable [0x000000000324C238, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShaderISUnderwaterMask@@` -`class BSImagespaceShaderISUnderwaterMask`: VTable [0x000000000324C258, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShaderISUnderwaterMask@@` -`class BSImagespaceShaderISUnderwaterMask`: VTable [0x000000000324C270, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShaderISUnderwaterMask@@` -`class ShadowSceneNode`: VTable [0x000000000324CE50, 0x0000000000000000 offset, 64 functions] `.?AVShadowSceneNode@@` -`class BSMapBase`: VTable [0x000000000324D978, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMapBase@PEBVBSFadeNode@@I@@` -`class BSMap`: VTable [0x000000000324D9C8, 0x0000000000000000 offset, 7 functions] `.?AV?$BSMap@PEBVBSFadeNode@@I@@` -`class BSShaderAccumulator`: VTable [0x000000000324DA18, 0x0000000000000000 offset, 47 functions] `.?AVBSShaderAccumulator@@` -`class BSWaterShaderProperty`: VTable [0x0000000003250198, 0x0000000000000000 offset, 65 functions] `.?AVBSWaterShaderProperty@@` -`class BSEffectShaderMaterial`: VTable [0x0000000003250568, 0x0000000000000000 offset, 9 functions] `.?AVBSEffectShaderMaterial@@` -`class BSBatchRenderer`: VTable [0x0000000003251B00, 0x0000000000000000 offset, 4 functions] `.?AVBSBatchRenderer@@` -`class BSLight`: VTable [0x0000000003252370, 0x0000000000000000 offset, 4 functions] `.?AVBSLight@@` -`class BSShadowDirectionalLight`: VTable [0x0000000003253310, 0x0000000000000000 offset, 17 functions] `.?AVBSShadowDirectionalLight@@` -`class BSGeometryListCullingProcess`: VTable [0x00000000032533C0, 0x0000000000000000 offset, 29 functions] `.?AVBSGeometryListCullingProcess@@` -`class ImageSpaceEffectHDR`: VTable [0x0000000003253DD0, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectHDR@@` -`class BSShadowLight`: VTable [0x0000000003254430, 0x0000000000000000 offset, 17 functions] `.?AVBSShadowLight@@` -`class BSUtilityShader`: VTable [0x0000000003254950, 0x0000000000000000 offset, 12 functions] `.?AVBSUtilityShader@@` -`class BSUtilityShader`: VTable [0x00000000032549D0, 0x0000000000000010 offset, 2 functions] `.?AVBSUtilityShader@@` -`class BSUtilityShader`: VTable [0x00000000032549F0, 0x0000000000000018 offset, 1 functions] `.?AVBSUtilityShader@@` -`class BSShaderMaterial`: VTable [0x0000000003256010, 0x0000000000000000 offset, 9 functions] `.?AVBSShaderMaterial@@` -`class BSLightingShader`: VTable [0x0000000003256D40, 0x0000000000000000 offset, 12 functions] `.?AVBSLightingShader@@` -`class BSLightingShader`: VTable [0x0000000003256DC0, 0x0000000000000010 offset, 2 functions] `.?AVBSLightingShader@@` -`class BSLightingShader`: VTable [0x0000000003256DE0, 0x0000000000000018 offset, 1 functions] `.?AVBSLightingShader@@` -`class BSLightingShaderMaterialBase`: VTable [0x0000000003257968, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialBase@@` -`class BSLightingShaderMaterialEnvmap`: VTable [0x0000000003257A10, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialEnvmap@@` -`class BSLightingShaderMaterialEye`: VTable [0x0000000003257AB8, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialEye@@` -`class BSLightingShaderMaterialGlowmap`: VTable [0x0000000003257B60, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialGlowmap@@` -`class BSLightingShaderMaterialParallax`: VTable [0x0000000003257C08, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialParallax@@` -`class BSLightingShaderMaterialParallaxOcc`: VTable [0x0000000003257CB0, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialParallaxOcc@@` -`class BSLightingShaderMaterialFacegen`: VTable [0x0000000003257D58, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialFacegen@@` -`class BSLightingShaderMaterialFacegenTint`: VTable [0x0000000003257E00, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialFacegenTint@@` -`class BSLightingShaderMaterialHairTint`: VTable [0x0000000003257EA8, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialHairTint@@` -`class BSLightingShaderMaterialLandscape`: VTable [0x0000000003257F50, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialLandscape@@` -`class BSLightingShaderMaterialLODLandscape`: VTable [0x0000000003257FF8, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialLODLandscape@@` -`class BSLightingShaderMaterialSnow`: VTable [0x00000000032580A0, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialSnow@@` -`class BSLightingShaderMaterialMultiLayerParallax`: VTable [0x0000000003258148, 0x0000000000000000 offset, 16 functions] `.?AVBSLightingShaderMaterialMultiLayerParallax@@` -`class BSLeafAnimNode`: VTable [0x0000000003258B50, 0x0000000000000000 offset, 66 functions] `.?AVBSLeafAnimNode@@` -`class BSTreeNode`: VTable [0x0000000003259238, 0x0000000000000000 offset, 66 functions] `.?AVBSTreeNode@@` -`class ImageSpaceEffectParam`: VTable [0x0000000003259748, 0x0000000000000000 offset, 1 functions] `.?AVImageSpaceEffectParam@@` -`class NiTArray,class NiTNewInterface > >`: VTable [0x0000000003259760, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@V?$NiPointer@VNiTexture@@@@V?$NiTNewInterface@V?$NiPointer@VNiTexture@@@@@@@@` -`class NiTObjectArray >`: VTable [0x0000000003259778, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTObjectArray@V?$NiPointer@VNiTexture@@@@@@` -`class NiTArray >`: VTable [0x0000000003259790, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@W4TextureFilterMode@BSGraphics@@V?$NiTMallocInterface@W4TextureFilterMode@BSGraphics@@@@@@` -`class NiTPrimitiveArray`: VTable [0x00000000032597A8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@W4TextureFilterMode@BSGraphics@@@@` -`class ImageSpaceShaderParam`: VTable [0x00000000032597C0, 0x0000000000000000 offset, 1 functions] `.?AVImageSpaceShaderParam@@` -`class NiTArray >`: VTable [0x000000000325A0A0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@_NV?$NiTMallocInterface@_N@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000325A0B8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@_N@@` -`class ImageSpaceEffectOption`: VTable [0x000000000325A0D0, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectOption@@` -`class ImageSpaceEffectDepthOfField`: VTable [0x000000000325A148, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectDepthOfField@@` -`class BSParticleShaderProperty`: VTable [0x000000000325C3B0, 0x0000000000000000 offset, 65 functions] `.?AVBSParticleShaderProperty@@` -`class BSSkyShader`: VTable [0x000000000325C7E8, 0x0000000000000000 offset, 12 functions] `.?AVBSSkyShader@@` -`class BSSkyShader`: VTable [0x000000000325C868, 0x0000000000000010 offset, 2 functions] `.?AVBSSkyShader@@` -`class BSSkyShader`: VTable [0x000000000325C888, 0x0000000000000018 offset, 1 functions] `.?AVBSSkyShader@@` -`class BSSkyShaderProperty`: VTable [0x000000000325CB40, 0x0000000000000000 offset, 65 functions] `.?AVBSSkyShaderProperty@@` -`class NiTArray >`: VTable [0x000000000325D238, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVImageSpaceEffectParam@@V?$NiTMallocInterface@PEAVImageSpaceEffectParam@@@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000325D250, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVImageSpaceEffectParam@@@@` -`class NiTArray >`: VTable [0x000000000325D268, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVImageSpaceTexture@@V?$NiTMallocInterface@PEAVImageSpaceTexture@@@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000325D280, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVImageSpaceTexture@@@@` -`class NiTArray >`: VTable [0x000000000325D298, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@PEAVEffectInput@ImageSpaceEffect@@V?$NiTMallocInterface@PEAVEffectInput@ImageSpaceEffect@@@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000325D2B0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@PEAVEffectInput@ImageSpaceEffect@@@@` -`class NiTArray >`: VTable [0x000000000325D2C8, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTArray@HV?$NiTMallocInterface@H@@@@` -`class NiTPrimitiveArray`: VTable [0x000000000325D2E0, 0x0000000000000000 offset, 1 functions] `.?AV?$NiTPrimitiveArray@H@@` -`class ImageSpaceEffect`: VTable [0x000000000325D2F8, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffect@@` -`class BSEffectShader`: VTable [0x000000000325D6C0, 0x0000000000000000 offset, 12 functions] `.?AVBSEffectShader@@` -`class BSEffectShader`: VTable [0x000000000325D740, 0x0000000000000010 offset, 2 functions] `.?AVBSEffectShader@@` -`class BSEffectShader`: VTable [0x000000000325D760, 0x0000000000000018 offset, 1 functions] `.?AVBSEffectShader@@` -`class BSDistantTreeShaderProperty`: VTable [0x000000000325D9B0, 0x0000000000000000 offset, 65 functions] `.?AVBSDistantTreeShaderProperty@@` -`class BSDistantTreeShader`: VTable [0x000000000325DC90, 0x0000000000000000 offset, 12 functions] `.?AVBSDistantTreeShader@@` -`class BSDistantTreeShader`: VTable [0x000000000325DD10, 0x0000000000000010 offset, 2 functions] `.?AVBSDistantTreeShader@@` -`class BSDistantTreeShader`: VTable [0x000000000325DD30, 0x0000000000000018 offset, 1 functions] `.?AVBSDistantTreeShader@@` -`class BSCubeMapCamera`: VTable [0x000000000325DF80, 0x0000000000000000 offset, 56 functions] `.?AVBSCubeMapCamera@@` -`class BSWaterShaderMaterial`: VTable [0x000000000325E280, 0x0000000000000000 offset, 9 functions] `.?AVBSWaterShaderMaterial@@` -`class BSWaterShader`: VTable [0x000000000325E630, 0x0000000000000000 offset, 12 functions] `.?AVBSWaterShader@@` -`class BSWaterShader`: VTable [0x000000000325E6B0, 0x0000000000000010 offset, 2 functions] `.?AVBSWaterShader@@` -`class BSWaterShader`: VTable [0x000000000325E6D0, 0x0000000000000018 offset, 1 functions] `.?AVBSWaterShader@@` -`class NiThreadProcedure`: VTable [0x000000000325E800, 0x0000000000000000 offset, 2 functions] `.?AVNiThreadProcedure@@` -`class NiMemStream`: VTable [0x000000000325E8B0, 0x0000000000000000 offset, 6 functions] `.?AVNiMemStream@@` -`class BSOrderedNode`: VTable [0x000000000325EDB0, 0x0000000000000000 offset, 64 functions] `.?AVBSOrderedNode@@` -`class NiBoneMatrixSetterI`: VTable [0x000000000325F2A8, 0x0000000000000000 offset, 2 functions] `.?AVNiBoneMatrixSetterI@@` -`class BSReloadShaderI`: VTable [0x000000000325F2C8, 0x0000000000000000 offset, 1 functions] `.?AVBSReloadShaderI@@` -`class BSShader`: VTable [0x000000000325F2E0, 0x0000000000000000 offset, 12 functions] `.?AVBSShader@@` -`class BSShader`: VTable [0x000000000325F360, 0x0000000000000010 offset, 2 functions] `.?AVBSShader@@` -`class BSShader`: VTable [0x000000000325F380, 0x0000000000000018 offset, 1 functions] `.?AVBSShader@@` -`class BSImagespaceShader`: VTable [0x000000000325F6E8, 0x0000000000000000 offset, 18 functions] `.?AVBSImagespaceShader@@` -`class BSImagespaceShader`: VTable [0x000000000325F7A0, 0x0000000000000010 offset, 2 functions] `.?AVBSImagespaceShader@@` -`class BSImagespaceShader`: VTable [0x000000000325F7C0, 0x0000000000000018 offset, 1 functions] `.?AVBSImagespaceShader@@` -`class BSImagespaceShader`: VTable [0x000000000325F7D8, 0x00000000000000A0 offset, 11 functions] `.?AVBSImagespaceShader@@` -`class BSComputeShader`: VTable [0x000000000325FBC0, 0x0000000000000000 offset, 3 functions] `.?AVBSComputeShader@@` -`class BSComputeShader`: VTable [0x000000000325FBE8, 0x0000000000000010 offset, 1 functions] `.?AVBSComputeShader@@` -`class BSMultiIndexTriShape`: VTable [0x0000000003260168, 0x0000000000000000 offset, 58 functions] `.?AVBSMultiIndexTriShape@@` -`class BSBloodSplatterShader`: VTable [0x0000000003260458, 0x0000000000000000 offset, 12 functions] `.?AVBSBloodSplatterShader@@` -`class BSBloodSplatterShader`: VTable [0x00000000032604D8, 0x0000000000000010 offset, 2 functions] `.?AVBSBloodSplatterShader@@` -`class BSBloodSplatterShader`: VTable [0x00000000032604F8, 0x0000000000000018 offset, 1 functions] `.?AVBSBloodSplatterShader@@` -`class BSParticleShader`: VTable [0x0000000003260730, 0x0000000000000000 offset, 12 functions] `.?AVBSParticleShader@@` -`class BSParticleShader`: VTable [0x00000000032607B0, 0x0000000000000010 offset, 2 functions] `.?AVBSParticleShader@@` -`class BSParticleShader`: VTable [0x00000000032607D0, 0x0000000000000018 offset, 1 functions] `.?AVBSParticleShader@@` -`class BSLightingShaderPropertyFloatController`: VTable [0x0000000003260988, 0x0000000000000000 offset, 64 functions] `.?AVBSLightingShaderPropertyFloatController@@` -`class BSLightingShaderPropertyUShortController`: VTable [0x0000000003260D48, 0x0000000000000000 offset, 64 functions] `.?AVBSLightingShaderPropertyUShortController@@` -`class BSLightingShaderPropertyColorController`: VTable [0x0000000003261120, 0x0000000000000000 offset, 64 functions] `.?AVBSLightingShaderPropertyColorController@@` -`class BSEffectShaderPropertyFloatController`: VTable [0x00000000032614E8, 0x0000000000000000 offset, 64 functions] `.?AVBSEffectShaderPropertyFloatController@@` -`class BSEffectShaderPropertyColorController`: VTable [0x0000000003261878, 0x0000000000000000 offset, 64 functions] `.?AVBSEffectShaderPropertyColorController@@` -`class BSNiAlphaPropertyTestRefController`: VTable [0x0000000003261C08, 0x0000000000000000 offset, 64 functions] `.?AVBSNiAlphaPropertyTestRefController@@` -`class BSPSysSimpleColorModifier`: VTable [0x0000000003261F90, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysSimpleColorModifier@@` -`class BSPSysLODModifier`: VTable [0x00000000032623E8, 0x0000000000000000 offset, 44 functions] `.?AVBSPSysLODModifier@@` -`class IRendererResourceManager`: VTable [0x00000000032625E0, 0x0000000000000000 offset, 40 functions] `.?AVIRendererResourceManager@@` -`class BSShaderResourceManager`: VTable [0x0000000003262770, 0x0000000000000000 offset, 40 functions] `.?AVBSShaderResourceManager@@` -`class ImageSpaceEffectRefraction`: VTable [0x00000000032634C0, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectRefraction@@` -`class ImageSpaceEffectGetHit`: VTable [0x0000000003263600, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectGetHit@@` -`class ImageSpaceEffectBlur`: VTable [0x00000000032637E8, 0x0000000000000000 offset, 14 functions] `.?AVImageSpaceEffectBlur@@` -`class ImageSpaceEffectFullScreenBlur`: VTable [0x00000000032638E0, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectFullScreenBlur@@` -`class ImageSpaceEffectMap`: VTable [0x00000000032639F8, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectMap@@` -`class ImageSpaceEffectWorldMap`: VTable [0x0000000003263B40, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectWorldMap@@` -`class ImageSpaceEffectRadialBlur`: VTable [0x0000000003263D40, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectRadialBlur@@` -`class ImageSpaceEffectNoise`: VTable [0x0000000003263E38, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectNoise@@` -`class ImageSpaceEffectWaterDisplacement`: VTable [0x0000000003264080, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectWaterDisplacement@@` -`class ImageSpaceEffectVolumetricLighting`: VTable [0x0000000003264308, 0x0000000000000000 offset, 11 functions] `.?AVImageSpaceEffectVolumetricLighting@@` -`class BSParabolicCullingProcess`: VTable [0x0000000003265828, 0x0000000000000000 offset, 29 functions] `.?AVBSParabolicCullingProcess@@` -`class BSShadowFrustumLight`: VTable [0x0000000003265B58, 0x0000000000000000 offset, 17 functions] `.?AVBSShadowFrustumLight@@` -`class BSShadowParabolicLight`: VTable [0x0000000003265DF0, 0x0000000000000000 offset, 17 functions] `.?AVBSShadowParabolicLight@@` -`class BSLODMultiIndexTriShape`: VTable [0x0000000003266198, 0x0000000000000000 offset, 58 functions] `.?AVBSLODMultiIndexTriShape@@` -`class BSMeshLODTriShape`: VTable [0x00000000032673D0, 0x0000000000000000 offset, 58 functions] `.?AVBSMeshLODTriShape@@` -`class BSSubIndexLandTriShape`: VTable [0x0000000003267700, 0x0000000000000000 offset, 58 functions] `.?AVBSSubIndexLandTriShape@@` -`class BSSceneGraph`: VTable [0x0000000003269170, 0x0000000000000000 offset, 67 functions] `.?AVBSSceneGraph@@` -`class BSSystemMonitor::SocketThread`: VTable [0x0000000003269A58, 0x0000000000000000 offset, 3 functions] `.?AVSocketThread@BSSystemMonitor@@` -`class BSSystemMonitor::MemOpsThread`: VTable [0x0000000003269A80, 0x0000000000000000 offset, 3 functions] `.?AVMemOpsThread@BSSystemMonitor@@` -`class `anonymous namespace'::MemoryBlockSender`: VTable [0x0000000003269AA8, 0x0000000000000000 offset, 6 functions] `.?AVMemoryBlockSender@?A0x28eb2bfd@@` -`class BSGameDataSystemUtility`: VTable [0x000000000326A000, 0x0000000000000000 offset, 6 functions] `.?AVBSGameDataSystemUtility@@` -`class CCallback`: VTable [0x000000000326A078, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallback@VBSWin32SystemUtility@@UGameOverlayActivated_t@@$0A@@@` -`class CCallResult`: VTable [0x000000000326A0A0, 0x0000000000000000 offset, 3 functions] `.?AV?$CCallResult@VBSWin32SystemUtility@@UEncryptedAppTicketResponse_t@@@@` -`class BSTEventSink`: VTable [0x000000000326A158, 0x0000000000000000 offset, 2 functions] `.?AV?$BSTEventSink@UBSGamepadEvent@@@@` -`class BSSystemUtility`: VTable [0x000000000326A178, 0x0000000000000000 offset, 18 functions] `.?AVBSSystemUtility@@` -`class BSWin32SaveDataSystemUtility`: VTable [0x000000000326A2E8, 0x0000000000000000 offset, 18 functions] `.?AVBSWin32SaveDataSystemUtility@@` -`class BSWin32SystemUtility`: VTable [0x000000000326A3A0, 0x0000000000000000 offset, 18 functions] `.?AVBSWin32SystemUtility@@` -`class BSCacheDriveSystemUtility`: VTable [0x000000000326A488, 0x0000000000000000 offset, 4 functions] `.?AVBSCacheDriveSystemUtility@@` -`class BSSysInfoSystemUtility`: VTable [0x000000000326A610, 0x0000000000000000 offset, 3 functions] `.?AVBSSysInfoSystemUtility@@` -`class BSSystemUtilitiesStrings`: VTable [0x000000000326A6C8, 0x0000000000000000 offset, 3 functions] `.?AVBSSystemUtilitiesStrings@@` -`class BSWin32GameDataSystemUtility`: VTable [0x000000000326A6F0, 0x0000000000000000 offset, 6 functions] `.?AVBSWin32GameDataSystemUtility@@` -`class BSSaveDataSystemUtility::Entry`: VTable [0x000000000326A858, 0x0000000000000000 offset, 1 functions] `.?AVEntry@BSSaveDataSystemUtility@@` -`class BSSaveDataSystemUtility`: VTable [0x000000000326A870, 0x0000000000000000 offset, 18 functions] `.?AVBSSaveDataSystemUtility@@` -`class BSSaveDataSystemUtilityFile`: VTable [0x000000000326ACB8, 0x0000000000000000 offset, 22 functions] `.?AVBSSaveDataSystemUtilityFile@@` -`class `anonymous namespace'::Win32FileType`: VTable [0x000000000326AD98, 0x0000000000000000 offset, 22 functions] `.?AVWin32FileType@?A0xd443bc95@@` -`class BSDiscBootSystemUtility`: VTable [0x000000000326AF50, 0x0000000000000000 offset, 3 functions] `.?AVBSDiscBootSystemUtility@@` -`class type_info`: VTable [0x000000000326BBC0, 0x0000000000000000 offset, 1 functions] `.?AVtype_info@@` -`class BSSocketServer`: VTable [0x000000000326C478, 0x0000000000000000 offset, 4 functions] `.?AVBSSocketServer@@`