2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 15:11:22 +00:00
metaforce/Runtime/World/CScriptRipple.hpp
Lioncash 36d04456dd General: Normalize RuntimeCommonB include paths
Finishes the normalizing of all of includes within the RuntimeCommonB target's headers.
2019-09-23 17:22:37 -04:00

22 lines
517 B
C++

#pragma once
#include <string_view>
#include "Runtime/World/CEntity.hpp"
#include <zeus/CVector3f.hpp>
namespace urde {
class CScriptRipple : public CEntity {
float x34_magnitude;
zeus::CVector3f x38_center;
public:
CScriptRipple(TUniqueId, std::string_view, const CEntityInfo&, const zeus::CVector3f&, bool, float);
void Accept(IVisitor&) override;
void Think(float, CStateManager&) override {}
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&) override;
};
} // namespace urde