mirror of https://github.com/AxioDL/metaforce.git
23 lines
749 B
C++
23 lines
749 B
C++
#pragma once
|
|
|
|
#include "World/CActor.hpp"
|
|
#include "Collision/CCollisionSurface.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
class CAnimationParameters;
|
|
class CSnakeWeedSwarm : public CActor
|
|
{
|
|
public:
|
|
CSnakeWeedSwarm(TUniqueId, bool, std::string_view, const CEntityInfo&, const zeus::CVector3f&, const zeus::CVector3f&,
|
|
const CAnimationParameters&, const CActorParameters&, float, float, float, float, float, float, float,
|
|
float, float, float, float, float, float, float, const CDamageInfo&, float, u32, u32, u32, u32, u32,
|
|
u32, float);
|
|
|
|
void Accept(IVisitor&);
|
|
void ApplyRadiusDamage(const zeus::CVector3f& pos, const CDamageInfo& info,
|
|
CStateManager& stateMgr) {}
|
|
};
|
|
}
|
|
|