Last active
April 21, 2018 02:15
-
-
Save notwa/9ce2e00be1daccaa037bd28826425fa3 to your computer and use it in GitHub Desktop.
dwarf fortress (VGA) font in love2d format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- This is free and unencumbered software released into the public domain. | |
-- For more information, please refer to <http://unlicense.org/> | |
local charset = ("\ | |
\x00☺☻♥♦♣♠•◘○◙♂♀♪♫☼\ | |
►◄↕‼¶§▬↨↑↓→←∟↔▲▼\ | |
!\"#$%&'()*+,-./\ | |
0123456789:;<=>?\ | |
@ABCDEFGHIJKLMNO\ | |
PQRSTUVWXYZ[\\]^_\ | |
`abcdefghijklmno\ | |
pqrstuvwxyz{|}~⌂\ | |
ÇüéâäàåçêëèïîìÄÅ\ | |
ÉæÆôöòûùÿÖÜ¢£¥₧ƒ\ | |
áíóúñѪº¿⌐¬½¼¡«»\ | |
░▒▓│┤╡╢╖╕╣║╗╝╜╛┐\ | |
└┴┬├─┼╞╟╚╔╩╦╠═╬╧\ | |
╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀\ | |
αßΓπΣσµτΦΘΩδ∞φε∩\ | |
≡±≥≤⌠⌡÷≈°∙·√ⁿ²■�"):gsub('\n', '') | |
return love.graphics.newImageFont("dwarf.png", charset) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment