squirrel-battle/dungeonbattle/display/texturepack.py

14 lines
212 B
Python
Raw Normal View History

2020-11-06 15:16:30 +00:00
ascii_textures = {
2020-11-06 13:41:05 +00:00
"EMPTY" : ' ',
"WALL" : '#',
"FLOOR" : '.',
2020-11-06 13:32:05 +00:00
"PLAYER" : '@'
}
2020-11-06 15:50:18 +00:00
squirrel_textures = {
"EMPTY" : ' ',
"WALL" : '',
"FLOOR" : '.',
"PLAYER" : '🐿️'
}