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.
43 lines
755 B
43 lines
755 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
//=============================================================================// |
|
|
|
#ifndef TF_OBJ_BARBED_WIRE_H |
|
#define TF_OBJ_BARBED_WIRE_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
|
|
#include "tf_obj.h" |
|
|
|
|
|
class CObjectBarbedWire : public CBaseObject |
|
{ |
|
public: |
|
DECLARE_CLASS( CObjectBarbedWire, CBaseObject ); |
|
DECLARE_SERVERCLASS(); |
|
|
|
|
|
CObjectBarbedWire(); |
|
|
|
|
|
void BarbedWireThink(); |
|
|
|
virtual void Precache(); |
|
virtual void Spawn(); |
|
|
|
virtual void StartPlacement( CBaseTFPlayer *pPlayer ); |
|
|
|
virtual bool PreStartBuilding(); |
|
virtual void FinishedBuilding(); |
|
|
|
private: |
|
CNetworkHandle( CObjectBarbedWire, m_hConnectedTo ); |
|
|
|
}; |
|
|
|
|
|
#endif // TF_OBJ_BARBED_WIRE_H
|
|
|