mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-06 23:13:27 +00:00
20 lines
350 B
C++
20 lines
350 B
C++
#ifndef __PSHAG_CANIMTREENODE_HPP__
|
|
#define __PSHAG_CANIMTREENODE_HPP__
|
|
|
|
#include "IAnimReader.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CAnimTreeNode : public IAnimReader
|
|
{
|
|
std::string x4_name;
|
|
public:
|
|
CAnimTreeNode(const std::string& name) : x4_name(name) {}
|
|
bool IsCAnimTreeNode() const {return true;}
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __PSHAG_CANIMTREENODE_HPP__
|