mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-04 07:35:25 +00:00
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
|
|
//
|
|
// TF Nail Projectile
|
|
//
|
|
//=============================================================================
|
|
#ifndef TF_PROJECTILE_NAIL_H
|
|
#define TF_PROJECTILE_NAIL_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "cbase.h"
|
|
#include "tf_projectile_base.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: Identical to a nail except for model used
|
|
//-----------------------------------------------------------------------------
|
|
class CTFProjectile_Syringe : public CTFBaseProjectile
|
|
{
|
|
DECLARE_CLASS( CTFProjectile_Syringe, CTFBaseProjectile );
|
|
|
|
public:
|
|
|
|
CTFProjectile_Syringe();
|
|
~CTFProjectile_Syringe();
|
|
|
|
// Creation.
|
|
static CTFProjectile_Syringe *Create( const Vector &vecOrigin, const QAngle &vecAngles, CBaseEntity *pOwner = NULL, CBaseEntity *pScorer = NULL, bool bCritical = false );
|
|
|
|
virtual const char *GetProjectileModelName( void );
|
|
virtual float GetGravity( void );
|
|
|
|
static float GetInitialVelocity( void ) { return 1000.0; }
|
|
};
|
|
|
|
#endif //TF_PROJECTILE_NAIL_H
|