mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
28 lines
769 B
C++
28 lines
769 B
C++
#include "FortGiftBoxItemDefinition.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
bool UFortGiftBoxItemDefinition::TryLoadPreMessageWidgetClass(TSubclassOf<UUserWidget>& OutWidgetClass) {
|
|
return false;
|
|
}
|
|
|
|
bool UFortGiftBoxItemDefinition::TryLoadHeaderSubWidgetClass(TSubclassOf<UUserWidget>& OutWidgetClass) {
|
|
return false;
|
|
}
|
|
|
|
bool UFortGiftBoxItemDefinition::HasPreMessageWidget() const {
|
|
return false;
|
|
}
|
|
|
|
bool UFortGiftBoxItemDefinition::HasHeaderSubWidget() const {
|
|
return false;
|
|
}
|
|
|
|
UFortGiftBoxItemDefinition::UFortGiftBoxItemDefinition() {
|
|
this->GiftWrapType = EFortGiftWrapType::System;
|
|
this->bReuseExistingBoxIfPossible = false;
|
|
this->RestrictToSubgame = ESubGame::Count;
|
|
this->SortPriority = 0;
|
|
ItemType = EFortItemType::GiftBox;
|
|
}
|
|
|