mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
22 lines
542 B
C++
22 lines
542 B
C++
#ifndef _SLDRTWEAKTARGETING_SCAN
|
|
#define _SLDRTWEAKTARGETING_SCAN
|
|
|
|
#include "Kyoto/Graphics/CColor.hpp"
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
struct SLdrTweakTargeting_Scan {
|
|
SLdrTweakTargeting_Scan();
|
|
~SLdrTweakTargeting_Scan();
|
|
|
|
float scanLockScale;
|
|
float scanLockTransitionTime;
|
|
float scanLockTranslation;
|
|
CColor unknown;
|
|
CColor scanLockLockedColor;
|
|
CColor scanLockUnlockedColor;
|
|
};
|
|
|
|
void LoadTypedefSLdrTweakTargeting_Scan(SLdrTweakTargeting_Scan&, CInputStream&);
|
|
|
|
#endif // _SLDRTWEAKTARGETING_SCAN
|