diff --git a/src/services/environment/Environment.cpp b/src/services/environment/Environment.cpp new file mode 100644 index 0000000..58006af --- /dev/null +++ b/src/services/environment/Environment.cpp @@ -0,0 +1,5 @@ +// +// Created by tessellator on 30/10/16. +// + +#include "Environment.h" diff --git a/src/services/environment/Environment.h b/src/services/environment/Environment.h new file mode 100644 index 0000000..ba7d684 --- /dev/null +++ b/src/services/environment/Environment.h @@ -0,0 +1,6 @@ +#pragma once + +class Environment +{ + +}; \ No newline at end of file diff --git a/src/services/environment/world/IWorld.h b/src/services/environment/world/IWorld.h new file mode 100644 index 0000000..dfe246c --- /dev/null +++ b/src/services/environment/world/IWorld.h @@ -0,0 +1,8 @@ +// +// Created by tessellator on 30/10/16. +// + +#ifndef FLOWENGINE_IWORLD_H +#define FLOWENGINE_IWORLD_H + +#endif //FLOWENGINE_IWORLD_H diff --git a/src/services/environment/world/World.cpp b/src/services/environment/world/World.cpp new file mode 100644 index 0000000..b1ff58e --- /dev/null +++ b/src/services/environment/world/World.cpp @@ -0,0 +1,5 @@ +// +// Created by tessellator on 30/10/16. +// + +#include "World.h" diff --git a/src/services/environment/world/World.h b/src/services/environment/world/World.h new file mode 100644 index 0000000..c5a0756 --- /dev/null +++ b/src/services/environment/world/World.h @@ -0,0 +1,6 @@ +#pragma once + +class World +{ + +}; \ No newline at end of file