mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 04:45:38 +00:00
16 lines
261 B
C#
16 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,
|
|
}
|
|
}
|