mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
18 lines
363 B
C++
18 lines
363 B
C++
#ifndef _SLDRROTATIONSPLINES
|
|
#define _SLDRROTATIONSPLINES
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
struct SLdrRotationSplines {
|
|
SLdrRotationSplines();
|
|
~SLdrRotationSplines();
|
|
|
|
spline xRotation;
|
|
spline yRotation;
|
|
spline zRotation;
|
|
};
|
|
|
|
void LoadTypedefSLdrRotationSplines(SLdrRotationSplines&, CInputStream&);
|
|
|
|
#endif // _SLDRROTATIONSPLINES
|