mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
28 lines
987 B
C++
28 lines
987 B
C++
#include "FortCollectionBookPrimaryPanel.h"
|
|
|
|
void UFortCollectionBookPrimaryPanel::OnSummonInfoPanelExecuted_Implementation(bool& bPassThrough) {
|
|
}
|
|
|
|
void UFortCollectionBookPrimaryPanel::OnInputMethodChanged(ECommonInputType CurrentInputType) {
|
|
}
|
|
|
|
void UFortCollectionBookPrimaryPanel::OnCollectionBookSectionClicked_Implementation(const UFortCollectionBookSection* ClickedSection) {
|
|
}
|
|
|
|
void UFortCollectionBookPrimaryPanel::OnCollectionBookPageSelected_Implementation(const UFortCollectionBookPage* SelectedPage) {
|
|
}
|
|
|
|
void UFortCollectionBookPrimaryPanel::OnCollectionBookPageClicked_Implementation(const UFortCollectionBookPage* ClickedPage) {
|
|
}
|
|
|
|
void UFortCollectionBookPrimaryPanel::OnBackActionExecuted(bool& bPassThrough) {
|
|
}
|
|
|
|
UFortCollectionBookPrimaryPanel::UFortCollectionBookPrimaryPanel() {
|
|
this->OverviewWidget = NULL;
|
|
this->SectionTileViewWidget = NULL;
|
|
this->CurrentNavTarget = ECollectionBookPrimaryNavTarget::Overview;
|
|
this->LastClickedSection = NULL;
|
|
}
|
|
|