mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
19 lines
478 B
C++
19 lines
478 B
C++
#ifndef _SLDRDYNAMICLIGHTSPOTLIGHT
|
|
#define _SLDRDYNAMICLIGHTSPOTLIGHT
|
|
|
|
#include "Kyoto/Math/CMayaSpline.hpp"
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
struct SLdrDynamicLightSpotlight {
|
|
SLdrDynamicLightSpotlight();
|
|
~SLdrDynamicLightSpotlight();
|
|
|
|
SLdrSpline spotlightAngle;
|
|
float spotlightAngleDuration;
|
|
bool spotlightAngleLoops;
|
|
};
|
|
|
|
void LoadTypedefSLdrDynamicLightSpotlight(SLdrDynamicLightSpotlight&, CInputStream&);
|
|
|
|
#endif // _SLDRDYNAMICLIGHTSPOTLIGHT
|