f3b2cf8c32
Co-authored-by: alhashij <alhashimy.janna@gmail.com> Reviewed-on: #9 Co-authored-by: Lance1416 <lanceli1416@gmail.com> Co-committed-by: Lance1416 <lanceli1416@gmail.com>
26 lines
541 B
C
26 lines
541 B
C
// Copyright Team Lumi. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UniStrokePoint.h"
|
|
#include "UniStrokeTemplate.generated.h"
|
|
|
|
static constexpr int NumPoints = 64;
|
|
static constexpr float SquareSize = 250.0f;
|
|
|
|
USTRUCT()
|
|
struct WIZARDINGCENTRAL_API FUniStrokeTemplate
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
FUniStrokeTemplate();
|
|
FUniStrokeTemplate(const FString& Name,
|
|
const TArray<FUniStrokePoint>& Points);
|
|
~FUniStrokeTemplate();
|
|
|
|
FString Name;
|
|
TArray<float> Vector;
|
|
TArray<FUniStrokePoint> Points;
|
|
};
|