You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
733 B
31 lines
733 B
5 years ago
|
//========= 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
|