1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-15 23:04:09 +02:00
Beef/BeefLibs/SDL2/src/BitmapFont.bf

32 lines
505 B
Beef
Raw Normal View History

2022-03-24 11:59:00 -07:00
using System.Collections;
namespace SDL2
{
class BitmapFont
{
public class Page
{
public Image mImage ~ delete _;
}
public struct CharData
{
public int32 mX;
public int32 mY;
public int32 mWidth;
public int32 mHeight;
public int32 mXOfs;
public int32 mYOfs;
public int32 mXAdvance;
public int32 mPage;
}
public List<Page> mPages = new .() ~ DeleteContainerAndItems!(_);
public List<CharData> mCharData = new .() ~ delete _;
public this()
{
}
}
}