mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
28 lines
915 B
C++
28 lines
915 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "CommonActivatablePanel.h"
|
|
#include "FortClientEventInterface.h"
|
|
#include "PopulatePrerollOffersCallbackDelegate.h"
|
|
#include "FortStoreRootBase.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UFortStoreRootBase : public UCommonActivatablePanel, public IFortClientEventInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortStoreRootBase();
|
|
UFUNCTION(BlueprintCallable)
|
|
void PopulatePrerollOffers(const FPopulatePrerollOffersCallback& Callback);
|
|
|
|
protected:
|
|
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
|
|
void OnUpdateOtherPlatformMTXMessage(bool HasOtherPlatformCurrency, const FText& CurrencyMessageLocText);
|
|
|
|
public:
|
|
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
|
|
void OnAffiliateUpdated(const FString& AffiliateName);
|
|
|
|
|
|
// Fix for true pure virtual functions not being implemented
|
|
};
|
|
|