22 lines
No EOL
779 B
Lua
22 lines
No EOL
779 B
Lua
-- 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{|}~⌂\
|
||
ÇüéâäàåçêëèïîìÄÅ\
|
||
ÉæÆôöòûùÿÖÜ¢£¥₧ƒ\
|
||
áíóúñѪº¿⌐¬½¼¡«»\
|
||
░▒▓│┤╡╢╖╕╣║╗╝╜╛┐\
|
||
└┴┬├─┼╞╟╚╔╩╦╠═╬╧\
|
||
╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀\
|
||
αßΓπΣσµτΦΘΩδ∞φε∩\
|
||
≡±≥≤⌠⌡÷≈°∙·√ⁿ²■<EFBFBD>"):gsub('\n', '')
|
||
|
||
return love.graphics.newImageFont("dwarf.png", charset) |