aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Input/Mouse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/Input/Mouse.h')
-rw-r--r--src/libjin/Input/Mouse.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/libjin/Input/Mouse.h b/src/libjin/Input/Mouse.h
index 5fc6b47..584c516 100644
--- a/src/libjin/Input/Mouse.h
+++ b/src/libjin/Input/Mouse.h
@@ -9,21 +9,22 @@ namespace jin
{
namespace input
{
+
class Mouse : public Singleton<Mouse>
{
public:
-
- //
void getState(int* x, int* y);
private:
+ SINGLETON(Mouse);
+
Mouse() {};
~Mouse() {};
- SINGLETON(Mouse);
};
-}
-}
+
+} // input
+} // jin
#endif // JIN_MODULES_INPUT
#endif // __JIN_MOUSE_H \ No newline at end of file