|
|
@@ -1,6 +1,7 @@
|
|
|
#pragma once
|
|
|
#include "../oxygine-include.h"
|
|
|
#include "../EventDispatcher.h"
|
|
|
+#include "../Event.h"
|
|
|
#include "../math/Vector2.h"
|
|
|
#include <string>
|
|
|
|
|
|
@@ -137,6 +138,13 @@ namespace oxygine
|
|
|
EVENT_EXIT = sysEventID('c', 'E', 'x'), //dispatched from core::release
|
|
|
};
|
|
|
|
|
|
+ class PreCreateWindowEvent : public Event
|
|
|
+ {
|
|
|
+ public:
|
|
|
+ PreCreateWindowEvent():Event(EVENT_PRECREATEWINDOW){}
|
|
|
+ int flags;
|
|
|
+ };
|
|
|
+
|
|
|
spEventDispatcher getDispatcher();
|
|
|
|
|
|
void init0();
|