0cd35928a7
- Now follow standard that acronyms should only capitalize the first letter
15 lines
271 B
C++
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();
|
|
}
|
|
}
|