mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2024-12-02 10:27:03 +00:00
14 lines
234 B
C++
14 lines
234 B
C++
#ifndef _CTWEAKPLAYER
|
|
#define _CTWEAKPLAYER
|
|
|
|
class CTweakPlayer {
|
|
public:
|
|
float GetLeftAnalogMax();
|
|
float GetRightAnalogMax();
|
|
};
|
|
|
|
extern CTweakPlayer* gpTweakPlayerA;
|
|
extern CTweakPlayer* gpTweakPlayerB;
|
|
|
|
#endif // _CTWEAKPLAYER
|