mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
17 lines
424 B
C++
17 lines
424 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Engine/DataAsset.h"
|
|
#include "Styling/SlateTypes.h"
|
|
#include "SocialActionButtonStyleDataAsset.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class USocialActionButtonStyleDataAsset : public UDataAsset {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FButtonStyle Style;
|
|
|
|
USocialActionButtonStyleDataAsset();
|
|
};
|
|
|