24 lines
431 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|