Slight addition to EC::Manager documentation

This commit is contained in:
Stephen Seo 2016-03-14 20:09:51 +09:00
parent bfac16072c
commit a28a68cc65

View 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()