mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-27 08:35:32 +00:00
23 lines
445 B
C#
23 lines
445 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|