mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-10 18:27:41 +00:00
ANCS stubs and initial readers
This commit is contained in:
@@ -5,9 +5,25 @@
|
||||
|
||||
namespace urde
|
||||
{
|
||||
class CAnimTreeNode;
|
||||
class CAnimSysContext;
|
||||
|
||||
enum class EMetaTransType
|
||||
{
|
||||
MetaAnim,
|
||||
Trans,
|
||||
PhaseTrans,
|
||||
Snap,
|
||||
};
|
||||
|
||||
class IMetaTrans
|
||||
{
|
||||
public:
|
||||
virtual ~IMetaTrans() = default;
|
||||
virtual std::shared_ptr<CAnimTreeNode> VGetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
|
||||
const std::weak_ptr<CAnimTreeNode>& b,
|
||||
const CAnimSysContext& animSys) const=0;
|
||||
virtual EMetaTransType GetType() const=0;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user