2016-02-13 09:02:47 +00:00
|
|
|
#ifndef __PSHAG_CANIMATIONDATABASEGAME_HPP__
|
|
|
|
#define __PSHAG_CANIMATIONDATABASEGAME_HPP__
|
2015-08-22 01:58:41 +00:00
|
|
|
|
|
|
|
#include "CAnimationDatabase.hpp"
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
namespace urde
|
2015-08-22 01:58:41 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
#endif // __PSHAG_CANIMATIONDATABASEGAME_HPP__
|