2025-05-07 21:38:27 +01:00
|
|
|
// 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"
|
2025-05-07 21:38:27 +01:00
|
|
|
#include "ModeInputTextBox.generated.h"
|
|
|
|
|
|
|
|
/**
|
2025-05-09 16:02:07 +01:00
|
|
|
*
|
2025-05-07 21:38:27 +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()
|
|
|
|
|
|
|
|
void HandleOnTextChanged(FText const & inText) override;
|
2025-05-07 21:38:27 +01:00
|
|
|
};
|