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