2016-04-13 06:07:23 +00:00
|
|
|
#ifndef __URDE_CTRANSITIONDATABASE_HPP__
|
|
|
|
#define __URDE_CTRANSITIONDATABASE_HPP__
|
2015-08-22 01:58:41 +00:00
|
|
|
|
|
|
|
#include "../RetroTypes.hpp"
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
namespace urde
|
2015-08-22 01:58:41 +00:00
|
|
|
{
|
|
|
|
class IMetaTrans;
|
|
|
|
|
|
|
|
class CTransitionDatabase
|
|
|
|
{
|
|
|
|
public:
|
2016-04-13 06:07:23 +00:00
|
|
|
virtual const std::shared_ptr<IMetaTrans>& GetMetaTrans(u32, u32) const=0;
|
2015-08-22 01:58:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-04-13 06:07:23 +00:00
|
|
|
#endif // __URDE_CTRANSITIONDATABASE_HPP__
|