Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 644 Bytes

File metadata and controls

22 lines (17 loc) · 644 Bytes

windowing

simple, thin, windowing abstraction

installation

packages

simple eample

A full, simple, example project based off of SDL3 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();
    }