mirror of https://github.com/PrimeDecomp/prime.git
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
|