summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Creature.cpp1
-rw-r--r--Hazard.cpp1
-rw-r--r--Level.cpp1
-rw-r--r--MapObject.cpp1
-rw-r--r--Monster.cpp1
-rw-r--r--Pickup.cpp1
-rw-r--r--Platform.cpp1
-rw-r--r--Player.cpp1
-rw-r--r--Sprite.cpp1
9 files changed, 0 insertions, 9 deletions
diff --git a/Creature.cpp b/Creature.cpp
index b63bf6d..3070ef7 100644
--- a/Creature.cpp
+++ b/Creature.cpp
@@ -2,7 +2,6 @@
#include "Creature.h"
Creature::Creature() {
- std::cout << "Creature::Creature(): Creature created.\n";
xVel = 0;
yVel = GRAVITY;
}
diff --git a/Hazard.cpp b/Hazard.cpp
index 9ecc509..1762ddc 100644
--- a/Hazard.cpp
+++ b/Hazard.cpp
@@ -2,5 +2,4 @@
#include "Hazard.h"
Hazard::Hazard() {
- std::cout << "Hazard::Hazard(): Hazard created.\n";
}
diff --git a/Level.cpp b/Level.cpp
index a787e94..2c358da 100644
--- a/Level.cpp
+++ b/Level.cpp
@@ -8,7 +8,6 @@
#include "Platform.h"
Level::Level() {
- std::cout << "Level::Level(): Level created.\n";
}
void Level::changeLevel(int levelNo) {
diff --git a/MapObject.cpp b/MapObject.cpp
index 5535bda..27bcc92 100644
--- a/MapObject.cpp
+++ b/MapObject.cpp
@@ -2,7 +2,6 @@
#include "MapObject.h"
MapObject::MapObject() {
- std::cout << "MapObject::MapObject(): MapObject created.\n";
isVisible = true;
}
diff --git a/Monster.cpp b/Monster.cpp
index dea5175..d268262 100644
--- a/Monster.cpp
+++ b/Monster.cpp
@@ -2,7 +2,6 @@
#include "Monster.h"
Monster::Monster() {
- std::cout << "Monster::Monster(): Monster created.\n";
health = 100;
}
diff --git a/Pickup.cpp b/Pickup.cpp
index 179e525..4154b0c 100644
--- a/Pickup.cpp
+++ b/Pickup.cpp
@@ -2,5 +2,4 @@
#include "Pickup.h"
Pickup::Pickup() {
- std::cout << "Pickup::Pickup(): Pickup created.\n";
}
diff --git a/Platform.cpp b/Platform.cpp
index 3a01a7a..7d8b90e 100644
--- a/Platform.cpp
+++ b/Platform.cpp
@@ -2,5 +2,4 @@
#include "Platform.h"
Platform::Platform() {
- std::cout << "Platform::Platform(): Platform created.\n";
}
diff --git a/Player.cpp b/Player.cpp
index 9865648..fcc626d 100644
--- a/Player.cpp
+++ b/Player.cpp
@@ -2,7 +2,6 @@
#include "Player.h"
Player::Player() {
- std::cout << "Player::Player(): Player created.\n";
health = 100;
}
diff --git a/Sprite.cpp b/Sprite.cpp
index 3b10208..e920361 100644
--- a/Sprite.cpp
+++ b/Sprite.cpp
@@ -2,7 +2,6 @@
#include "Sprite.h"
Sprite::Sprite() {
- std::cout << "Sprite::Sprite(): Sprite created.\n";
isVisible = true;
}