summaryrefslogtreecommitdiff
path: root/src/entity.h
blob: 3875c22953d4d5c3ae46343d18bb5e73a4d46d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef ENTITY_H
#define ENTITY_H

#include "vec.h"

class Entity{

public:
    Vec2 position;
    Vec2 size;
    Vec2 speed;
};

#endif // ENTITY_H