Hobby project for creating tiling maps
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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