Dashboard/Quik/CommandMachine/FrameType.cs

17 lines
234 B
C#
Raw Normal View History

namespace Quik.CommandMachine
2023-05-13 15:17:23 +02:00
{
public enum FrameType
{
None,
Command,
IVec1,
IVec2,
IVec3,
IVec4,
Vec1,
Vec2,
Vec3,
Vec4,
Object,
}
}