mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-16 10:17:02 +00:00
Implement CNewIntroBoss
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "World/CPatterned.hpp"
|
||||
#include "World/CPathFindSearch.hpp"
|
||||
|
||||
namespace urde::MP1
|
||||
{
|
||||
class CFireFlea : public CPatterned
|
||||
{
|
||||
class CDeathCameraEffect : CEntity
|
||||
class CDeathCameraEffect : public CEntity
|
||||
{
|
||||
u32 x34_ = 13;
|
||||
u32 x38_ = 5;
|
||||
@@ -23,11 +24,27 @@ class CFireFlea : public CPatterned
|
||||
void PreThink(float, CStateManager&);
|
||||
void Think(float, CStateManager&);
|
||||
};
|
||||
float x568_ = 1.f;
|
||||
float x56c_;
|
||||
u32 x570_ = 0;
|
||||
float xe64_;
|
||||
zeus::CVector3f xd74_;
|
||||
zeus::CVector3f xd80_;
|
||||
CPathFindSearch xd8c_pathFind;
|
||||
|
||||
static s32 sLightIdx;
|
||||
|
||||
public:
|
||||
DEFINE_PATTERNED(FireFlea)
|
||||
|
||||
CFireFlea(TUniqueId, std::string_view, const CEntityInfo&, const zeus::CTransform&, CModelData&&,
|
||||
const CActorParameters&, const CPatternedInfo&, float);
|
||||
|
||||
void Accept(IVisitor&);
|
||||
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId uid, CStateManager& mgr);
|
||||
void Dead(CStateManager&, EStateMsg msg, float dt);
|
||||
bool Delay(CStateManager&, float arg);
|
||||
bool InPosition(CStateManager& mgr, float dt);
|
||||
CPathFindSearch* GetSearchPath() { return &xd8c_pathFind; }
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user