mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
19 lines
523 B
C++
19 lines
523 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "CommonButton.h"
|
|
#include "FortBangWrapperContentInterface.h"
|
|
#include "FortBangWrapperContentButton.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UFortBangWrapperContentButton : public UCommonButton, public IFortBangWrapperContentInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortBangWrapperContentButton();
|
|
UFUNCTION(BlueprintCallable)
|
|
void FinishTutorialCallout();
|
|
|
|
|
|
// Fix for true pure virtual functions not being implemented
|
|
};
|
|
|