Add $1 uni-stroke recognizer system

This commit is contained in:
2025-01-03 01:50:25 -05:00
parent 3abf8d34f0
commit fbffa6ae71
12 changed files with 783 additions and 0 deletions
@@ -0,0 +1,19 @@
#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
}