1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-12 11:42:10 +08:00
hl2sdk/game/server/hl2/weapon_citizenpackage.h

32 lines
768 B
C
Raw Normal View History

//====== Copyright <20> 1996-2005, 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 );
};
2008-09-15 02:50:57 -05:00
#endif // WEAPON_CITIZENPACKAGE_H