first commit

This commit is contained in:
2021-01-29 21:14:20 -05:00
commit b2acceb4b9
78 changed files with 6774 additions and 0 deletions

14
src/ecs/ECS.cpp Normal file
View 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);
}