CommonLibVR
BSPrecomputedNavmeshInfoPathMap.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/B/BSTArray.h"
4 #include "RE/B/BSTHashMap.h"
5 #include "RE/B/BSTSingleton.h"
6 
7 namespace RE
8 {
9  struct BSNavmeshInfo;
10 
11  class BSPrecomputedNavmeshInfoPathMap : public BSTSingletonExplicit<BSPrecomputedNavmeshInfoPathMap>
12  {
13  public:
14  // members
17  private:
18  KEEP_FOR_RE()
19  };
20  static_assert(sizeof(BSPrecomputedNavmeshInfoPathMap) == 0x48);
21 }
#define KEEP_FOR_RE()
Definition: PCH.h:713
Definition: BSPrecomputedNavmeshInfoPathMap.h:12
BSTHashMap< const BSNavmeshInfo *, std::uint32_t > infoToIndexMap
Definition: BSPrecomputedNavmeshInfoPathMap.h:16
BSTArray< BSTArray< const BSNavmeshInfo * > * > allPaths
Definition: BSPrecomputedNavmeshInfoPathMap.h:15
Definition: BSTArray.h:378
Definition: BSTHashMap.h:21
Definition: AbsorbEffect.h:6
Definition: BSTSingleton.h:11