37 lines
395 B
C++
37 lines
395 B
C++
#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 |