mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
641 B
C++
20 lines
641 B
C++
#include "FortCollectionBookSlotView.h"
|
|
|
|
void UFortCollectionBookSlotView::OnSlotButtonHovered(UCommonButton* HoveredButton, int32 ButtonIdx) {
|
|
}
|
|
|
|
void UFortCollectionBookSlotView::OnSlotButtonClicked(UCommonButton* ClickedButton, int32 ButtonIdx) {
|
|
}
|
|
|
|
void UFortCollectionBookSlotView::OnSelectedSlotButtonChanged(UCommonButton* SelectedButton, int32 ButtonIdx) {
|
|
}
|
|
|
|
UFortCollectionBookSlotView::UFortCollectionBookSlotView() {
|
|
this->CollectionBookButtonBox = NULL;
|
|
this->CollectionBookSlotButtonGroup = NULL;
|
|
this->AssociatedSection = NULL;
|
|
this->PreviousSelectedButtonIdx = -1;
|
|
this->CurrentSelectedButtonIdx = -1;
|
|
}
|
|
|