Hobby project for creating tiling maps
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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