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,8 @@
namespace SlaveEngine.Assets.Primitives;
public enum CommandType : byte {
MoveTo = 0,
LineTo = 1,
CubicBezierTo = 2,
Close = 3
}