css_enhanced_waf/game/server/hl2/weapon_citizenpackage.h

31 lines
733 B
C
Raw Normal View History

2020-04-22 17:56:21 +01:00
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef WEAPON_CITIZENPACKAGE_H
#define WEAPON_CITIZENPACKAGE_H
#ifdef _WIN32
#pragma once
#endif
#include "basehlcombatweapon.h"
//=============================================================================
//
// Weapon - Citizen Package Class
//
class CWeaponCitizenPackage : public CBaseHLCombatWeapon
{
DECLARE_CLASS( CWeaponCitizenPackage, CBaseHLCombatWeapon );
public:
DECLARE_SERVERCLASS();
DECLARE_DATADESC();
DECLARE_ACTTABLE();
void ItemPostFrame( void );
void Drop( const Vector &vecVelocity );
};
#endif // WEAPON_CITIZENPACKAGE_H