diff --git a/Source/OpenTK/GameWindow.cs b/Source/OpenTK/GameWindow.cs index d31f1d5a..463c0b57 100644 --- a/Source/OpenTK/GameWindow.cs +++ b/Source/OpenTK/GameWindow.cs @@ -436,7 +436,7 @@ namespace OpenTK #endif - #region void Run() + #region public void Run() /// /// Enters the game loop of the GameWindow updating and rendering at the maximum possible frequency. @@ -448,6 +448,10 @@ namespace OpenTK Run(0.0, 0.0); } + #endregion + + #region public void Run(double updateFrequency) + /// /// Enters the game loop of the GameWindow updating the specified update frequency, while maintaining the /// maximum possible render frequency. @@ -459,6 +463,10 @@ namespace OpenTK Run(updateFrequency, 0.0); } + #endregion + + #region public void Run(double updates_per_second, double frames_per_second) + /// /// Enters the game loop of the GameWindow updating and rendering at the specified frequency. ///