mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 21:07:42 +00:00
ANCS stubs and initial readers
This commit is contained in:
25
Runtime/Character/CMetaAnimRandom.hpp
Normal file
25
Runtime/Character/CMetaAnimRandom.hpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#ifndef __PSHAG_CMETAANIMRANDOM_HPP__
|
||||
#define __PSHAG_CMETAANIMRANDOM_HPP__
|
||||
|
||||
#include "IMetaAnim.hpp"
|
||||
#include "IOStreams.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CMetaAnimRandom : public IMetaAnim
|
||||
{
|
||||
public:
|
||||
CMetaAnimRandom(CInputStream& in);
|
||||
EMetaAnimType GetType() const {return EMetaAnimType::Random;}
|
||||
|
||||
std::shared_ptr<CAnimTreeNode> GetAnimationTree(const CAnimSysContext& animSys,
|
||||
const CMetaAnimTreeBuildOrders& orders) const;
|
||||
void GetUniquePrimitives(std::set<CPrimitive>& primsOut) const;
|
||||
std::shared_ptr<CAnimTreeNode> VGetAnimationTree(const CAnimSysContext& animSys,
|
||||
const CMetaAnimTreeBuildOrders& orders) const;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __PSHAG_CMETAANIMRANDOM_HPP__
|
||||
Reference in New Issue
Block a user