mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-10 05:47:43 +00:00
Various ANIM reader imps
This commit is contained in:
33
Runtime/Character/CAnimPOIData.hpp
Normal file
33
Runtime/Character/CAnimPOIData.hpp
Normal file
@@ -0,0 +1,33 @@
|
||||
#ifndef __PSHAG_CANIMPOIDATA_HPP__
|
||||
#define __PSHAG_CANIMPOIDATA_HPP__
|
||||
|
||||
#include "CFactoryMgr.hpp"
|
||||
#include "CBoolPOINode.hpp"
|
||||
#include "CInt32POINode.hpp"
|
||||
#include "CParticlePOINode.hpp"
|
||||
#include "CSoundPOINode.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CAnimPOIData
|
||||
{
|
||||
std::vector<CBoolPOINode> x4_boolNodes;
|
||||
std::vector<CInt32POINode> x14_int32Nodes;
|
||||
std::vector<CParticlePOINode> x24_particleNodes;
|
||||
std::vector<CSoundPOINode> x34_soundNodes;
|
||||
public:
|
||||
CAnimPOIData(CInputStream& in);
|
||||
|
||||
const std::vector<CBoolPOINode>& GetBoolPOIStream() const {return x4_boolNodes;}
|
||||
const std::vector<CInt32POINode>& GetInt32POIStream() const {return x14_int32Nodes;}
|
||||
const std::vector<CParticlePOINode>& GetParticlePOIStream() const {return x24_particleNodes;}
|
||||
const std::vector<CSoundPOINode>& GetSoundPOIStream() const {return x34_soundNodes;}
|
||||
};
|
||||
|
||||
CFactoryFnReturn AnimPOIDataFactory(const SObjectTag& tag, CInputStream& in,
|
||||
const CVParamTransfer& parms);
|
||||
|
||||
}
|
||||
|
||||
#endif // __PSHAG_CANIMPOIDATA_HPP__
|
||||
Reference in New Issue
Block a user