metaforce/Runtime/Character/CTransitionManager.hpp

24 lines
625 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-04-12 23:07:23 -07:00
#include <memory>
#include "Runtime/CToken.hpp"
#include "Runtime/Character/CAnimSysContext.hpp"
2020-04-19 18:09:30 -07:00
#include "Runtime/Character/CTransitionDatabaseGame.hpp"
2021-04-10 01:42:06 -07:00
namespace metaforce {
class CAnimTreeNode;
2016-04-12 23:07:23 -07:00
class CRandom16;
class CSimplePool;
2018-12-07 21:30:43 -08:00
class CTransitionManager {
CAnimSysContext x0_animCtx;
2016-04-12 23:07:23 -07:00
public:
explicit CTransitionManager(CAnimSysContext sysCtx) : x0_animCtx(std::move(sysCtx)) {}
2018-12-07 21:30:43 -08:00
std::shared_ptr<CAnimTreeNode> GetTransitionTree(const std::shared_ptr<CAnimTreeNode>& a,
const std::shared_ptr<CAnimTreeNode>& b) const;
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce