mirror of
https://github.com/MaddyThorson/StrawberryBF.git
synced 2025-04-19 04:36:05 +08:00
22 lines
221 B
Brainfuck
22 lines
221 B
Brainfuck
|
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);
|
||
|
}
|
||
|
}
|
||
|
}
|