mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-02-02 18:14:26 +00:00
18 lines
343 B
C++
18 lines
343 B
C++
#ifndef UNPREDICTEDWEAPON_H
|
|
#define UNPREDICTEDWEAPON_H
|
|
|
|
#include "weapons.h"
|
|
|
|
class CBasePlayerWeaponU: CBasePlayerWeapon
|
|
{
|
|
public:
|
|
virtual int Save( CSave &save );
|
|
virtual int Restore( CRestore &restore );
|
|
static TYPEDESCRIPTION m_SaveData[];
|
|
BOOL UseDecrement( void );
|
|
float UTIL_WeaponTimeBase();
|
|
};
|
|
|
|
#endif // UNPREDICTEDWEAPON_H
|
|
|