Slight refactor

This commit is contained in:
Joshua Granick
2014-06-09 23:44:48 -07:00
parent 78bcad8f95
commit 8fd0f13bc1
15 changed files with 32 additions and 68 deletions

View File

@@ -0,0 +1,37 @@
#ifndef LIME_GRAPHICS_RENDER_EVENT_H
#define LIME_GRAPHICS_RENDER_EVENT_H
#include <hx/CFFI.h>
namespace lime {
enum RenderEventType {
RENDER
};
class RenderEvent {
public:
static AutoGCRoot* callback;
static AutoGCRoot* eventObject;
RenderEvent ();
static void Dispatch (RenderEvent* event);
RenderEventType type;
};
}
#endif