2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-04-10 21:22:59 +00:00
|
|
|
|
2019-09-28 02:53:03 +00:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "Runtime/GCNTypes.hpp"
|
|
|
|
#include "Runtime/IOStreams.hpp"
|
|
|
|
#include "Runtime/Character/IMetaTrans.hpp"
|
2016-04-10 21:22:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
|
|
|
|
|
|
|
class CHalfTransition {
|
|
|
|
u32 x0_id;
|
|
|
|
std::shared_ptr<IMetaTrans> x4_trans;
|
2016-04-10 21:22:59 +00:00
|
|
|
|
|
|
|
public:
|
2020-03-31 03:52:22 +00:00
|
|
|
explicit CHalfTransition(CInputStream& in);
|
2018-12-08 05:30:43 +00:00
|
|
|
u32 GetId() const { return x0_id; }
|
|
|
|
const std::shared_ptr<IMetaTrans>& GetMetaTrans() const { return x4_trans; }
|
2016-04-10 21:22:59 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|