dartterm/lib/fonts.dart
2023-09-05 20:11:15 -07:00

14 lines
455 B
Dart

class Font {
final String imageName;
final int cellWidth, cellHeight;
final int nCellsW, nCellsH;
const Font(this.imageName, this.cellWidth, this.cellHeight, this.nCellsW,
this.nCellsH);
static const Font bg = Font("assets/images/fonts/font_bg.png", 1, 1, 1, 1);
static const Font small =
Font("assets/images/fonts/font_small.png", 1, 1, 16, 16);
static const Font normal = Font("assets/images/fonts/font.png", 1, 2, 32, 8);
}