mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-31 23:55:56 +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);
|
||
|
}
|
||
|
}
|