blob: 7cb6fbbed082820705520cbb6c5392628c68a352 (
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 mActive;
};
// TODO: these should be in separate files
class Sprite : public Component {
public:
Sprite(std::string path);
std::string mPath;
};
class Rigidbody : public Component {
public:
Rigidbody(int mass, int gravityScale, int bodyType);
int mMass;
int mGravityScale;
int mBodyType;
};
class Colider : public Component {
public:
Colider(int size);
int mSize;
};
}
|