mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
28 lines
468 B
C++
28 lines
468 B
C++
#include "StoreToastRequest.h"
|
|
|
|
void UStoreToastRequest::SkipRequest() {
|
|
}
|
|
|
|
bool UStoreToastRequest::ShouldBeginRequest() {
|
|
return false;
|
|
}
|
|
|
|
bool UStoreToastRequest::IsRequestReady() {
|
|
return false;
|
|
}
|
|
|
|
FStoreCallout UStoreToastRequest::GetToast() const {
|
|
return FStoreCallout{};
|
|
}
|
|
|
|
void UStoreToastRequest::CompleteRequest() {
|
|
}
|
|
|
|
void UStoreToastRequest::BeginRequest() {
|
|
}
|
|
|
|
UStoreToastRequest::UStoreToastRequest() {
|
|
this->CatalogMessaging = NULL;
|
|
}
|
|
|