prime/include/MetroidPrime/Player/CPlayerGun.hpp

19 lines
298 B
C++
Raw Normal View History

2022-10-05 18:05:56 +00:00
#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