diff options
author | Luke Bratch <l_bratch@yahoo.co.uk> | 2010-11-27 23:16:41 +0000 |
---|---|---|
committer | Luke Bratch <l_bratch@yahoo.co.uk> | 2010-11-27 23:16:41 +0000 |
commit | a8b7a90a5886054de083b8c82300fbbfc198fa5a (patch) | |
tree | a9c8dedca64895a0c74ea8925f7acb55d016b6c6 | |
parent | 4cc701b89af422e75057a3a13d0bb1745896d099 (diff) |
Remove all of the object creation debugging output
-rw-r--r-- | Creature.cpp | 1 | ||||
-rw-r--r-- | Hazard.cpp | 1 | ||||
-rw-r--r-- | Level.cpp | 1 | ||||
-rw-r--r-- | MapObject.cpp | 1 | ||||
-rw-r--r-- | Monster.cpp | 1 | ||||
-rw-r--r-- | Pickup.cpp | 1 | ||||
-rw-r--r-- | Platform.cpp | 1 | ||||
-rw-r--r-- | Player.cpp | 1 | ||||
-rw-r--r-- | Sprite.cpp | 1 |
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; } @@ -2,5 +2,4 @@ #include "Hazard.h" Hazard::Hazard() { - std::cout << "Hazard::Hazard(): Hazard created.\n"; } @@ -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; } @@ -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"; } @@ -2,7 +2,6 @@ #include "Player.h" Player::Player() { - std::cout << "Player::Player(): Player created.\n"; health = 100; } @@ -2,7 +2,6 @@ #include "Sprite.h" Sprite::Sprite() { - std::cout << "Sprite::Sprite(): Sprite created.\n"; isVisible = true; } |