aboutsummaryrefslogtreecommitdiffstats
path: root/src/terrain.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/terrain.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/terrain.cpp b/src/terrain.cpp
index 692bb97..42ee676 100644
--- a/src/terrain.cpp
+++ b/src/terrain.cpp
@@ -2,14 +2,10 @@
#include <iostream>
-#include "raylib.h"
Terrain::Terrain(int const & x, int const & y, int const & thick)
- : x(x), y(y), thick(thick)
{
- std::cout << "\ncreate new terrain with parameters :\n" << this->x << " " << this->y << " " << this->thick << std::endl;
}
Terrain::~Terrain(void) {
- std::cout << "destroy terrain\n";
}