summaryrefslogtreecommitdiffstats
path: root/engine/include/serial/focusable.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'engine/include/serial/focusable.hpp')
-rw-r--r--engine/include/serial/focusable.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/engine/include/serial/focusable.hpp b/engine/include/serial/focusable.hpp
index 008f7a3..f139577 100644
--- a/engine/include/serial/focusable.hpp
+++ b/engine/include/serial/focusable.hpp
@@ -4,15 +4,14 @@
#include "core/object.hpp"
#include "types.hpp"
-class task_s;
union SDL_Event;
+namespace flat {
+
class Focusable : virtual public flat::core::object
{
bool focused;
- task_s * event_trigger;
-
protected:
/* Callback to event */
@@ -34,4 +33,6 @@ public:
void serial_precall(void*);
};
+}
+
#endif