From 6cded1b03bcddc56ec0d246694842ecb168b0290 Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Sat, 19 Aug 2023 23:44:01 +0200 Subject: [PATCH] Made it sealed --- Raylib-cs/types/Window.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Raylib-cs/types/Window.cs b/Raylib-cs/types/Window.cs index bc758eb..3696a09 100644 --- a/Raylib-cs/types/Window.cs +++ b/Raylib-cs/types/Window.cs @@ -3,7 +3,7 @@ using System.Numerics; namespace Raylib_cs; -public class Window : IDisposable +public sealed class Window : IDisposable { private static Window _instance;