squirrel-battle/dungeonbattle/display/texturepack.py

14 lines
212 B
Python

ascii_textures = {
"EMPTY" : ' ',
"WALL" : '#',
"FLOOR" : '.',
"PLAYER" : '@'
}
squirrel_textures = {
"EMPTY" : ' ',
"WALL" : '',
"FLOOR" : '.',
"PLAYER" : '🐿️'
}