Remove whitespace lines

This commit is contained in:
Joshua Granick
2018-07-18 17:32:51 -07:00
parent d3269a79ad
commit 78e99bf1d9
447 changed files with 36856 additions and 36888 deletions

View File

@@ -7,10 +7,10 @@
namespace lime {
enum JoystickEventType {
JOYSTICK_AXIS_MOVE,
JOYSTICK_HAT_MOVE,
JOYSTICK_TRACKBALL_MOVE,
@@ -18,12 +18,12 @@ namespace lime {
JOYSTICK_BUTTON_UP,
JOYSTICK_CONNECT,
JOYSTICK_DISCONNECT
};
struct JoystickEvent {
hl_type* t;
int id;
int index;
@@ -31,17 +31,17 @@ namespace lime {
int eventValue;
double x;
double y;
static ValuePointer* callback;
static ValuePointer* eventObject;
JoystickEvent ();
static void Dispatch (JoystickEvent* event);
};
}