mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
27 lines
670 B
C++
27 lines
670 B
C++
#ifndef _SLDRTWEAKPLAYERGUN_MISC
|
|
#define _SLDRTWEAKPLAYERGUN_MISC
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
struct SLdrTweakPlayerGun_Misc {
|
|
SLdrTweakPlayerGun_Misc();
|
|
~SLdrTweakPlayerGun_Misc();
|
|
|
|
float upLookAngle;
|
|
float downLookAngle;
|
|
float verticalSpread;
|
|
float horizontalSpread;
|
|
float highVerticalSpread;
|
|
float highHorizontalSpread;
|
|
float lowVerticalSpread;
|
|
float lowHorizontalSpread;
|
|
float aimVerticalSpeed;
|
|
float aimHorizontalSpeed;
|
|
float hologramDisplayTime;
|
|
float gunTransformTime;
|
|
};
|
|
|
|
void LoadTypedefSLdrTweakPlayerGun_Misc(SLdrTweakPlayerGun_Misc&, CInputStream&);
|
|
|
|
#endif // _SLDRTWEAKPLAYERGUN_MISC
|