metaforce/Runtime/World/CGameLight.hpp

25 lines
599 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
#include "CActor.hpp"
2018-12-08 05:30:43 +00:00
namespace urde {
class CGameLight : public CActor {
TUniqueId xe8_parentId;
CLight xec_light;
u32 x13c_lightId;
u32 x140_priority;
float x144_lifeTime;
public:
2018-12-08 05:30:43 +00:00
CGameLight(TUniqueId, TAreaId, bool, std::string_view, const zeus::CTransform&, TUniqueId, const CLight&,
u32 sourceId, u32, float);
2018-12-08 05:30:43 +00:00
void Accept(IVisitor& visitor);
void Think(float, CStateManager&);
void SetLightPriorityAndId();
void SetLight(const CLight&);
CLight GetLight() const;
TUniqueId GetParentId() const { return xe8_parentId; }
};
2018-12-08 05:30:43 +00:00
} // namespace urde