1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 22:23:51 +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