2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-06 23:13:27 +00:00
metaforce/Runtime/Character/CAnimation.hpp
2016-04-10 11:22:59 -10:00

22 lines
329 B
C++

#ifndef __PSHAG_CANIMATION_HPP__
#define __PSHAG_CANIMATION_HPP__
#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);
};
}
#endif // __PSHAG_CANIMATION_HPP__