metaforce/Runtime/Character/CMetaTransSnap.hpp

23 lines
585 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CMETATRANSSNAP_HPP__
#define __URDE_CMETATRANSSNAP_HPP__
2016-04-10 21:22:59 +00:00
#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;
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CMETATRANSSNAP_HPP__