mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
17 lines
350 B
C++
17 lines
350 B
C++
#ifndef _CTWEAKPLAYER
|
|
#define _CTWEAKPLAYER
|
|
|
|
class CTweakPlayer {
|
|
public:
|
|
float GetLeftAnalogMax();
|
|
float GetRightAnalogMax();
|
|
float GetVariaSuitDamageReduction();
|
|
float GetDarkSuitDamageReduction();
|
|
float GetLightSuitDamageReduction();
|
|
};
|
|
|
|
extern CTweakPlayer* gpTweakPlayerA;
|
|
extern CTweakPlayer* gpTweakPlayerB;
|
|
|
|
#endif // _CTWEAKPLAYER
|