Dashboard/Quik/CommandQueue/FrameType.cs

17 lines
232 B
C#
Raw Normal View History

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