Add CScriptPickupGenerator

Former-commit-id: c598ab7439
This commit is contained in:
Henrique Gemignani Passos Lima
2022-11-29 19:17:12 +02:00
parent 260deba25d
commit e9018b7912
8 changed files with 273 additions and 23 deletions

View File

@@ -0,0 +1,23 @@
#ifndef _CWALLCRAWLERSWARM
#define _CWALLCRAWLERSWARM
#include "MetroidPrime/CActor.hpp"
class CWallCrawlerSwarm : public CActor {
public:
class CBoid {};
CVector3f GetLastKilledOffset() const { return x130_lastKilledOffset; }
private:
CAABox xe8_aabox;
int x100_thinkCounter;
float x104_occludedTimer;
rstl::vector< CBoid > x108_boids;
CVector3f x118_boundingBoxExtent;
mutable CVector3f x124_lastOrbitPosition;
CVector3f x130_lastKilledOffset;
// TODO
};
#endif // _CWALLCRAWLERSWARM