https://github.com/mizrael/random-dungeon-generator
https://github.com/mizrael/random-dungeon-generator
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mizrael/random-dungeon-generator
- Owner: mizrael
- License: mit
- Created: 2019-08-20T11:16:14.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-30T11:59:05.000Z (about 6 years ago)
- Last Synced: 2025-01-26T21:51:13.649Z (8 months ago)
- Language: C#
- Size: 22.5 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Random Dungeon Generator
## DISCLAIMER
I haven't written this code, I found it online almost 10 years ago and integrated in a small XNA game I was working on at the time. The game was never completed and the source were buried in an old hard-drive.**I don't own these sources so if you're the author and you want them removed just let me know.**
## Sample usage
```
var generator = new DungeonGenerator.DungeonGenerator(9, 7, 40, 40, 60, new DungeonGenerator.RoomGenerator(4, 2, 3, 2, 3));var dungeon = generator.Generate();
```