19 lines
333 B
C
19 lines
333 B
C
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CoreMinimal.h"
|
||
|
#include "ChaosVehicleWheel.h"
|
||
|
#include "LuckyrobotsWheelFront.generated.h"
|
||
|
|
||
|
/**
|
||
|
* Base front wheel definition.
|
||
|
*/
|
||
|
UCLASS()
|
||
|
class ULuckyrobotsWheelFront : public UChaosVehicleWheel
|
||
|
{
|
||
|
GENERATED_BODY()
|
||
|
|
||
|
public:
|
||
|
ULuckyrobotsWheelFront();
|
||
|
};
|