Skip to content

Commit

Permalink
Start on Settings and Loggers
Browse files Browse the repository at this point in the history
  • Loading branch information
tsteinholz committed Sep 12, 2015
1 parent 5551b16 commit 15e9ffe
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ set(SOURCE_FILES
Public/Networking/Packets/Packet.h
Public/Networking/Server.h

Public/Utils/Log.h
Public/Utils/Settings.h

#Private Source Files
Private/Engine.cpp
Expand All @@ -85,6 +87,9 @@ set(SOURCE_FILES

Private/Networking/Packets/Packet.cpp
Private/Networking/Server.cpp

Private/Utils/Log.cpp
Private/Utils/Settings.cpp
)

# Build Library
Expand Down
6 changes: 6 additions & 0 deletions Source/Private/Utils/Log.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <Utils/Log.h>

namespace LSEngine
{

}
6 changes: 6 additions & 0 deletions Source/Private/Utils/Settings.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <Utils/Settings.h>

namespace LSEngine
{

}
10 changes: 10 additions & 0 deletions Source/Public/Utils/Log.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#pragma once
#ifndef LSENGINE_UTILS_LOG_H
#define LSENGINE_UTILS_LOG_H

namespace LSEngine
{

}

#endif //LSENGINE_UTILS_LOG_H
10 changes: 10 additions & 0 deletions Source/Public/Utils/Settings.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#pragma once
#ifndef LSENGINE_UTILS_SETTINGS_H
#define LSENGINE_UTILS_SETTINGS_H

namespace LSEngine
{

}

#endif // LSENGINE_UTILS_SETTINGS_H

0 comments on commit 15e9ffe

Please sign in to comment.