Opentk/Source/OpenTK/Fonts/IPrinterImplementation.cs

18 lines
389 B
C#
Raw Normal View History

2007-11-06 20:59:15 +00:00
using System;
using System.Collections.Generic;
using System.Text;
using OpenTK.Math;
namespace OpenTK.Fonts
{
/// <summary>
/// Defines the interface for TextPrinter implementations.
/// </summary>
interface ITextPrinterImplementation
{
TextHandle Load(Vector2[] vertices, ushort[] indices);
void Draw(TextHandle handle);
}
}