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

28
src/ecs/Animation.h Normal file
View File

@@ -0,0 +1,28 @@
/*
* Animation.h
*
* Created on: Mar 27, 2020
* Author: ayoungblood
*/
#ifndef SRC_ECS_ANIMATION_H_
#define SRC_ECS_ANIMATION_H_
struct Animation
{
int index;
int frames;
int speed;
Animation() {}
Animation(int i, int f, int s)
{
index = i;
frames = f;
speed = s;
}
};
#endif /* SRC_ECS_ANIMATION_H_ */