Files
SlaveMatrix-SDL/SlaveEngine.Assets/Primitives/CommandType.cs
2026-06-14 21:00:14 +02:00

9 lines
146 B
C#

namespace SlaveEngine.Assets.Primitives;
public enum CommandType : byte {
MoveTo = 0,
LineTo = 1,
CubicBezierTo = 2,
Close = 3
}