metaforce/Runtime/MP1/CSamusFaceReflection.hpp

29 lines
686 B
C++
Raw Permalink Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2017-02-11 19:17:18 -08:00
#include <memory>
#include "Runtime/Character/CActorLights.hpp"
#include "Runtime/Character/CModelData.hpp"
#include <zeus/CQuaternion.hpp>
#include <zeus/CVector3f.hpp>
2017-02-11 19:17:18 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce::MP1 {
2018-12-07 21:30:43 -08:00
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-11 19:17:18 -08:00
public:
explicit CSamusFaceReflection(CStateManager& stateMgr);
2018-12-07 21:30:43 -08:00
void PreDraw(const CStateManager& stateMgr);
void Draw(const CStateManager& stateMgr);
2018-12-07 21:30:43 -08:00
void Update(float dt, const CStateManager& stateMgr, CRandom16& rand);
2017-02-11 19:17:18 -08:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce::MP1