12 lines
278 B
C++
Executable file
12 lines
278 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "DroneControllerBase.h"
|
|
#include "StateDrivenDroneController.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class AStateDrivenDroneController : public ADroneControllerBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
AStateDrivenDroneController();
|
|
};
|
|
|