mirror of https://github.com/AxioDL/metaforce.git
23 lines
588 B
C++
23 lines
588 B
C++
|
#ifndef __PSHAG_CMETATRANSSNAP_HPP__
|
||
|
#define __PSHAG_CMETATRANSSNAP_HPP__
|
||
|
|
||
|
#include "IMetaTrans.hpp"
|
||
|
#include "IOStreams.hpp"
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
|
||
|
class CMetaTransSnap : public IMetaTrans
|
||
|
{
|
||
|
public:
|
||
|
EMetaTransType GetType() const {return EMetaTransType::Snap;}
|
||
|
|
||
|
std::shared_ptr<CAnimTreeNode> VGetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
|
||
|
const std::weak_ptr<CAnimTreeNode>& b,
|
||
|
const CAnimSysContext& animSys) const;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __PSHAG_CMETATRANSSNAP_HPP__
|