9 lines
163 B
C#
9 lines
163 B
C#
namespace DaggerFramework;
|
|
|
|
public class Font : Resource
|
|
{
|
|
public int Size = 16;
|
|
public Font(string path, byte[] buffer) : base(path, buffer)
|
|
{
|
|
}
|
|
} |