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.
 
 
 
 
 
 

55 lines
985 B

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: CTF ChangeClass Zone.
//
//=============================================================================//
#ifndef FUNC_CHANGECLASS_ZONE_H
#define FUNC_CHANGECLASS_ZONE_H
#ifdef _WIN32
#pragma once
#endif
#include "triggers.h"
//=============================================================================
//
// CTF Regenerate Zone class.
//
class CChangeClassZone : public CBaseTrigger
{
public:
DECLARE_CLASS( CChangeClassZone, CBaseTrigger );
CChangeClassZone();
void Spawn( void );
void Precache( void );
void Touch( CBaseEntity *pOther );
void EndTouch( CBaseEntity *pOther );
bool IsDisabled( void );
void SetDisabled( bool bDisabled );
// Input handlers
void InputEnable( inputdata_t &inputdata );
void InputDisable( inputdata_t &inputdata );
void InputToggle( inputdata_t &inputdata );
private:
bool m_bDisabled;
};
#endif // FUNC_CHANGECLASS_ZONE_H