Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
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.
 
 
 
 
 
 

33 lines
916 B

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