First Commit

This commit is contained in:
2022-10-30 23:44:30 +01:00
commit fdd1e361c0
11 changed files with 251 additions and 0 deletions

20
Entity.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef ENTITY_H
#define ENTITY_H
#include "Vector.h"
class Entity
{
private:
Vec2 pos, spe, acc;
public:
Entity();
Entity(Vec2, Vec2, Vec2);
void Debug() const;
void Update();
};
#endif /* ENTITY_H */