2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 07:51:20 +00:00
metaforce/Runtime/Character/CParticlePOINode.hpp
Lioncash a633b8e8fd General: Normalize RuntimeCommon include paths
Performs the same normalizing done to the RuntimeCommonB target, now all
of the runtime headers have normalized include paths.
2019-09-28 04:14:29 -04:00

21 lines
488 B
C++

#pragma once
#include "Runtime/Character/CParticleData.hpp"
#include "Runtime/Character/CPOINode.hpp"
namespace urde {
class IAnimSourceInfo;
class CParticlePOINode : public CPOINode {
CParticleData x38_data;
public:
CParticlePOINode();
CParticlePOINode(CInputStream& in);
const CParticleData& GetParticleData() const { return x38_data; }
static CParticlePOINode CopyNodeMinusStartTime(const CParticlePOINode& node, const CCharAnimTime& startTime);
};
} // namespace urde