mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
22 lines
536 B
C++
22 lines
536 B
C++
#ifndef _SLDRTWEAKPLAYER_SCANVISOR
|
|
#define _SLDRTWEAKPLAYER_SCANVISOR
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
struct SLdrTweakPlayer_ScanVisor {
|
|
SLdrTweakPlayer_ScanVisor();
|
|
~SLdrTweakPlayer_ScanVisor();
|
|
|
|
float scanDistance;
|
|
bool scanRetention;
|
|
bool scanFreezesGame;
|
|
bool scanLineOfSight;
|
|
float scanMaxTargetDistance;
|
|
float scanMaxLockDistance;
|
|
float scanCameraSpeed;
|
|
};
|
|
|
|
void LoadTypedefSLdrTweakPlayer_ScanVisor(SLdrTweakPlayer_ScanVisor&, CInputStream&);
|
|
|
|
#endif // _SLDRTWEAKPLAYER_SCANVISOR
|