This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
nekohook/modules/source2013/sdk/game/server/hl2/weapon_citizenpackage.h
2020-08-04 13:13:01 -04:00

30 lines
747 B
C++

//========= 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