Added ILayoutProvider class.
This commit is contained in:
parent
d13863ce97
commit
38a6f8f8ea
1 changed files with 12 additions and 0 deletions
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