mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-17 06:03:02 +00:00
1
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
//========= 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
|
||||
Reference in New Issue
Block a user