+ Base class for RobotPawn -> might be replaced by an Actor instead?
14 lines
310 B
C++
14 lines
310 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Robot/PilotComponent/RobotPilotComponent.h"
|
|
#include "RobotPilotMultiRotorDrone.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class LUCKYWORLDV2_API URobotPilotMultiRotorDrone : public URobotPilotComponent
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
URobotPilotMultiRotorDrone();
|
|
};
|