From 4d3ad439f3e5e19c3a36fe8c7da0f5968b539ba4 Mon Sep 17 00:00:00 2001 From: Massinissa Mokhtari Date: Mon, 31 Oct 2016 05:03:44 +0100 Subject: [PATCH] Create World service to store common data --- src/services/environment/Environment.cpp | 5 +++++ src/services/environment/Environment.h | 6 ++++++ src/services/environment/world/IWorld.h | 8 ++++++++ src/services/environment/world/World.cpp | 5 +++++ src/services/environment/world/World.h | 6 ++++++ 5 files changed, 30 insertions(+) create mode 100644 src/services/environment/Environment.cpp create mode 100644 src/services/environment/Environment.h create mode 100644 src/services/environment/world/IWorld.h create mode 100644 src/services/environment/world/World.cpp create mode 100644 src/services/environment/world/World.h 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