]> git.seodisparate.com - EntityComponentMetaSystem/commitdiff
Slight addition to EC::Manager documentation
authorStephen Seo <seo.disparate@gmail.com>
Mon, 14 Mar 2016 11:09:51 +0000 (20:09 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Mon, 14 Mar 2016 11:09:51 +0000 (20:09 +0900)
src/EC/Manager.hpp

index b4b390784c8183c26b276160b84d3d7f8aac0e9d..0095a5157eb70453e671b5a8aed6213006755a26 100644 (file)
@@ -250,6 +250,13 @@ namespace EC
 
 /*! \class EC::Manager
     \brief Manages an EntityComponent system.
+
+    EC::Manager must be created with a list of all used Components and all used tags.
+
+    Example:
+    \code{.cpp}
+        EC::Manager<TypeList<C0, C1, C2>, TypeList<T0, T1>> manager;
+    \endcode
 */
 
 /*! \fn EC::Manager::Manager()