Watch
2
0
Fork
You've already forked raylib-cs
0

Update Window.cs

This commit is contained in:
MrScautHD 2023-08-19 22:43:26 +02:00
commit 2439a34f2b

View file

@ -16,7 +16,8 @@ public class Window : IDisposable
/// <summary>
/// Initializes the object if it is not ready.
/// </summary>
public static Window Instance(int width, int height, string title) {
public static Window Instance(int width, int height, string title)
{
return _instance ?? new Window(width, height, title);
}