You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
916 B
34 lines
916 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose: A stationary sandbag bunker that players can take cover in.
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef TF_OBJ_SANDBAG_BUNKER_H
|
||
|
#define TF_OBJ_SANDBAG_BUNKER_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
// ------------------------------------------------------------------------ //
|
||
|
// Purpose: A stationary sandbag bunker that players can take cover in.
|
||
|
// ------------------------------------------------------------------------ //
|
||
|
class CObjectSandbagBunker : public CBaseObject
|
||
|
{
|
||
|
DECLARE_CLASS( CObjectSandbagBunker, CBaseObject );
|
||
|
|
||
|
public:
|
||
|
DECLARE_SERVERCLASS();
|
||
|
|
||
|
CObjectSandbagBunker( void );
|
||
|
|
||
|
virtual void Spawn( void );
|
||
|
virtual void Precache( void );
|
||
|
virtual void GetControlPanelInfo( int nPanelIndex, const char *&pPanelName );
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // TF_OBJ_TOWER_H
|