mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-28 03:25:39 +00:00
12 lines
244 B
C#
12 lines
244 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Graphics.Text
|
|
{
|
|
interface ITextOutputProvider
|
|
{
|
|
void Print(TextBlock block, IGlyphRasterizer rasterizer, GlyphCache cache);
|
|
}
|
|
}
|