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

23
src/ecs/Components.h Normal file
View File

@ -0,0 +1,23 @@
/*
* Components.h
*
* Created on: Feb 21, 2020
* Author: ayoungblood
*/
#ifndef SRC_COMPONENTS_H_
#define SRC_COMPONENTS_H_
#include "ECS.h"
#include "TransformComponent.h"
#include "SpriteComponent.h"
#include "KeyboardController.h"
#include "ColliderComponent.h"
#include "ProjectileComponent.h"
#include "TileComponent.h"
#include "UIFontComponent.h"
#endif /* SRC_COMPONENTS_H_ */