aboutsummaryrefslogtreecommitdiffstats
path: root/include/entities.h
blob: 3ecf0147340a9b92939777a2c591c4cf4f84c54c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef ENTITIES_H
#define ENTITIES_H

#include <common.h>


class Entities{
public:
	float width;
	float height;
	float speed;
	int type;
	vec2 loc;

	void spawn(float, float);


};

class Player : public Entities{
public:
	Player();
	~Player();
};

#endif //ENTITIES_H