mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-17 08:27:11 +00:00
15 lines
223 B
C#
15 lines
223 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OpenTK.Graphics.Text
|
|||
|
{
|
|||
|
public enum TextQuality
|
|||
|
{
|
|||
|
Default = 0,
|
|||
|
Low,
|
|||
|
Medium,
|
|||
|
High
|
|||
|
}
|
|||
|
}
|