Hobby project for creating tiling maps
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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()