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