squirrel-battle/dungeonbattle/display/texturepack.py

9 lines
137 B
Python
Raw Normal View History

2020-11-06 13:32:05 +00:00
#This is the base ascii texturepack
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" : '@'
}