aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Components.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/Components.h')
-rw-r--r--src/crepe/Components.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/crepe/Components.h b/src/crepe/Components.h
index 1ad9ef2..139599c 100644
--- a/src/crepe/Components.h
+++ b/src/crepe/Components.h
@@ -8,7 +8,7 @@ class Component {
public:
Component();
- bool m_active;
+ bool active;
};
// TODO: these should be in separate files
@@ -17,23 +17,23 @@ class Sprite : public Component {
public:
Sprite(std::string path);
- std::string m_path;
+ std::string path;
};
class Rigidbody : public Component {
public:
Rigidbody(int mass, int gravityScale, int bodyType);
- int m_mass;
- int m_gravity_scale;
- int m_body_type;
+ int mass;
+ int gravity_scale;
+ int body_type;
};
class Collider : public Component {
public:
Collider(int size);
- int m_size;
+ int size;
};
} // namespace crepe