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
848 B

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef C_VEHICLE_TELEPORT_STATION_H
#define C_VEHICLE_TELEPORT_STATION_H
#ifdef _WIN32
#pragma once
#endif
#include "c_basefourwheelvehicle.h"
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
class C_VehicleTeleportStation : public C_BaseTFFourWheelVehicle
{
DECLARE_CLASS( C_VehicleTeleportStation, C_BaseTFFourWheelVehicle );
public:
DECLARE_CLIENTCLASS();
C_VehicleTeleportStation();
private:
C_VehicleTeleportStation( const C_VehicleTeleportStation & ); // not defined, not accessible
};
#endif // C_VEHICLE_TELEPORT_STATION_H