Added ILayoutProvider class.

This commit is contained in:
the_fiddler 2007-11-01 23:23:19 +00:00
parent d13863ce97
commit 38a6f8f8ea

View 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);
}
}