mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 21:47:42 +00:00
more classes added
This commit is contained in:
21
Runtime/Character/CAnimationDatabaseGame.hpp
Normal file
21
Runtime/Character/CAnimationDatabaseGame.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#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__
|
||||
Reference in New Issue
Block a user