diff options
Diffstat (limited to 'src/libjin/Input/Mouse.h')
-rw-r--r-- | src/libjin/Input/Mouse.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/libjin/Input/Mouse.h b/src/libjin/Input/Mouse.h deleted file mode 100644 index 7e93792..0000000 --- a/src/libjin/Input/Mouse.h +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef __LIBJIN_MOUSE_H -#define __LIBJIN_MOUSE_H -#include "../configuration.h" -#ifdef LIBJIN_MODULES_INPUT - -#include "../Common/Singleton.hpp" - -namespace jin -{ - namespace input - { - - class Mouse : public Singleton<Mouse> - { - public: - void getState(int* x, int* y); - void setVisible(bool visible); - - private: - singleton(Mouse); - - Mouse() {}; - ~Mouse() {}; - - }; - - } // namespace input -} // namespace jin - -#endif // LIBJIN_MODULES_INPUT -#endif // __LIBJIN_MOUSE_H
\ No newline at end of file |