diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2022-01-05 21:42:26 +0100 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2022-01-05 21:42:26 +0100 |
commit | 4e266c0e8f0b49cb39f3f2c3bc43d0bc09cc3aca (patch) | |
tree | d35d35c340e63589350c351738d4af3dab68e3d8 /src/terrain.cpp | |
parent | terrain is fukkkkd (diff) | |
download | threshold-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.cpp | 4 |
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"; } |