2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 01:51:22 +00:00
metaforce/Runtime/Character/CTransitionDatabase.hpp
2016-04-12 20:07:23 -10:00

19 lines
314 B
C++

#ifndef __URDE_CTRANSITIONDATABASE_HPP__
#define __URDE_CTRANSITIONDATABASE_HPP__
#include "../RetroTypes.hpp"
namespace urde
{
class IMetaTrans;
class CTransitionDatabase
{
public:
virtual const std::shared_ptr<IMetaTrans>& GetMetaTrans(u32, u32) const=0;
};
}
#endif // __URDE_CTRANSITIONDATABASE_HPP__