mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
18 lines
330 B
C++
18 lines
330 B
C++
#ifndef _SLDRSCALESPLINES
|
|
#define _SLDRSCALESPLINES
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
struct SLdrScaleSplines {
|
|
SLdrScaleSplines();
|
|
~SLdrScaleSplines();
|
|
|
|
spline xScale;
|
|
spline yScale;
|
|
spline zScale;
|
|
};
|
|
|
|
void LoadTypedefSLdrScaleSplines(SLdrScaleSplines&, CInputStream&);
|
|
|
|
#endif // _SLDRSCALESPLINES
|