21 lines
366 B
C
21 lines
366 B
C
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CoreMinimal.h"
|
||
|
#include "LuckyrobotsPawn.h"
|
||
|
#include "LuckyrobotsSportsCar.generated.h"
|
||
|
|
||
|
/**
|
||
|
* Sports car wheeled vehicle implementation
|
||
|
*/
|
||
|
UCLASS(abstract)
|
||
|
class LUCKYROBOTS_API ALuckyrobotsSportsCar : public ALuckyrobotsPawn
|
||
|
{
|
||
|
GENERATED_BODY()
|
||
|
|
||
|
public:
|
||
|
|
||
|
ALuckyrobotsSportsCar();
|
||
|
};
|