source-engine-2018-hl2_src/game/client/tf2/c_vehicle_teleport_station.h
FluorescentCIAAfricanAmerican 3bf9df6b27 1
2020-04-22 12:56:21 -04:00

34 lines
848 B
C++

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