mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-12 23:05:26 +00:00
Added ILayoutProvider class.
This commit is contained in:
parent
d13863ce97
commit
38a6f8f8ea
12
Source/OpenTK/Fonts/ILayoutProvider.cs
Normal file
12
Source/OpenTK/Fonts/ILayoutProvider.cs
Normal file
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue