mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 22:45:37 +00:00
13 lines
295 B
C#
13 lines
295 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Drawing;
|
|
|
|
namespace OpenTK.Fonts
|
|
{
|
|
interface ILayoutProvider
|
|
{
|
|
void PerformLayout(string text, IFont font, RectangleF layoutRect, StringAlignment alignment, bool rightToLeft);
|
|
}
|
|
}
|