mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-07 06:33:30 +00:00
13 lines
223 B
C++
13 lines
223 B
C++
#ifndef _CANIMTREENODE
|
|
#define _CANIMTREENODE
|
|
|
|
#include "Kyoto/Animation/IAnimReader.hpp"
|
|
|
|
class CAnimTreeNode : public IAnimReader {
|
|
public:
|
|
virtual CCharAnimTime VGetTimeRemaining() const;
|
|
|
|
};
|
|
|
|
#endif // _CANIMTREENODE
|