diff --git a/Source/OpenTK/Fonts/ILayoutProvider.cs b/Source/OpenTK/Fonts/ILayoutProvider.cs new file mode 100644 index 00000000..594f8548 --- /dev/null +++ b/Source/OpenTK/Fonts/ILayoutProvider.cs @@ -0,0 +1,12 @@ +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); + } +}