squirrel-battle/dungeonbattle/texturepack.py

9 lines
121 B
Python
Raw Normal View History

2020-11-06 17:11:59 +00:00
# This is the base ascii texturepack
2020-11-06 13:32:05 +00:00
2020-11-06 13:41:05 +00:00
ascii = {
2020-11-06 17:11:59 +00:00
"EMPTY": ' ',
"WALL": '#',
"FLOOR": '.',
"PLAYER": '@'
}