Added mouse module (love.mouse), updated doc/files.md
This commit is contained in:
14
src/mouse.h
Normal file
14
src/mouse.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef MOUSE_H
|
||||
#define MOUSE_H
|
||||
|
||||
enum {
|
||||
MOUSE_BUTTON_LEFT,
|
||||
MOUSE_BUTTON_RIGHT,
|
||||
MOUSE_BUTTON_MIDDLE,
|
||||
MOUSE_BUTTON_MAX,
|
||||
};
|
||||
|
||||
void mouse_init(void);
|
||||
void mouse_update(void);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user