From: Stephen Seo Date: Fri, 24 Nov 2017 06:06:57 +0000 (+0900) Subject: Minor fixes to documentation X-Git-Tag: 1.0~58 X-Git-Url: https://git.seodisparate.com/inner/further?a=commitdiff_plain;h=477580ad34ce893483b35ad19a68f5d5c5c84139;p=EntityComponentMetaSystem Minor fixes to documentation --- diff --git a/src/EC/Manager.hpp b/src/EC/Manager.hpp index 1c2a357..93397fe 100644 --- a/src/EC/Manager.hpp +++ b/src/EC/Manager.hpp @@ -312,7 +312,7 @@ namespace EC This function should be called periodically to correctly handle deletion of entities. - The queue returned by this function lists all entities that have + The vector returned by this function lists all entities that have changed as a result of calling this function. The first parameter in the tuple (bool) is true if the entity has @@ -363,7 +363,7 @@ namespace EC { // lhs is marked for deletion - // store deleted and changed id to queue + // store deleted and changed id changedVector.push_back(std::make_tuple(false, lhs, 0)); changedVector.push_back(std::make_tuple(true, rhs, lhs));