metaforce/Runtime/Character/CAnimation.hpp

20 lines
393 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-04-10 21:22:59 +00:00
#include "IOStreams.hpp"
#include "CMetaAnimFactory.hpp"
2018-12-08 05:30:43 +00:00
namespace urde {
2016-04-10 21:22:59 +00:00
class IMetaAnim;
2018-12-08 05:30:43 +00:00
class CAnimation {
std::string x0_name;
std::shared_ptr<IMetaAnim> x10_anim;
2016-04-10 21:22:59 +00:00
public:
2018-12-08 05:30:43 +00:00
CAnimation(CInputStream& in);
const std::shared_ptr<IMetaAnim>& GetMetaAnim() const { return x10_anim; }
std::string_view GetMetaAnimName() const { return x0_name; }
2016-04-10 21:22:59 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace urde