ManiaMap.Godot
Procedural generation of metroidvania style maps for Godot .NET.
RoomNotInitializedException.cs
1using System;
2
4{
8 public class RoomNotInitializedException : Exception
9 {
10 public RoomNotInitializedException(string message) : base(message)
11 {
12
13 }
14 }
15}
Raised if a room is not initialized when its on ready method is called.