From 6db9c19fb8d8484c8781028ba6b22d8d50f78e9e Mon Sep 17 00:00:00 2001
From: MrScautHD <65916181+MrScautHD@users.noreply.github.com>
Date: Sat, 19 Aug 2023 22:46:24 +0200
Subject: [PATCH] Updated documentation
---
Raylib-cs/types/Window.cs | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Raylib-cs/types/Window.cs b/Raylib-cs/types/Window.cs
index 5191e0a..d6cae9e 100644
--- a/Raylib-cs/types/Window.cs
+++ b/Raylib-cs/types/Window.cs
@@ -14,8 +14,12 @@ public class Window : IDisposable
}
///
- /// Initializes the object if it is not ready.
+ /// Gets an instance of the Window or creates a new one if it doesn't exist.
///
+ /// The width of the window.
+ /// The height of the window.
+ /// The title of the window.
+ /// An instance of the Window.
public static Window Instance(int width, int height, string title)
{
return _instance ?? new Window(width, height, title);