13 lines
373 B
C#
13 lines
373 B
C#
namespace DaggerFramework;
|
|
|
|
public class Font : Resource
|
|
{
|
|
/// <summary>
|
|
/// Internal handle for the font. If it got successfully loaded into the GPU, the value will be other than -1.
|
|
/// </summary>
|
|
internal int Handle { get; set; } = -1;
|
|
public int Size { get; set; } = 16;
|
|
public Font(string path, byte[] buffer) : base(path, buffer)
|
|
{
|
|
}
|
|
} |