blob: 484d8dff5f89a51a61c0b1bae5dcff48e3576f9a (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef ENERGYWAVE_H
#define ENERGYWAVE_H
#ifdef _WIN32
#pragma once
#endif
#include "basecombatweapon.h"
#include "energy_wave.h"
//-----------------------------------------------------------------------------
// Purpose: Shield
//-----------------------------------------------------------------------------
class CEnergyWave : public CBaseEntity
{
DECLARE_DATADESC();
public:
DECLARE_CLASS( CEnergyWave, CBaseEntity );
DECLARE_SERVERCLASS();
public:
void Spawn( void );
void Precache( void );
public:
static CEnergyWave* Create( CBaseEntity *pentOwner );
};
#endif //ENERGYWAVE_H
|