Dashboard/Quik/CommandMachine/FrameType.cs

17 lines
239 B
C#
Raw Normal View History

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