mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
17 lines
339 B
C++
17 lines
339 B
C++
#ifndef _SLDRVISORPARAMETERS
|
|
#define _SLDRVISORPARAMETERS
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
struct SLdrVisorParameters {
|
|
SLdrVisorParameters();
|
|
~SLdrVisorParameters();
|
|
|
|
bool scanThrough;
|
|
int visorFlags;
|
|
};
|
|
|
|
void LoadTypedefSLdrVisorParameters(SLdrVisorParameters&, CInputStream&);
|
|
|
|
#endif // _SLDRVISORPARAMETERS
|