first commit
This commit is contained in:
14
src/ecs/ECS.cpp
Normal file
14
src/ecs/ECS.cpp
Normal file
@ -0,0 +1,14 @@
|
||||
/*
|
||||
* ECS.cpp
|
||||
*
|
||||
* Created on: Mar 24, 2020
|
||||
* Author: ayoungblood
|
||||
*/
|
||||
|
||||
#include "ECS.h"
|
||||
|
||||
void Entity::addGroup(Group mGroup)
|
||||
{
|
||||
groupBitset[mGroup] = true;
|
||||
manager.AddToGroup(this, mGroup);
|
||||
}
|
Reference in New Issue
Block a user