diff options
author | chai <chaifix@163.com> | 2018-10-19 08:36:44 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-10-19 08:36:44 +0800 |
commit | 7d5f055547e70fa93ee9ac944e62f8d657b9dc55 (patch) | |
tree | 081782a1541854db4b8eb69c4b43081f52711286 /src/libjin/Game | |
parent | 02dd1f38008594048f0e28bad01e7c6d18844198 (diff) |
*修改文件名
Diffstat (limited to 'src/libjin/Game')
-rw-r--r-- | src/libjin/Game/je_game.cpp (renamed from src/libjin/Game/Game.cpp) | 12 | ||||
-rw-r--r-- | src/libjin/Game/je_game.h (renamed from src/libjin/Game/Game.h) | 8 |
2 files changed, 11 insertions, 9 deletions
diff --git a/src/libjin/Game/Game.cpp b/src/libjin/Game/je_game.cpp index b04661f..10e9e44 100644 --- a/src/libjin/Game/Game.cpp +++ b/src/libjin/Game/je_game.cpp @@ -1,10 +1,12 @@ -#include "game.h" -#include "../Time/Timer.h" -#include "../input/Event.h" -#include "../Graphics/Window.h" -#include "../Math/Math.h" #include <iostream> +#include "../time/je_timer.h" +#include "../input/je_event.h" +#include "../graphics/je_window.h" +#include "../math/je_math.h" + +#include "je_game.h" + namespace jin { namespace core diff --git a/src/libjin/Game/Game.h b/src/libjin/Game/je_game.h index c7607a1..9323177 100644 --- a/src/libjin/Game/Game.h +++ b/src/libjin/Game/je_game.h @@ -1,11 +1,11 @@ #ifndef __LIBJIN_CORE_GAME_H #define __LIBJIN_CORE_GAME_H -#include "SDL2/SDL.h" +#include "../common/je_subsystem.hpp" +#include "../utils/je_macros.h" +#include "../input/je_Event.h" -#include "../Common/Subsystem.hpp" -#include "../utils/macros.h" -#include "../Input/Event.h" +#include "SDL2/SDL.h" namespace jin { |