17 lines
232 B
C#
17 lines
232 B
C#
|
namespace Quik.CommandQueue
|
||
|
{
|
||
|
public enum FrameType
|
||
|
{
|
||
|
None,
|
||
|
Command,
|
||
|
IVec1,
|
||
|
IVec2,
|
||
|
IVec3,
|
||
|
IVec4,
|
||
|
Vec1,
|
||
|
Vec2,
|
||
|
Vec3,
|
||
|
Vec4,
|
||
|
Object,
|
||
|
}
|
||
|
}
|