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