CEntity const meme fixes

This commit is contained in:
2025-05-23 13:36:07 -07:00
parent 4231165ff5
commit b9019bbcbe
23 changed files with 95 additions and 83 deletions

View File

@@ -166,8 +166,12 @@ public:
CChainIterator::operator++();
return *this;
}
bool operator!=(const CConstChainIterator& other) const { return !CChainIterator::operator==(other); }
bool operator==(const CConstChainIterator& other) const { return CChainIterator::operator==(other); }
bool operator!=(const CConstChainIterator& other) const {
return !CChainIterator::operator==(other);
}
bool operator==(const CConstChainIterator& other) const {
return CChainIterator::operator==(other);
}
};
enum EOcclusionState { kOS_Occluded, kOS_Visible };
@@ -217,7 +221,7 @@ public:
void SetThermalSpeedAndTarget(float speed, float target);
void SetWeaponWorldLighting(float speed, float target);
void SetAreaAttributes(const CScriptAreaAttributes* areaAttributes);
void SetAreaAttributes(CScriptAreaAttributes* areaAttributes);
bool TryTakingOutOfARAM();
bool StartStreamingMainArea();