This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # quickgen by azul (@typeswitch@gamedev.lgbt) -- generates a map | |
| # by repeated subdivision. a simple approach to generating maps | |
| # quickly, starting from a very rough sketch. | |
| # | |
| # this code is public domain! use it however you like. | |
| import random |
OlderNewer