21 lines
392 B
C++
21 lines
392 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "TP_VehicleAdvWheelRear.h"
|
|
#include "TP_VehicleAdvSportsWheelRear.generated.h"
|
|
|
|
/**
|
|
* Rear wheel definition for Sports Car.
|
|
*/
|
|
UCLASS()
|
|
class LUCKYROBOTS_API UTP_VehicleAdvSportsWheelRear : public UTP_VehicleAdvWheelRear
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
UTP_VehicleAdvSportsWheelRear();
|
|
};
|