Files
TheracUE/Source/MyProject/Public/ModeInputTextBox.h

28 lines
488 B
C
Raw Permalink Normal View History

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "Components/EditableTextBox.h"
2025-05-09 16:02:07 +01:00
#include "CoreMinimal.h"
#include "ModeInputTextBox.generated.h"
2025-05-10 21:31:54 +01:00
UENUM()
enum class THSModeTarget : uint8 {
Energy,
OpMode
};
/**
2025-05-09 16:02:07 +01:00
*
*/
UCLASS()
2025-05-09 16:02:07 +01:00
class MYPROJECT_API UModeInputTextBox : public UEditableTextBox {
2025-05-09 16:18:28 +01:00
2025-05-09 16:02:07 +01:00
GENERATED_BODY()
2025-05-10 21:31:54 +01:00
UPROPERTY(EditAnywhere)
THSModeTarget myTarget;
2025-05-09 16:02:07 +01:00
void HandleOnTextChanged(FText const & inText) override;
};