2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2017-02-12 03:17:18 +00:00
|
|
|
|
2019-09-28 02:53:03 +00:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "Runtime/Character/CActorLights.hpp"
|
|
|
|
#include "Runtime/Character/CModelData.hpp"
|
|
|
|
|
|
|
|
#include <zeus/CQuaternion.hpp>
|
|
|
|
#include <zeus/CVector3f.hpp>
|
2017-02-12 03:17:18 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde::MP1 {
|
|
|
|
|
|
|
|
class CSamusFaceReflection {
|
|
|
|
CModelData x0_modelData;
|
|
|
|
std::unique_ptr<CActorLights> x4c_lights;
|
|
|
|
zeus::CQuaternion x50_lookRot;
|
|
|
|
zeus::CVector3f x60_lookDir;
|
|
|
|
u32 x6c_ = 0;
|
|
|
|
bool x70_hidden = true;
|
2017-02-12 03:17:18 +00:00
|
|
|
|
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CSamusFaceReflection(CStateManager& stateMgr);
|
|
|
|
void PreDraw(const CStateManager& stateMgr);
|
|
|
|
void Draw(const CStateManager& stateMgr) const;
|
|
|
|
void Update(float dt, const CStateManager& stateMgr, CRandom16& rand);
|
2017-02-12 03:17:18 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde::MP1
|