mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-03 12:13:40 +00:00
22 lines
511 B
C++
22 lines
511 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "FortHideShowInterface.generated.h"
|
|
|
|
UINTERFACE(Blueprintable)
|
|
class FORTNITEGAME_API UFortHideShowInterface : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class FORTNITEGAME_API IFortHideShowInterface : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
|
|
void DoShowUI();
|
|
|
|
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
|
|
void DoHideUI();
|
|
|
|
};
|
|
|