diff options
author | chai <chaifix@163.com> | 2018-10-18 08:03:04 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-10-18 08:03:04 +0800 |
commit | 392c4e7c42c000d82e641a3d04f0d2a01f0aca21 (patch) | |
tree | af48d292002245229843d28d364023e1ae72a3e3 /src/libjin/Input | |
parent | b27581c3d9657a4a05191e47eed78d00ec0a46cd (diff) |
*格式化代码
Diffstat (limited to 'src/libjin/Input')
-rw-r--r-- | src/libjin/Input/Event.h | 2 | ||||
-rw-r--r-- | src/libjin/Input/Mouse.cpp | 2 | ||||
-rw-r--r-- | src/libjin/Input/Mouse.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/libjin/Input/Event.h b/src/libjin/Input/Event.h index af2ced2..3f2bc8e 100644 --- a/src/libjin/Input/Event.h +++ b/src/libjin/Input/Event.h @@ -1,6 +1,6 @@ #ifndef __LIBJIN_EVENT_H #define __LIBJIN_EVENT_H -#include "../jin_configuration.h" +#include "../configuration.h" #if LIBJIN_MODULES_INPUT namespace jin diff --git a/src/libjin/Input/Mouse.cpp b/src/libjin/Input/Mouse.cpp index 9fcb4ee..dcaa771 100644 --- a/src/libjin/Input/Mouse.cpp +++ b/src/libjin/Input/Mouse.cpp @@ -1,4 +1,4 @@ -#include "../jin_configuration.h" +#include "../configuration.h" #ifdef LIBJIN_MODULES_INPUT #include "SDL.h" diff --git a/src/libjin/Input/Mouse.h b/src/libjin/Input/Mouse.h index 5f77f0d..7e93792 100644 --- a/src/libjin/Input/Mouse.h +++ b/src/libjin/Input/Mouse.h @@ -1,6 +1,6 @@ #ifndef __LIBJIN_MOUSE_H #define __LIBJIN_MOUSE_H -#include "../jin_configuration.h" +#include "../configuration.h" #ifdef LIBJIN_MODULES_INPUT #include "../Common/Singleton.hpp" @@ -17,7 +17,7 @@ namespace jin void setVisible(bool visible); private: - SINGLETON(Mouse); + singleton(Mouse); Mouse() {}; ~Mouse() {}; |