2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 09:11:21 +00:00
metaforce/Runtime/Character/CAnimation.hpp
2018-10-06 17:42:33 -10:00

22 lines
383 B
C++

#pragma once
#include "IOStreams.hpp"
#include "CMetaAnimFactory.hpp"
namespace urde
{
class IMetaAnim;
class CAnimation
{
std::string x0_name;
std::shared_ptr<IMetaAnim> x10_anim;
public:
CAnimation(CInputStream& in);
const std::shared_ptr<IMetaAnim>& GetMetaAnim() const {return x10_anim;}
std::string_view GetMetaAnimName() const { return x0_name; }
};
}