aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Input/je_mouse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/Input/je_mouse.h')
-rw-r--r--src/libjin/Input/je_mouse.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/libjin/Input/je_mouse.h b/src/libjin/Input/je_mouse.h
index 6f01993..bd25e9c 100644
--- a/src/libjin/Input/je_mouse.h
+++ b/src/libjin/Input/je_mouse.h
@@ -10,16 +10,33 @@ namespace JinEngine
namespace Input
{
+ ///
+ ///
+ ///
class Mouse : public Singleton<Mouse>
{
public:
+ ///
+ ///
+ ///
void getState(int* x, int* y);
+
+ ///
+ ///
+ ///
void setVisible(bool visible);
private:
singleton(Mouse);
+ ///
+ ///
+ ///
Mouse() {};
+
+ ///
+ ///
+ ///
~Mouse() {};
};
@@ -28,4 +45,5 @@ namespace JinEngine
} // namespace JinEngine
#endif // LIBJIN_MODULES_INPUT
+
#endif // __JE_MOUSE_H \ No newline at end of file