12 lines
260 B
C++
Executable file
12 lines
260 B
C++
Executable file
#include "ChallengeInfo.h"
|
|
|
|
FChallengeInfo::FChallengeInfo() {
|
|
this->Icon = NULL;
|
|
this->IconOutlined = NULL;
|
|
this->CurrentWins = 0;
|
|
this->NumberOfWins = 0;
|
|
this->XPCompleteGain = 0;
|
|
this->TokenGain = 0;
|
|
this->bIsSpecial = false;
|
|
}
|
|
|