spart to data

This commit is contained in:
2026-06-14 21:00:14 +02:00
parent 201b13f80f
commit 2207116d0a
10 changed files with 192 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
namespace SlaveEngine.Assets.Models;
public sealed class PathGroup {
public required string Name { get; init; }
public bool HasTransform { get; init; }
public float Tx { get; init; }
public float Ty { get; init; }
public float Angle { get; init; }
public float Sx { get; init; }
public float Sy { get; init; }
public float Bx { get; init; }
public float By { get; init; }
public required PathData[] Paths { get; init; }
}