mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
19 lines
413 B
C++
19 lines
413 B
C++
#ifndef _SLDRROTATIONSPLINES
|
|
#define _SLDRROTATIONSPLINES
|
|
|
|
#include "Kyoto/Math/CMayaSpline.hpp"
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
struct SLdrRotationSplines {
|
|
SLdrRotationSplines();
|
|
~SLdrRotationSplines();
|
|
|
|
SLdrSpline xRotation;
|
|
SLdrSpline yRotation;
|
|
SLdrSpline zRotation;
|
|
};
|
|
|
|
void LoadTypedefSLdrRotationSplines(SLdrRotationSplines&, CInputStream&);
|
|
|
|
#endif // _SLDRROTATIONSPLINES
|