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.
19 lines
463 B
19 lines
463 B
//========= Copyright Š 2011-2011, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose: No defuse area ent
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#include "cbase.h"
|
|
#include "triggers.h"
|
|
|
|
class CNoDefuseArea : public CBaseTrigger
|
|
{
|
|
public:
|
|
DECLARE_CLASS( CNoDefuseArea, CBaseTrigger );
|
|
DECLARE_DATADESC();
|
|
|
|
void Spawn();
|
|
void EXPORT NoDefuseAreaTouch( CBaseEntity* pOther );
|
|
};
|