Addressing const issues (#25)

* More const meme fixes

* Fix build
This commit is contained in:
2025-05-23 17:18:44 -07:00
committed by GitHub
parent 3ad420bf9d
commit b3772f6db5
30 changed files with 81 additions and 67 deletions

View File

@@ -5,11 +5,17 @@
class CScriptSpiderBallWaypoint : public CActor {
public:
CScriptSpiderBallWaypoint(TUniqueId, const rstl::string&, const CEntityInfo&,
const CTransform4f& xf, const bool active, uint w1);
void ClearWaypoints();
void BuildWaypointListAndBounds(CStateManager& mgr);
private:
enum ECheckActiveWaypoint { kCAW_Check, kCAW_SkipCheck };
enum ECheckActiveWaypoint {
kCAW_Check,
kCAW_SkipCheck,
};
uint xe8_;
rstl::vector< TUniqueId > xec_waypoints;