mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
391 B
C++
20 lines
391 B
C++
#include "FortCardPackItem.h"
|
|
|
|
bool UFortCardPackItem::IsChoicePack() const {
|
|
return false;
|
|
}
|
|
|
|
void UFortCardPackItem::GetChoices(TArray<UFortAccountItemDefinition*>& Choices) const {
|
|
}
|
|
|
|
void UFortCardPackItem::GetChoiceItems(TArray<UFortItem*>& ChoiceAttributes) const {
|
|
}
|
|
|
|
bool UFortCardPackItem::CanStoreOpen() const {
|
|
return false;
|
|
}
|
|
|
|
UFortCardPackItem::UFortCardPackItem() {
|
|
}
|
|
|