Space Plunder
Loading...
Searching...
No Matches
NotificationInterface.h
Go to the documentation of this file.
1// Fill out your copyright notice in the Description page of Project Settings.
2
3#pragma once
4
5#include "CoreMinimal.h"
7#include "UObject/Interface.h"
8#include "NotificationInterface.generated.h"
9
10// This class does not need to be modified.
11UINTERFACE()
12class UNotificationInterface : public UInterface
13{
14 GENERATED_BODY()
15};
16
20class BASEHELPERS_API INotificationInterface
21{
22 GENERATED_BODY()
23
24 // Add interface functions to this class. This is the class that will be inherited to implement this interface.
25public:
26
27 virtual void SetLifeDuration(const float Value) = 0;
28 virtual void SetNotificationData(const FNotificationData& Data) = 0;
30 // virtual bool GetIsShowing() const = 0;
31
32};
Definition NotificationInterface.h:21
virtual void SetLifeDuration(const float Value)=0
virtual void SetNotificationData(const FNotificationData &Data)=0
virtual FNotificationData GetNotificationData() const =0
Definition NotificationInterface.h:13
Definition RadialWheelData.h:17