Skip to content

Commit 417a662

Browse files
committed
Minor code improvements and refactoring
1 parent 567a8ca commit 417a662

File tree

5 files changed

+995
-802
lines changed

5 files changed

+995
-802
lines changed

GLFW.NET/GameWindow.cs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
11
using System;
22

3+
// ReSharper disable once CheckNamespace
34
namespace GLFW.Game
45
{
6+
/// <inheritdoc cref="NativeWindow"/>
57
[Obsolete("Use NativeWindow, GameWindow will be removed in future release.")]
68
public class GameWindow : NativeWindow
79
{
10+
/// <inheritdoc cref="NativeWindow()"/>
811
[Obsolete("Use NativeWindow, GameWindow will be removed in future release.")]
912
public GameWindow()
1013
{
1114
}
1215

16+
/// <inheritdoc cref="NativeWindow(int, int, string)"/>
1317
[Obsolete("Use NativeWindow, GameWindow will be removed in future release.")]
1418
public GameWindow(int width, int height, string title) : base(width, height, title)
1519
{
16-
1720
}
1821

22+
/// <inheritdoc cref="NativeWindow(int, int, string, Monitor, Window)"/>
1923
[Obsolete("Use NativeWindow, GameWindow will be removed in future release.")]
2024
public GameWindow(int width, int height, string title, Monitor monitor, Window share) : base(width, height,
2125
title, monitor, share)
2226
{
23-
2427
}
2528
}
2629
}

0 commit comments

Comments
 (0)