ManiaMap.Godot
Procedural generation of metroidvania style maps for Godot .NET.
DuplicateInputException.cs
1using System;
2
4{
8 public class DuplicateInputException : Exception
9 {
10 public DuplicateInputException(string message) : base(message)
11 {
12
13 }
14 }
15}
Raised if a duplicate input name is encountered.