mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-20 19:49:39 +01:00
## About The Pull Request Refactors a lot of the unused defines. ## Why It's Good For The Game Refactors a lot of the unused defines. ## Changelog Nothing player facing --------- Co-authored-by: san7890 <the@san7890.com>
21 lines
716 B
Plaintext
21 lines
716 B
Plaintext
//FONTS: Used by Paper, PhotoCopier, PDA's Notekeeper, NewsCaster, NewsPaper, ModularComputers (and PaperBin once a year).
|
|
/// Font used by regular pens
|
|
#define PEN_FONT "Verdana"
|
|
/// Font used by fancy pens
|
|
#define FOUNTAIN_PEN_FONT "Segoe Script"
|
|
/// Font used by crayons
|
|
#define CRAYON_FONT "Comic Sans MS"
|
|
/// Font used by printers
|
|
#define PRINTER_FONT "Times New Roman"
|
|
/// Font used by charcoal pens
|
|
#define CHARCOAL_FONT "Candara"
|
|
/// Font used when signing on paper.
|
|
#define SIGNATURE_FONT "Segoe Script"
|
|
|
|
/// Emoji icon set
|
|
#define EMOJI_SET 'icons/ui_icons/emoji/emoji.dmi'
|
|
|
|
// Font metrics bitfield
|
|
/// Include leading A width and trailing C width in GetWidth() or in DrawText()
|
|
#define INCLUDE_AC (1<<0)
|