From be8eb2d1050937dc1e37866d120f80663659965f Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 22 Jun 2008 18:07:22 +0000 Subject: [PATCH] Added regions to conform to naming conventions. --- Source/OpenTK/GameWindow.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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. ///