mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-27 21:25:44 +00:00
18 lines
389 B
C#
18 lines
389 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
using OpenTK.Math;
|
|
|
|
namespace OpenTK.Fonts
|
|
{
|
|
/// <summary>
|
|
/// Defines the interface for TextPrinter implementations.
|
|
/// </summary>
|
|
interface ITextPrinterImplementation
|
|
{
|
|
TextHandle Load(Vector2[] vertices, ushort[] indices);
|
|
void Draw(TextHandle handle);
|
|
}
|
|
}
|