15 lines
261 B
C#
15 lines
261 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Graphics
|
|
{
|
|
[Flags]
|
|
public enum TextPrinterOptions
|
|
{
|
|
Default = 0,
|
|
NoCache = 1,
|
|
RightToLeft = 2,
|
|
Vertical = 4,
|
|
}
|
|
}
|