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

@@ -6,30 +6,30 @@
namespace lime {
class Application {
public:
virtual ~Application () {};
static AutoGCRoot* callback;
virtual int Exec () = 0;
virtual void Init () = 0;
virtual int Quit () = 0;
virtual void SetFrameRate (double frameRate) = 0;
virtual bool Update () = 0;
};
Application* CreateApplication ();
}

View File

@@ -7,32 +7,32 @@
namespace lime {
enum ApplicationEventType {
UPDATE,
EXIT
};
struct ApplicationEvent {
hl_type* t;
int deltaTime;
ApplicationEventType type;
static ValuePointer* callback;
static ValuePointer* eventObject;
ApplicationEvent ();
static void Dispatch (ApplicationEvent* event);
};
}