squirrel-battle/dungeonbattle/display/texturepack.py

9 lines
128 B
Python
Raw Normal View History

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