ManiaMap.Godot
Procedural generation of metroidvania style maps for Godot .NET.
PathDoesNotExistException.cs
1using System;
2
4{
8 public class PathDoesNotExistException : Exception
9 {
10 public PathDoesNotExistException(string message) : base(message)
11 {
12
13 }
14 }
15}