aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Components.h
blob: 139599c84e6ee8af9c46c477ce0a2f53dd418621 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
#pragma once

#include <string>

namespace crepe {

class Component {
public:
	Component();

	bool active;
};

// TODO: these should be in separate files

class Sprite : public Component {
public:
	Sprite(std::string path);

	std::string path;
};

class Rigidbody : public Component {
public:
	Rigidbody(int mass, int gravityScale, int bodyType);

	int mass;
	int gravity_scale;
	int body_type;
};

class Collider : public Component {
public:
	Collider(int size);

	int size;
};

} // namespace crepe