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