18 lines
313 B
C#
18 lines
313 B
C#
|
namespace Quik.CommandMachine
|
||
|
{
|
||
|
public enum ImageCommandFlags
|
||
|
{
|
||
|
None = 0,
|
||
|
|
||
|
Single = 1 << 0,
|
||
|
UVs = 1 << 1,
|
||
|
Image3d = 1 << 2,
|
||
|
}
|
||
|
|
||
|
public struct Image3DCall
|
||
|
{
|
||
|
public QRectangle Rectangle;
|
||
|
public QRectangle UVs;
|
||
|
public int Layer;
|
||
|
}
|
||
|
}
|