mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 19:23:19 +00:00
28 lines
704 B
C++
28 lines
704 B
C++
#include "FortItemReceivedWidgetBase.h"
|
|
|
|
|
|
void UFortItemReceivedWidgetBase::SetGiftBoxItem(UFortGiftBoxItem* NewGiftBoxItem) {
|
|
}
|
|
|
|
void UFortItemReceivedWidgetBase::SetAlignmentOnSlots(UScrollBox* Widget) {
|
|
}
|
|
|
|
void UFortItemReceivedWidgetBase::SetAlignmentOnSlot(UScrollBox* Widget, int32 Index) {
|
|
}
|
|
|
|
void UFortItemReceivedWidgetBase::OnGiftBoxItemSetInternal(bool bFromSelf) {
|
|
}
|
|
|
|
|
|
UFortItem* UFortItemReceivedWidgetBase::GetTemporaryInstance(const FFortReceivedItemLootInfo& ItemReference) {
|
|
return NULL;
|
|
}
|
|
|
|
UFortItemReceivedWidgetBase::UFortItemReceivedWidgetBase() {
|
|
this->GiftBoxItem = NULL;
|
|
this->HeaderContainer = NULL;
|
|
this->GiftScrollBox = NULL;
|
|
this->ItemCardClass = NULL;
|
|
}
|
|
|