From 62d8a83ddb398376b04f866d5f826cdfdb686ab5 Mon Sep 17 00:00:00 2001 From: Faerbit Date: Thu, 30 Oct 2014 23:32:52 +0100 Subject: [PATCH] Implemented empty Terrain constructor(compiler was complaining. --- terrain.cc | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 terrain.cc diff --git a/terrain.cc b/terrain.cc new file mode 100644 index 0000000..9b11ed1 --- /dev/null +++ b/terrain.cc @@ -0,0 +1,7 @@ +#include "terrain.hh" + +Terrain::Terrain() { +} + +Terrain::~Terrain() { +}