9 lines
137 B
Python
Raw Normal View History

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