mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 02:27:43 +00:00
ANCS stubs and initial readers
This commit is contained in:
23
Runtime/Character/CMetaTransMetaAnim.hpp
Normal file
23
Runtime/Character/CMetaTransMetaAnim.hpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef __PSHAG_CMETATRANSMETAANIM_HPP__
|
||||
#define __PSHAG_CMETATRANSMETAANIM_HPP__
|
||||
|
||||
#include "IMetaTrans.hpp"
|
||||
#include "IOStreams.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CMetaTransMetaAnim : public IMetaTrans
|
||||
{
|
||||
public:
|
||||
CMetaTransMetaAnim(CInputStream& in);
|
||||
EMetaTransType GetType() const {return EMetaTransType::MetaAnim;}
|
||||
|
||||
std::shared_ptr<CAnimTreeNode> VGetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
|
||||
const std::weak_ptr<CAnimTreeNode>& b,
|
||||
const CAnimSysContext& animSys) const;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __PSHAG_CMETATRANSMETAANIM_HPP__
|
||||
Reference in New Issue
Block a user