2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 23:51:22 +00:00
metaforce/Runtime/World/CIceImpact.hpp
Lioncash 06789d1860 General: Normalize several headers' include paths
Normalizes the include paths and makes them consistent. Also adds any
missing includes relevant to the interface.
2019-09-22 20:36:33 -04:00

16 lines
428 B
C++

#pragma once
#include "Runtime/World/CEffect.hpp"
namespace urde {
class CIceImpact : public CEffect {
public:
CIceImpact(const TLockedToken<CGenDescription>& particle, TUniqueId uid, TAreaId aid, bool active,
std::string_view name, const zeus::CTransform& xf, u32 flags, const zeus::CVector3f& scale,
const zeus::CColor& color);
void Accept(IVisitor& visitor) override;
};
} // namespace urde