diff options
author | chai <chaifix@163.com> | 2018-09-02 19:26:41 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-09-02 19:26:41 +0800 |
commit | 05d1cfb909390de4843ac6932be14520b80c1bcd (patch) | |
tree | d6d2e73b079caad3f18952c964d151388952cb9c /src/libjin/input/mouse.h | |
parent | 4f147c08fc5498af393729c5e4a3d91894c97467 (diff) |
*update
Diffstat (limited to 'src/libjin/input/mouse.h')
-rw-r--r-- | src/libjin/input/mouse.h | 11 |
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 |