StrawberryBF/src/Assets/Font.bf

22 lines
221 B
Brainfuck
Raw Normal View History

2020-06-15 11:48:01 +08:00
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);
}
}
}