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