2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 21:11:22 +00:00
metaforce/Runtime/Character/CAnimationDatabaseGame.hpp
2015-08-21 15:58:41 -10:00

22 lines
544 B
C++

#ifndef __RETRO_CANIMATIONDATABASEGAME_HPP__
#define __RETRO_CANIMATIONDATABASEGAME_HPP__
#include "CAnimationDatabase.hpp"
namespace Retro
{
class CAnimationDatabaseGame : public CAnimationDatabase
{
public:
const IMetaAnim* GetMetaAnim(u32) const;
u32 GetNumMetaAnims() const;
const char* GetMetaAnimName(u32) const;
void GetAllUniquePrimitives(std::vector<CPrimitive>&) const;
void GetUniquePrimitivesFromMetaAnim(std::set<CPrimitive>&, const std::string&) const;
};
}
#endif // __RETRO_CANIMATIONDATABASEGAME_HPP__