Supercell.GUT/Supercell.GUT.Titan/Logic/Debug/LogicException.cs
BreadDEV 8c6a533918 [v0.0.2] you can enter menu now. but still early state
todo: improve code and finish base structures
2024-03-05 17:37:18 +07:00

9 lines
171 B
C#

namespace Supercell.GUT.Titan.Logic.Debug;
public class LogicException : Exception
{
public LogicException(string message) : base(message)
{
;
}
}