mirror of https://github.com/AxioDL/metaforce.git
18 lines
394 B
C++
18 lines
394 B
C++
#ifndef __URDE_CSCRIPTCAMERABLURKEYFRAME__
|
|
#define __URDE_CSCRIPTCAMERABLURKEYFRAME__
|
|
|
|
#include "CEntity.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
class CScriptCameraBlurKeyframe : public CEntity
|
|
{
|
|
public:
|
|
CScriptCameraBlurKeyframe(TUniqueId, const std::string&, const CEntityInfo&, u32, float, u32, float, float, bool);
|
|
|
|
void Accept(IVisitor& visitor);
|
|
};
|
|
}
|
|
|
|
#endif // __URDE_CSCRIPTCAMERABLURKEYFRAME__
|