2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-21 04:59:11 +00:00

Improve overall Inspect performance & fixes

This commit is contained in:
2021-05-26 21:35:46 -04:00
parent c6a75a242f
commit 5ac2a298f0
7 changed files with 239 additions and 139 deletions

View File

@@ -28,6 +28,7 @@ class IVisitor;
class CEntity {
friend class CStateManager;
friend class CObjectList;
friend class ImGuiConsole;
protected:
TAreaId x4_areaId;
@@ -40,6 +41,10 @@ protected:
bool x30_26_scriptingBlocked : 1 = false;
bool x30_27_inUse : 1;
// Used in ImGuiConsole
bool m_debugSelected = false;
bool m_debugHovered = false;
public:
static const std::vector<SConnection> NullConnectionList;
virtual ~CEntity() = default;