mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-03 04:03:37 +00:00
13 lines
297 B
C++
13 lines
297 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "CommonActivatablePanel.h"
|
|
#include "FortSplashScreenWidget.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UFortSplashScreenWidget : public UCommonActivatablePanel {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortSplashScreenWidget();
|
|
};
|
|
|