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);