From f58dea71037dca847e373f6efbf75b6056f212ac Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Fri, 25 Jan 2019 02:54:54 +0100 Subject: It compiles! Probably super broken, but compiles! --- engine/include/layer.hpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'engine/include/layer.hpp') diff --git a/engine/include/layer.hpp b/engine/include/layer.hpp index c3294e4..c6ff0c9 100644 --- a/engine/include/layer.hpp +++ b/engine/include/layer.hpp @@ -3,13 +3,14 @@ #include "collector.hpp" -class FlatLayer : public FlatCollector -{ - -public: - - FlatLayer(FlatLayer *parent); - ~FlatLayer(); -}; +namespace flat { + class FlatLayer : public FlatCollector + { + + public: + FlatLayer(FlatLayer *parent); + ~FlatLayer(); + }; +} #endif -- cgit v1.2.1