mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-12 23:25:41 +00:00
15 lines
239 B
C#
15 lines
239 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace OpenTK.Graphics
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum TextPrinterOptions
|
||
|
{
|
||
|
NoCache = 1,
|
||
|
RightToLeft = 2,
|
||
|
Vertical = 4,
|
||
|
}
|
||
|
}
|