2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2015-08-22 01:58:41 +00:00
|
|
|
|
2019-09-28 02:53:03 +00:00
|
|
|
#include <memory>
|
|
|
|
#include "Runtime/RetroTypes.hpp"
|
2015-08-22 01:58:41 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2015-08-22 01:58:41 +00:00
|
|
|
class IMetaTrans;
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CTransitionDatabase {
|
2015-08-22 01:58:41 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
virtual const std::shared_ptr<IMetaTrans>& GetMetaTrans(u32, u32) const = 0;
|
2015-08-22 01:58:41 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|