prime/include/MetroidPrime/Player/CPlayerGun.hpp
Henrique Gemignani Passos Lima e2e4fe7f6c Add CScriptPickup and all dependencies
Former-commit-id: 78aebc89601372ba693d9f02576294afd7530e56
2022-10-05 21:06:23 +03:00

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