mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-04 14:01:22 +00:00
* Contextual tutorials for swapping hands and dropping items * Fixes * Oops Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Co-authored-by: Useroth <37159550+Useroth@users.noreply.github.com>
11 lines
314 B
Plaintext
11 lines
314 B
Plaintext
/// A font datum, it exists to define a custom font to use in a span style later.
|
|
/datum/font
|
|
/// Font name, just so people know what to put in their span style.
|
|
var/name
|
|
/// The font file we link to.
|
|
var/font_family
|
|
|
|
/datum/font/vcr_osd_mono
|
|
name = "VCR OSD Mono"
|
|
font_family = 'interface/VCR_OSD_Mono.ttf'
|