summaryrefslogtreecommitdiffstats
path: root/engine/include/serial
diff options
context:
space:
mode:
authorancarola <raffaele.ancarola@epfl.ch>2019-01-22 02:01:43 +0100
committerancarola <raffaele.ancarola@epfl.ch>2019-01-22 02:01:43 +0100
commit35c5c0551edfe786a5d05969df85cef544ebeea6 (patch)
tree4ec3dd0f64e91033b836cdde34687206601d9f1b /engine/include/serial
parentFin qui tutto bene (diff)
downloadflatland-35c5c0551edfe786a5d05969df85cef544ebeea6.tar.gz
flatland-35c5c0551edfe786a5d05969df85cef544ebeea6.zip
Soos
Diffstat (limited to 'engine/include/serial')
-rw-r--r--engine/include/serial/focusable.h6
-rw-r--r--engine/include/serial/keyfocusable.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/engine/include/serial/focusable.h b/engine/include/serial/focusable.h
index a334e79..4880ff8 100644
--- a/engine/include/serial/focusable.h
+++ b/engine/include/serial/focusable.h
@@ -1,8 +1,8 @@
#ifndef __FOCUSABLE_H__
#define __FOCUSABLE_H__
-#include "object.h"
-#include "types.h"
+#include "object.hpp"
+#include "types.hpp"
class task_s;
union SDL_Event;
@@ -19,7 +19,7 @@ protected:
virtual void serial_cb(const SDL_Event*) = 0;
/* Event stack specification */
- virtual Uint32 stackID() const = 0;
+ virtual uint32_t stackID() const = 0;
public:
diff --git a/engine/include/serial/keyfocusable.h b/engine/include/serial/keyfocusable.h
index c97c791..44c1f1b 100644
--- a/engine/include/serial/keyfocusable.h
+++ b/engine/include/serial/keyfocusable.h
@@ -10,7 +10,7 @@ class KeyFocusable : virtual public Focusable
virtual void serial_cb(const SDL_Event*) override;
- virtual Uint32 stackID() const override;
+ virtual uint32_t stackID() const override;
protected: