Bladeren bron

Added missing documentation from last commit

BearishSun 10 jaren geleden
bovenliggende
commit
fc5246667d
1 gewijzigde bestanden met toevoegingen van 9 en 1 verwijderingen
  1. 9 1
      BansheeUtility/Include/Win32/BsWin32Window.h

+ 9 - 1
BansheeUtility/Include/Win32/BsWin32Window.h

@@ -111,8 +111,16 @@ namespace BansheeEngine
 		/** Called when window is moved or resized externally. */
 		void _windowMovedOrResized();
 
-		// DEBUG ONLY
+		/** 
+		 * Enables all open windows. Enabled windows can receive mouse and keyboard input. This includes even windows 
+		 * disabled because there is a modal window on top of them.
+		 */
 		void static _enableAllWindows();
+
+		/**
+		 * Restores disabled state of all windows that were disabled due to modal windows being on top of them. Companion
+		 * method to _enableAllWindows() that can help restore original state after it is called. 
+		 */
 		void static _restoreModalWindows();
 
 	private: