mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
33 lines
715 B
C++
33 lines
715 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;
|
|
}
|
|
|
|
UTexture2D* UFortUINotification::GetImageOverride_Implementation() {
|
|
return NULL;
|
|
}
|
|
|
|
|
|
void UFortUINotification::ClearNotification_Implementation() {
|
|
}
|
|
|
|
UFortUINotification::UFortUINotification() {
|
|
this->bHasAction = false;
|
|
this->NotificationType = EFortNotificationType::Default;
|
|
}
|
|
|