mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-04-27 06:46:27 +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
|
|
}
|
|
}
|