19 lines
368 B
C
19 lines
368 B
C
![]() |
// Fill out your copyright notice in the Description page of Project Settings.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CoreMinimal.h"
|
||
|
#include "Components/EditableTextBox.h"
|
||
|
#include "ModeInputTextBox.generated.h"
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
UCLASS()
|
||
|
class MYPROJECT_API UModeInputTextBox : public UEditableTextBox
|
||
|
{
|
||
|
GENERATED_BODY()
|
||
|
|
||
|
void HandleOnTextChanged(const FText& inText) override;
|
||
|
};
|