WIP: fonts.

This commit is contained in:
2023-06-20 00:18:35 +02:00
parent 72b6896d3e
commit 193462b747
11 changed files with 79 additions and 9 deletions

View File

@@ -5,6 +5,8 @@ namespace DaggerFramework
public string? Path { get => _path; set => _path = value; }
public byte[]? Buffer { get => _buffer; set => _buffer = value; }
public long BufferSize { get; set; }
public Resource(string path, byte[] buffer)
{
_path = path;