Fix acronym naming standard
- Now follow standard that acronyms should only capitalize the first letter
This commit is contained in:
@@ -10,18 +10,18 @@ namespace Copium
|
||||
class EntitySet
|
||||
{
|
||||
private:
|
||||
std::vector<EntityID> entitiesList;
|
||||
std::unordered_map<EntityID, size_t> entitiesMap; // Maps the entity id to a component index
|
||||
std::vector<EntityId> entitiesList;
|
||||
std::unordered_map<EntityId, size_t> entitiesMap; // Maps the entity id to a component index
|
||||
public:
|
||||
bool Emplace(EntityID entity);
|
||||
bool Erase(EntityID entity);
|
||||
bool Emplace(EntityId entity);
|
||||
bool Erase(EntityId entity);
|
||||
bool Pop();
|
||||
size_t Find(EntityID entity);
|
||||
size_t Find(EntityId entity);
|
||||
size_t Size() const;
|
||||
std::vector<EntityID>& GetList();
|
||||
const std::vector<EntityID>& GetList() const;
|
||||
std::vector<EntityId>& GetList();
|
||||
const std::vector<EntityId>& GetList() const;
|
||||
|
||||
std::vector<EntityID>::iterator begin();
|
||||
std::vector<EntityID>::iterator end();
|
||||
std::vector<EntityId>::iterator begin();
|
||||
std::vector<EntityId>::iterator end();
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user