mirror of https://github.com/AxioDL/metaforce.git
16 lines
296 B
C++
16 lines
296 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include "Runtime/RetroTypes.hpp"
|
|
|
|
namespace metaforce {
|
|
class IMetaTrans;
|
|
|
|
class CTransitionDatabase {
|
|
public:
|
|
virtual ~CTransitionDatabase() = default;
|
|
virtual const std::shared_ptr<IMetaTrans>& GetMetaTrans(u32, u32) const = 0;
|
|
};
|
|
|
|
} // namespace metaforce
|