blob: cb70407ce2b72d1a3d20d1566566d4ba5e3e0513 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef __JIN_MOUSE_H
#define __JIN_MOUSE_H
#include "../modules.h"
#ifdef JIN_MODULES_INPUT
#include "../Common/Singleton.h"
namespace jin
{
namespace input
{
class Mouse : public Singleton<Mouse>
{
public:
//
void getState(int* x, int* y);
private:
Mouse() {};
~Mouse() {};
SINGLETON(Mouse);
};
}
}
#endif // JIN_MODULES_INPUT
#endif // __JIN_MOUSE_H
|