hng
This commit is contained in:
@ -18,7 +18,7 @@ BreakBeforeBinaryOperators: NonAssignment
|
||||
BreakConstructorInitializers: BeforeComma
|
||||
InsertNewlineAtEOF: true
|
||||
KeepEmptyLinesAtEOF: true
|
||||
KeepEmptyLinesAtTheStartOfBlocks: false
|
||||
KeepEmptyLinesAtTheStartOfBlocks: true
|
||||
PackConstructorInitializers: Never
|
||||
PointerAlignment: Middle
|
||||
QualifierAlignment: Right
|
||||
|
@ -11,6 +11,7 @@
|
||||
*/
|
||||
UCLASS()
|
||||
class MYPROJECT_API UMagicFloatInput : public UEditableTextBox {
|
||||
|
||||
GENERATED_BODY()
|
||||
|
||||
void HandleOnTextCommitted(
|
||||
|
@ -11,6 +11,7 @@
|
||||
*/
|
||||
UCLASS()
|
||||
class MYPROJECT_API UModeInputTextBox : public UEditableTextBox {
|
||||
|
||||
GENERATED_BODY()
|
||||
|
||||
void HandleOnTextChanged(FText const & inText) override;
|
||||
|
@ -10,8 +10,7 @@
|
||||
*
|
||||
*/
|
||||
UCLASS()
|
||||
class MYPROJECT_API AMyPlayerState : public APlayerState
|
||||
{
|
||||
GENERATED_BODY()
|
||||
class MYPROJECT_API AMyPlayerState : public APlayerState {
|
||||
|
||||
GENERATED_BODY()
|
||||
};
|
||||
|
@ -4,14 +4,15 @@
|
||||
|
||||
#include "Blueprint/UserWidget.h"
|
||||
#include "CoreMinimal.h"
|
||||
#include "MyUserWidget.generated.h"
|
||||
#include <Components/TextBlock.h>
|
||||
#include "MyUserWidget.generated.h"
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
UCLASS()
|
||||
class MYPROJECT_API UMyUserWidget : public UUserWidget {
|
||||
|
||||
GENERATED_BODY()
|
||||
|
||||
UPROPERTY(meta = (BindWidget))
|
||||
|
Reference in New Issue
Block a user