mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
12 lines
301 B
C++
12 lines
301 B
C++
#include "FortMinigameStatQuery.h"
|
|
|
|
FFortMinigameStatQuery::FFortMinigameStatQuery() {
|
|
this->Stat = NULL;
|
|
this->Scope = EFortMinigameStatScope::Group;
|
|
this->bAnyMatch = false;
|
|
this->Operation = EFortMinigameStatOperation::Equal;
|
|
this->Value = 0;
|
|
this->bStaticCount = false;
|
|
}
|
|
|