From a8b7a90a5886054de083b8c82300fbbfc198fa5a Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Sat, 27 Nov 2010 23:16:41 +0000 Subject: Remove all of the object creation debugging output --- Creature.cpp | 1 - Hazard.cpp | 1 - Level.cpp | 1 - MapObject.cpp | 1 - Monster.cpp | 1 - Pickup.cpp | 1 - Platform.cpp | 1 - Player.cpp | 1 - Sprite.cpp | 1 - 9 files changed, 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; } -- cgit v1.2.3