10 lines
311 B
C++
Executable file
10 lines
311 B
C++
Executable file
#include "DroneDisplayActionComponent.h"
|
|
#include "Components/TextRenderComponent.h"
|
|
|
|
void UDroneDisplayActionComponent::SetMode(EDroneActions droneAction) {
|
|
}
|
|
|
|
UDroneDisplayActionComponent::UDroneDisplayActionComponent() {
|
|
this->DisplayText = CreateDefaultSubobject<UTextRenderComponent>(TEXT("Text"));
|
|
}
|
|
|