metaforce/Runtime/Character/CTransitionManager.hpp

24 lines
576 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-04-13 06:07:23 +00:00
#include <memory>
#include "Runtime/CToken.hpp"
#include "Runtime/Character/CAnimSysContext.hpp"
2018-12-08 05:30:43 +00:00
namespace urde {
class CAnimTreeNode;
2016-04-13 06:07:23 +00:00
class CRandom16;
class CSimplePool;
class CTransitionDatabaseGame;
2018-12-08 05:30:43 +00:00
class CTransitionManager {
CAnimSysContext x0_animCtx;
2016-04-13 06:07:23 +00:00
public:
2018-12-08 05:30:43 +00:00
CTransitionManager(const CAnimSysContext& sysCtx) : x0_animCtx(sysCtx) {}
std::shared_ptr<CAnimTreeNode> GetTransitionTree(const std::shared_ptr<CAnimTreeNode>& a,
const std::shared_ptr<CAnimTreeNode>& b) const;
};
2018-12-08 05:30:43 +00:00
} // namespace urde