aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Components.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/Components.cpp')
-rw-r--r--src/crepe/Components.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/crepe/Components.cpp b/src/crepe/Components.cpp
index 4a43692..f27c7a4 100644
--- a/src/crepe/Components.cpp
+++ b/src/crepe/Components.cpp
@@ -1,14 +1,13 @@
#include "Components.h"
-#include <iostream>
using namespace crepe;
+using namespace std;
-Component::Component() : m_active(true) {}
+Component::Component() : active(true) {}
-Sprite::Sprite(std::string path) : m_path(path) {}
+Sprite::Sprite(string path) : path(path) {}
Rigidbody::Rigidbody(int mass, int gravityScale, int bodyType)
- : m_mass(mass), m_gravity_scale(gravityScale), m_body_type(bodyType) {}
-
-Collider::Collider(int size) : m_size(size) {}
+ : mass(mass), gravity_scale(gravityScale), body_type(bodyType) {}
+Collider::Collider(int size) : size(size) {}