Add CScriptPickup and all dependencies

Former-commit-id: 78aebc8960
This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-05 21:05:56 +03:00
parent c6383170f6
commit e2e4fe7f6c
16 changed files with 343 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
#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