metaforce/Runtime/World/CScriptCameraShaker.hpp

21 lines
553 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
#include <string_view>
#include "Runtime/Camera/CCameraShakeData.hpp"
#include "Runtime/World/CEntity.hpp"
2018-12-08 05:30:43 +00:00
namespace urde {
class CScriptCameraShaker : public CEntity {
CCameraShakeData x34_shakeData;
public:
2018-12-08 05:30:43 +00:00
CScriptCameraShaker(TUniqueId uid, std::string_view name, const CEntityInfo& info, bool active,
const CCameraShakeData& shakeData);
void Accept(IVisitor& visitor) override;
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr) override;
};
2018-12-08 05:30:43 +00:00
} // namespace urde