Files
WizardingHub/Source/WizardingCentral/Utils/OneDollar/UniStrokeResult.cpp
T

20 lines
337 B
C++

#include "UniStrokeResult.h"
FUniStrokeResult::FUniStrokeResult()
{
this->Name = "No match";
this->Score = 0.0f;
}
FUniStrokeResult::FUniStrokeResult(const FString& Name,
const float& Score)
{
this->Name = Name;
this->Score = Score;
}
FUniStrokeResult::~FUniStrokeResult()
{
// DO NOTHING
}