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

Updated documentation

This commit is contained in:
MrScautHD 2023-08-19 22:46:24 +02:00
commit 6db9c19fb8

View file

@ -14,8 +14,12 @@ public class Window : IDisposable
}
/// <summary>
/// Initializes the object if it is not ready.
/// Gets an instance of the Window or creates a new one if it doesn't exist.
/// </summary>
/// <param name="width">The width of the window.</param>
/// <param name="height">The height of the window.</param>
/// <param name="title">The title of the window.</param>
/// <returns>An instance of the Window.</returns>
public static Window Instance(int width, int height, string title)
{
return _instance ?? new Window(width, height, title);