1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-04 12:39:55 +00:00

Clarification on some documentation points

This commit is contained in:
Thomas 2014-05-13 14:21:59 -04:00
parent 085fb2c5a2
commit 680890c846

View File

@ -15,13 +15,13 @@ namespace MWMechanics
class AiPackage;
/// \brief Sequence of AI-packages for a single actor
/** Each package will be run in succession for an actor until completed **/
/** The top-most AI package is run each frame. When completed, it is removed from the stack. **/
class AiSequence
{
///AiPackages to run though
std::list<AiPackage *> mPackages;
///Finished with all AiPackages
///Finished with top AIPackage, set for one frame
bool mDone;
///Copy AiSequence