blob: 96025e7b2c80a5310af66b120c951666d0918962 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef DOD_SMOKEGRENADE_GER_H
#define DOD_SMOKEGRENADE_GER_H
#ifdef _WIN32
#pragma once
#endif
#include "dod_smokegrenade.h"
class CDODSmokeGrenadeGER : public CDODSmokeGrenade
{
public:
DECLARE_CLASS( CDODSmokeGrenadeGER, CDODSmokeGrenade );
// Overrides.
public:
CDODSmokeGrenadeGER() {}
virtual void Spawn();
virtual void Precache();
// Grenade stuff.
public:
static CDODSmokeGrenadeGER* Create(
const Vector &position,
const QAngle &angles,
const Vector &velocity,
const AngularImpulse &angVelocity,
CBaseCombatCharacter *pOwner );
virtual DODWeaponID GetEmitterWeaponID() { return WEAPON_SMOKE_GER; }
};
#endif // DOD_SMOKEGRENADE_GER_H
|