mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 16:05:07 +00:00
* /icons/ folder cleansing crusade part 3 * fixes --------- Co-authored-by: YesterdaysPromise <122572637+YesterdaysPromise@users.noreply.github.com> Co-authored-by: SpaceLoveSs13 <68121607+SpaceLoveSs13@users.noreply.github.com>
21 lines
782 B
Plaintext
21 lines
782 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 'modular_skyrat/master_files/icons/emoji.dmi' // SKYRAT EDIT - ORIGINAL: 'icons/ui/chat/emoji.dmi'
|
|
|
|
// Font metrics bitfield
|
|
/// Include leading A width and trailing C width in GetWidth() or in DrawText()
|
|
#define INCLUDE_AC (1<<0)
|