Files
lovedos/src/mouse.h

26 lines
437 B
C
Raw Normal View History

2017-01-13 22:40:12 +00:00
/**
* Copyright (c) 2017 rxi
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the MIT license. See LICENSE for details.
*/
#ifndef MOUSE_H
#define MOUSE_H
enum {
MOUSE_BUTTON_LEFT,
MOUSE_BUTTON_RIGHT,
MOUSE_BUTTON_MIDDLE,
MOUSE_BUTTON_MAX
};
2016-10-15 15:52:16 +01:00
void mouse_init(void);
void mouse_update(void);
int mouse_isDown(int button);
int mouse_getX(void);
int mouse_getY(void);
#endif