Răsfoiți Sursa

Added doxygen comments to UIElement

cib 12 ani în urmă
părinte
comite
87a0880928
1 a modificat fișierele cu 6 adăugiri și 2 ștergeri
  1. 6 2
      Modules/Contents/UI/Include/PolyUIElement.h

+ 6 - 2
Modules/Contents/UI/Include/PolyUIElement.h

@@ -25,7 +25,11 @@
 #include "PolyScreenEntity.h"
 
 namespace Polycode {
-	
+	/*
+	 * Base class for all UI widgets.
+	 *
+	 * processInputEvent is set to true by default.
+	 */
 	class _PolyExport UIElement : public ScreenEntity {
 		public:
 			UIElement();
@@ -37,4 +41,4 @@ namespace Polycode {
 			
 	};
 	
-}
+}