9 lines
128 B
Python
9 lines
128 B
Python
|
#This is the base ascii texturepack
|
||
|
|
||
|
textures = {
|
||
|
"EMPTY" : ' '
|
||
|
"WALL" : '#'
|
||
|
"FLOOR" : '.'
|
||
|
"PLAYER" : '@'
|
||
|
}
|