mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 19:11:20 +00:00
14 lines
219 B
C++
14 lines
219 B
C++
#pragma once
|
|
|
|
#include "../RetroTypes.hpp"
|
|
|
|
namespace urde {
|
|
class IMetaTrans;
|
|
|
|
class CTransitionDatabase {
|
|
public:
|
|
virtual const std::shared_ptr<IMetaTrans>& GetMetaTrans(u32, u32) const = 0;
|
|
};
|
|
|
|
} // namespace urde
|