20 lines
391 B
C++
20 lines
391 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "LuckyrobotsWheelFront.h"
|
|
#include "LuckyrobotsOffroadWheelFront.generated.h"
|
|
|
|
/**
|
|
* Front wheel definition for Offroad Car.
|
|
*/
|
|
UCLASS()
|
|
class LUCKYROBOTS_API ULuckyrobotsOffroadWheelFront : public ULuckyrobotsWheelFront
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
ULuckyrobotsOffroadWheelFront();
|
|
};
|