mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
22 lines
486 B
C++
22 lines
486 B
C++
#ifndef _SLDRCAMERASHAKERDATA
|
|
#define _SLDRCAMERASHAKERDATA
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
struct SLdrCameraShakerData {
|
|
SLdrCameraShakerData();
|
|
~SLdrCameraShakerData();
|
|
|
|
int flagsCameraShaker;
|
|
float attenuationDistance;
|
|
spline horizontalMotion;
|
|
spline verticalMotion;
|
|
spline forwardMotion;
|
|
float duration;
|
|
int audioEffect;
|
|
};
|
|
|
|
void LoadTypedefSLdrCameraShakerData(SLdrCameraShakerData&, CInputStream&);
|
|
|
|
#endif // _SLDRCAMERASHAKERDATA
|