Skip to content

Commit

Permalink
Create World service to store common data
Browse files Browse the repository at this point in the history
  • Loading branch information
massile committed Oct 31, 2016
1 parent bdc4ab4 commit 4d3ad43
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/services/environment/Environment.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
//
// Created by tessellator on 30/10/16.
//

#include "Environment.h"
6 changes: 6 additions & 0 deletions src/services/environment/Environment.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#pragma once

class Environment
{

};
8 changes: 8 additions & 0 deletions src/services/environment/world/IWorld.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//
// Created by tessellator on 30/10/16.
//

#ifndef FLOWENGINE_IWORLD_H
#define FLOWENGINE_IWORLD_H

#endif //FLOWENGINE_IWORLD_H
5 changes: 5 additions & 0 deletions src/services/environment/world/World.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
//
// Created by tessellator on 30/10/16.
//

#include "World.h"
6 changes: 6 additions & 0 deletions src/services/environment/world/World.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#pragma once

class World
{

};

0 comments on commit 4d3ad43

Please sign in to comment.