aboutsummaryrefslogtreecommitdiffstats
path: root/src/terrain.cpp
diff options
context:
space:
mode:
authorsalaaad2 <arthurdurant263@gmail.com>2022-01-05 21:42:26 +0100
committersalaaad2 <arthurdurant263@gmail.com>2022-01-05 21:42:26 +0100
commit4e266c0e8f0b49cb39f3f2c3bc43d0bc09cc3aca (patch)
treed35d35c340e63589350c351738d4af3dab68e3d8 /src/terrain.cpp
parentterrain is fukkkkd (diff)
downloadthreshold-4e266c0e8f0b49cb39f3f2c3bc43d0bc09cc3aca.tar.gz
threshold-4e266c0e8f0b49cb39f3f2c3bc43d0bc09cc3aca.tar.bz2
threshold-4e266c0e8f0b49cb39f3f2c3bc43d0bc09cc3aca.tar.xz
threshold-4e266c0e8f0b49cb39f3f2c3bc43d0bc09cc3aca.tar.zst
threshold-4e266c0e8f0b49cb39f3f2c3bc43d0bc09cc3aca.zip
reload works
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";
}