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