Opentk/Source/OpenTK/Fonts/TextHandle.cs

23 lines
445 B
C#
Raw Normal View History

2007-11-06 20:59:15 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Fonts
{
public class TextHandle
{
internal TextHandle(int handle)
{
Handle = handle;
}
public readonly int Handle;
internal TextureFont font;
public override string ToString()
{
return String.Format("TextHandle: {0}", Handle);
}
}
}