diff options
Diffstat (limited to 'src/libjin/core')
-rw-r--r-- | src/libjin/core/configuration.h | 12 | ||||
-rw-r--r-- | src/libjin/core/version.h | 78 |
2 files changed, 45 insertions, 45 deletions
diff --git a/src/libjin/core/configuration.h b/src/libjin/core/configuration.h index 40956b5..d6451cb 100644 --- a/src/libjin/core/configuration.h +++ b/src/libjin/core/configuration.h @@ -9,17 +9,17 @@ //#define jin_debug #define jin_os_windows 0x01 -#define jin_os_mac 0x02 +#define jin_os_mac 0x02 #define jin_os_linux 0x03 #define jin_os jin_os_windows -#define jin_graphics_font 0x02 -#define jin_graphics_shader 0x04 +#define jin_graphics_font 0x02 +#define jin_graphics_shader 0x04 #define jin_graphics_particle 0x08 #define jin_graphics_animation 0x10 #define jin_graphics (jin_graphics_font|jin_graphics_shader) -#define jin_audio_sdl 0x01 +#define jin_audio_sdl 0x01 #define jin_audio_openal 0x02 #define jin_audio jin_audio_sdl @@ -42,8 +42,8 @@ #define jin_physics_box2d 0x02 //#define jin_physics jin_physics_newton -#define jin_thread_sdl 0x01 -#define jin_thread_cpp 0x02 +#define jin_thread_sdl 0x01 +#define jin_thread_cpp 0x02 #define jin_thread_pthread 0x03 #define jin_thread jin_thread_sdl diff --git a/src/libjin/core/version.h b/src/libjin/core/version.h index b5fe379..9fc403b 100644 --- a/src/libjin/core/version.h +++ b/src/libjin/core/version.h @@ -3,50 +3,50 @@ namespace JinEngine { - namespace Core - { + namespace Core + { - /// - /// Get version of Jin. - /// - /// @return Version of Jin. - /// - const char* getVersion() - { - return "Jin 0.1"; - } + /// + /// Get version of Jin. + /// + /// @return Version of Jin. + /// + const char* getVersion() + { + return "Jin 0.1"; + } - /// - /// Get author of Jin. - /// - /// @return Author of Jin. - /// - const char* getAuthor() - { - return "Chai"; - } + /// + /// Get author of Jin. + /// + /// @return Author of Jin. + /// + const char* getAuthor() + { + return "Chai"; + } - /// - /// Get release of Jin. - /// - /// @return release string of Jin. - /// - const char* getRelease() - { - return "Jin 0.1.1"; - } + /// + /// Get release of Jin. + /// + /// @return release string of Jin. + /// + const char* getRelease() + { + return "Jin 0.1.1"; + } - /// - /// Get release of Jin. - /// - /// @return Revision of Jin. - /// - int getRevision() - { - return 101; - } + /// + /// Get release of Jin. + /// + /// @return Revision of Jin. + /// + int getRevision() + { + return 101; + } - } // namespace Core + } // namespace Core } // namespace JinEngine #endif // __JE_CORE_VERSION_H__ |