mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-13 11:45:53 +00:00
19 lines
298 B
C++
19 lines
298 B
C++
#ifndef _CPLAYERGUN_HPP
|
|
#define _CPLAYERGUN_HPP
|
|
|
|
class CPlayerGun {
|
|
static float skTractorBeamFactor;
|
|
|
|
public:
|
|
|
|
bool IsCharging() const;
|
|
float GetChargeBeamFactor() const;
|
|
|
|
static float GetTractorBeamFactor() {
|
|
return skTractorBeamFactor;
|
|
}
|
|
|
|
};
|
|
|
|
#endif // _CPLAYERGUN_HPP
|