mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
17 lines
454 B
C++
17 lines
454 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortUIDataConfiguration.h"
|
|
#include "StateWidgetEntry.h"
|
|
#include "FortMobileUIDataConfiguration.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFortMobileUIDataConfiguration : public UFortUIDataConfiguration {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FStateWidgetEntry ControllerOverrideStateWidgetClasses[14];
|
|
|
|
UFortMobileUIDataConfiguration();
|
|
};
|
|
|