Files
lime/project/include/app/RenderEvent.h
2014-06-19 00:34:14 -07:00

37 lines
385 B
C++

#ifndef LIME_APP_RENDER_EVENT_H
#define LIME_APP_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