Index: logger.cpp
===================================================================
--- logger.cpp	(revision c61323ad47d109393de51910f8bc9c0f688c8fab)
+++ logger.cpp	(revision 1fcca9e10afbbdb6018f1458e360a5c3db79c17a)
@@ -1,3 +1,3 @@
-#include "logger.h"
+#include "logger.hpp"
 
 #include <cstdio>
Index: gger.h
===================================================================
--- logger.h	(revision c61323ad47d109393de51910f8bc9c0f688c8fab)
+++ 	(revision )
@@ -1,22 +1,0 @@
-#ifndef LOGGER_H
-#define LOGGER_H
-
-#include <string>
-#include <fstream>
-
-using namespace std;
-
-#define GL_LOG_FILE "gl.log"
-#define LOG_FILE "game.log"
-
-extern ofstream ofs;
-
-bool restart_gl_log();
-bool gl_log(const string message, ...);
-bool gl_log_err(const string message, ...);
-
-void open_log();
-ofstream& get_log();
-void close_log();
-
-#endif
Index: logger.hpp
===================================================================
--- logger.hpp	(revision 1fcca9e10afbbdb6018f1458e360a5c3db79c17a)
+++ logger.hpp	(revision 1fcca9e10afbbdb6018f1458e360a5c3db79c17a)
@@ -0,0 +1,22 @@
+#ifndef LOGGER_H
+#define LOGGER_H
+
+#include <string>
+#include <fstream>
+
+using namespace std;
+
+#define GL_LOG_FILE "gl.log"
+#define LOG_FILE "game.log"
+
+extern ofstream ofs;
+
+bool restart_gl_log();
+bool gl_log(const string message, ...);
+bool gl_log_err(const string message, ...);
+
+void open_log();
+ofstream& get_log();
+void close_log();
+
+#endif
Index: new-game.cpp
===================================================================
--- new-game.cpp	(revision c61323ad47d109393de51910f8bc9c0f688c8fab)
+++ new-game.cpp	(revision 1fcca9e10afbbdb6018f1458e360a5c3db79c17a)
@@ -27,5 +27,5 @@
 #include <map>
 
-#include "logger.h"
+#include "logger.hpp"
 #include "utils.hpp"
 
