mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
33 lines
700 B
C++
33 lines
700 B
C++
#include "FortUINotification.h"
|
|
|
|
void UFortUINotification::TakeAction() {
|
|
}
|
|
|
|
bool UFortUINotification::ShouldShowNotification() const {
|
|
return false;
|
|
}
|
|
|
|
void UFortUINotification::SetPriority(EFortNotificationPriority InPriority) {
|
|
}
|
|
|
|
void UFortUINotification::NotificationShown_Implementation() {
|
|
}
|
|
|
|
EFortNotificationPriority UFortUINotification::GetPriority() const {
|
|
return EFortNotificationPriority::Vote;
|
|
}
|
|
|
|
TSoftObjectPtr<UObject> UFortUINotification::GetImageOverride() {
|
|
return NULL;
|
|
}
|
|
|
|
|
|
void UFortUINotification::ClearNotification_Implementation() {
|
|
}
|
|
|
|
UFortUINotification::UFortUINotification() {
|
|
bHasAction = false;
|
|
NotificationType = EFortNotificationType::Default;
|
|
}
|
|
|