Hobby project for creating tiling maps
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.py 341B

123456789101112131415161718192021
  1. # map_tiler
  2. # Taking rectangular tiles, build a map of arbitrary size
  3. # with doors between some, but not all, adjacent squares
  4. # Author: Noëlle Anthony <noelle@noelle.codes>
  5. class Layout:
  6. def __init__(self):
  7. pass
  8. class Room:
  9. def __init__(self):
  10. pass
  11. def main():
  12. pass
  13. if __name__ == "__main__":
  14. main()