diff --git a/dungeonbattle/texturepack.py b/dungeonbattle/texturepack.py new file mode 100644 index 0000000..679f72e --- /dev/null +++ b/dungeonbattle/texturepack.py @@ -0,0 +1,8 @@ +#This is the base ascii texturepack + +textures = { + "EMPTY" : ' ' + "WALL" : '#' + "FLOOR" : '.' + "PLAYER" : '@' + }