Simple, thin, windowing abstraction
- Base Package: https://www.nuget.org/packages/CopperDevs.Windowing/
- SDL3 Support: https://www.nuget.org/packages/CopperDevs.Windowing.SDL3/
A full, simple, example project can be found here
Example of the creation of an empty window using SDL3
public static void Main()
{
var options = SDL3WindowOptions.Default with { Title = "Example" };
using var window = Window.Create<SDL3Window>(options);
window.Run();
}