mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-29 16:24:31 +00:00
21 lines
561 B
C
21 lines
561 B
C
|
#ifndef C_ASW_EXTINGUISHER_PROJECTILE_H
|
||
|
#define C_ASW_EXTINGUISHER_PROJECTILE_H
|
||
|
|
||
|
#include "c_basecombatcharacter.h"
|
||
|
|
||
|
|
||
|
class C_ASW_Extinguisher_Projectile : public C_BaseCombatCharacter
|
||
|
{
|
||
|
public:
|
||
|
DECLARE_CLASS( C_ASW_Extinguisher_Projectile, C_BaseCombatCharacter );
|
||
|
DECLARE_CLIENTCLASS();
|
||
|
DECLARE_PREDICTABLE();
|
||
|
|
||
|
C_ASW_Extinguisher_Projectile();
|
||
|
virtual ~C_ASW_Extinguisher_Projectile();
|
||
|
|
||
|
private:
|
||
|
C_ASW_Extinguisher_Projectile( const C_ASW_Extinguisher_Projectile & ); // not defined, not accessible
|
||
|
};
|
||
|
|
||
|
#endif /* C_ASW_EXTINGUISHER_PROJECTILE_H */
|