ManiaMap.Unity
Procedural generation of metroidvania style maps for Unity.
DuplicateInputException.cs
1using System;
2
4{
8 public class DuplicateInputException : Exception
9 {
11 public DuplicateInputException(string message) : base(message)
12 {
13
14 }
15 }
16}
Exception raised when a duplicate generation input argument exists.