summaryrefslogtreecommitdiffstats
path: root/engine/include/serial/focusable.hpp
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2019-01-25 02:54:54 +0100
committerNao Pross <naopross@thearcway.org>2019-01-25 02:54:54 +0100
commitf58dea71037dca847e373f6efbf75b6056f212ac (patch)
tree3b9b66379a583eb0b162418d037ec00b66e6bebc /engine/include/serial/focusable.hpp
parentUpdate configure.py to default build libflatland.{so, a} (diff)
downloadflatland-f58dea71037dca847e373f6efbf75b6056f212ac.tar.gz
flatland-f58dea71037dca847e373f6efbf75b6056f212ac.zip
It compiles! Probably super broken, but compiles!
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