mirror of https://github.com/AxioDL/metaforce.git
29 lines
699 B
C++
29 lines
699 B
C++
#ifndef __URDE_CMETATRANSTRANS_HPP__
|
|
#define __URDE_CMETATRANSTRANS_HPP__
|
|
|
|
#include "IMetaTrans.hpp"
|
|
#include "IOStreams.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CMetaTransTrans : public IMetaTrans
|
|
{
|
|
float x4_;
|
|
u32 x8_;
|
|
bool xc_;
|
|
bool xd_;
|
|
u32 x10_;
|
|
public:
|
|
CMetaTransTrans(CInputStream& in);
|
|
EMetaTransType GetType() const {return EMetaTransType::Trans;}
|
|
|
|
std::shared_ptr<CAnimTreeNode> VGetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
|
|
const std::weak_ptr<CAnimTreeNode>& b,
|
|
const CAnimSysContext& animSys) const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CMETATRANSTRANS_HPP__
|