Files
2026-04-22 15:51:07 +02:00

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;
}