mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-28 04:03:33 +00:00
13 lines
284 B
C++
13 lines
284 B
C++
#include "CardPackOffer.h"
|
|
|
|
FCardPackOffer::FCardPackOffer() {
|
|
this->MtxPrice = 0;
|
|
this->SaleType = ECatalogSaleType::NotOnSale;
|
|
this->Price = 0;
|
|
this->RegularPrice = 0;
|
|
this->CurrencyType = NULL;
|
|
this->QuantityRemaining = 0;
|
|
this->bTimedOffer = false;
|
|
}
|
|
|