mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
41 lines
785 B
C++
41 lines
785 B
C++
#include "CMSContext.h"
|
|
|
|
void UCMSContext::MarkPlaylistInformationAsViewed() {
|
|
}
|
|
|
|
void UCMSContext::MarkNewsAsViewed() {
|
|
}
|
|
|
|
bool UCMSContext::IsNewPlaylistInformationAvailable() const {
|
|
return false;
|
|
}
|
|
|
|
bool UCMSContext::IsNewNewsAvailable() const {
|
|
return false;
|
|
}
|
|
|
|
FSubgameScreenSource UCMSContext::GetLatestSubgameInfo() {
|
|
return FSubgameScreenSource{};
|
|
}
|
|
|
|
FKoreanCafeSource UCMSContext::GetLatestPCBInfo() {
|
|
return FKoreanCafeSource{};
|
|
}
|
|
|
|
FAthenaNews UCMSContext::GetLatestNews() {
|
|
return FAthenaNews{};
|
|
}
|
|
|
|
FAthenaNewsEntry UCMSContext::GetLatestEmergencyNotice() {
|
|
return FAthenaNewsEntry{};
|
|
}
|
|
|
|
FCreativeAdSource UCMSContext::GetLatestCreativeAds() {
|
|
return FCreativeAdSource{};
|
|
}
|
|
|
|
UCMSContext::UCMSContext() {
|
|
this->CMSSurveyDataSource = NULL;
|
|
}
|
|
|