feyris-tan ef86554f9a Import
2025-05-12 22:09:16 +02:00

22 lines
434 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SDL2;
namespace testdrid.SdlWrapper
{
internal class SdlException : ApplicationException
{
private SdlException(string s) : base()
{
}
public static SdlException GenerateException()
{
return new SdlException(SDL.SDL_GetError());
}
}
}