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

@@ -8,10 +8,10 @@
namespace lime {
enum WindowEventType {
WINDOW_ACTIVATE,
WINDOW_CLOSE,
WINDOW_DEACTIVATE,
@@ -25,12 +25,12 @@ namespace lime {
WINDOW_MOVE,
WINDOW_RESIZE,
WINDOW_RESTORE,
};
struct WindowEvent {
hl_type* t;
int height;
WindowEventType type;
@@ -38,17 +38,17 @@ namespace lime {
int windowID;
int x;
int y;
static ValuePointer* callback;
static ValuePointer* eventObject;
WindowEvent ();
static void Dispatch (WindowEvent* event);
};
}