mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-15 23:17:13 +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);
|
||
|
}
|
||
|
}
|