mirror of
https://github.com/MaddyThorson/StrawberryBF.git
synced 2025-06-30 19:15:25 +08:00
22 lines
221 B
Beef
22 lines
221 B
Beef
![]() |
using System;
|
||
|
using SDL2;
|
||
|
|
||
|
namespace Strawberry
|
||
|
{
|
||
|
public class Font : Asset
|
||
|
{
|
||
|
private SDLTTF.Font* font;
|
||
|
|
||
|
private this(String path)
|
||
|
: base(path)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public ~this()
|
||
|
{
|
||
|
SDLTTF.CloseFont(font);
|
||
|
}
|
||
|
}
|
||
|
}
|