mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
30 lines
897 B
C++
30 lines
897 B
C++
#include "FortCollectionBookWidget.h"
|
|
|
|
void UFortCollectionBookWidget::RequestToClose() {
|
|
}
|
|
|
|
void UFortCollectionBookWidget::OnPreviewXPChangeRequest(int32 XPChange) {
|
|
}
|
|
|
|
void UFortCollectionBookWidget::OnCollectionBookSectionCloseRequest() {
|
|
}
|
|
|
|
void UFortCollectionBookWidget::OnCollectionBookSectionClicked_Implementation(const UFortCollectionBookSection* ClickedSection) {
|
|
}
|
|
|
|
void UFortCollectionBookWidget::OnCollectionBookPageSelected_Implementation(const UFortCollectionBookPage* SelectedPage) {
|
|
}
|
|
|
|
void UFortCollectionBookWidget::OnCollectionBookPageClicked_Implementation(const UFortCollectionBookPage* ClickedPage) {
|
|
}
|
|
|
|
UFortCollectionBookWidget::UFortCollectionBookWidget() {
|
|
this->ProgressWidget = NULL;
|
|
this->MainWidgetSwitcher = NULL;
|
|
this->PrimaryPanelWidget = NULL;
|
|
this->SectionPanelWidget = NULL;
|
|
this->PrimaryPanelIdx = -1;
|
|
this->SectionPanelIdx = -1;
|
|
}
|
|
|