metaforce/Runtime/Character/CTransitionDatabase.hpp

16 lines
296 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2015-08-21 18:58:41 -07:00
#include <memory>
#include "Runtime/RetroTypes.hpp"
2015-08-21 18:58:41 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2015-08-21 18:58:41 -07:00
class IMetaTrans;
2018-12-07 21:30:43 -08:00
class CTransitionDatabase {
2015-08-21 18:58:41 -07:00
public:
virtual ~CTransitionDatabase() = default;
2018-12-07 21:30:43 -08:00
virtual const std::shared_ptr<IMetaTrans>& GetMetaTrans(u32, u32) const = 0;
2015-08-21 18:58:41 -07:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce