docs(ecs): add some docs

This commit is contained in:
light7734 2025-09-21 09:48:40 +03:30
parent 9267214300
commit 8b98768539
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

View file

@ -68,6 +68,10 @@ public:
return m_dense.emplace_back(identifier, std::move(value));
}
/** @warn invalidates begin/end iterators
*
* @todo(Light): make it not invalidate the iterators >:c
*/
void remove(Identifier_T identifier) override
{
auto &idx = m_sparse[identifier];