mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-28 14:05:28 +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);
|
|
}
|
|
}
|
|
}
|