2016-04-13 06:07:23 +00:00
|
|
|
#ifndef __URDE_CHALFTRANSITION_HPP__
|
|
|
|
#define __URDE_CHALFTRANSITION_HPP__
|
2016-04-10 21:22:59 +00:00
|
|
|
|
|
|
|
#include "IOStreams.hpp"
|
|
|
|
#include "IMetaTrans.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
|
|
|
class CHalfTransition
|
|
|
|
{
|
|
|
|
u32 x0_id;
|
|
|
|
std::shared_ptr<IMetaTrans> x4_trans;
|
|
|
|
public:
|
|
|
|
CHalfTransition(CInputStream& in);
|
2016-04-13 06:07:23 +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
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-04-13 06:07:23 +00:00
|
|
|
#endif // __URDE_CHALFTRANSITION_HPP__
|