Files
Copium/CopiumEngine/src/copium/ecs/ComponentPoolBase.cpp
T
Thraix 0cd35928a7 Fix acronym naming standard
- Now follow standard that acronyms should only capitalize the first
  letter
2023-05-22 12:12:51 +02:00

15 lines
271 B
C++

#include "copium/ecs/ComponentPoolBase.h"
namespace Copium
{
std::vector<EntityId>& ComponentPoolBase::GetEntities()
{
return entities.GetList();
}
const std::vector<EntityId>& ComponentPoolBase::GetEntities() const
{
return entities.GetList();
}
}