2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 13:51:21 +00:00
metaforce/Runtime/Character/CTransitionDatabase.hpp
2018-12-07 19:30:43 -10:00

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