Remove Sdl2HardwareCursorException

This commit is contained in:
abcdefg30
2021-08-14 17:44:04 +02:00
committed by Paul Chote
parent b8ba1b36fe
commit 4145723ef0

View File

@@ -17,15 +17,6 @@ using SDL2;
namespace OpenRA.Platforms.Default
{
class Sdl2HardwareCursorException : Exception
{
public Sdl2HardwareCursorException(string message)
: base(message) { }
public Sdl2HardwareCursorException(string message, Exception innerException)
: base(message, innerException) { }
}
sealed class Sdl2HardwareCursor : IHardwareCursor
{
public IntPtr Cursor { get; private set; }