20 lines
336 B
C++
20 lines
336 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "ChaosVehicleWheel.h"
|
|
#include "TP_VehicleAdvWheelRear.generated.h"
|
|
|
|
/**
|
|
* Base rear wheel definition.
|
|
*/
|
|
UCLASS()
|
|
class UTP_VehicleAdvWheelRear : public UChaosVehicleWheel
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
UTP_VehicleAdvWheelRear();
|
|
};
|