1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-15 14:54:09 +02:00
Beef/BeefLibs/SDL2/src/BitmapFont.bf
2022-03-24 11:59:00 -07:00

32 lines
No EOL
505 B
Beef

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()
{
}
}
}