simulation/Entity.h

23 lines
231 B
C
Raw Permalink Normal View History

2022-10-30 23:44:30 +01:00
#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();
2022-11-02 07:44:57 +01:00
Vec2 GetPos();
2022-10-30 23:44:30 +01:00
};
#endif /* ENTITY_H */