2025-08-11 19:36:09 +02:00

24 lines
431 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace skyscraper8.UI.ImGui.MonoGame.Screenhacks
{
public class ScreenhackException : Exception
{
public ScreenhackException()
{
}
public ScreenhackException(string message) : base(message)
{
}
public ScreenhackException(string message, Exception inner) : base(message, inner)
{
}
}
}