a1f4e6a4dc
Due to unforseen naming conflicts, the project has been rebranded under the ReFuel umbrealla and will now be referred to as Dashboard from now on. Other changes will occur to suit the library more for the engine whilst keeping the freestanding nature of the library. Rename folder. Rename to Dashboard.OpenTK Rename to Dashboard.Media.Defaults. Do the last renames and path fixes.
18 lines
318 B
C#
18 lines
318 B
C#
namespace Dashboard.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;
|
|
}
|
|
} |