diff options
author | George Marques <george@gmarqu.es> | 2017-05-24 16:06:07 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2017-05-24 16:06:07 -0300 |
commit | 452caf3f80ea7b278227d0bb48793729defaaa66 (patch) | |
tree | 9461ab34db03edc4b57c034415c0ca8c19125363 /core | |
parent | 2e3145de65257ed39a5d01c5592ea0fb90cd00ba (diff) |
Change InputEventScreenTouch from struct to class
Diffstat (limited to 'core')
-rw-r--r-- | core/os/input_event.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/input_event.h b/core/os/input_event.h index b94f0ef46a..417b7f066f 100644 --- a/core/os/input_event.h +++ b/core/os/input_event.h @@ -377,7 +377,7 @@ public: InputEventJoypadButton(); }; -struct InputEventScreenTouch : public InputEvent { +class InputEventScreenTouch : public InputEvent { GDCLASS(InputEventScreenTouch, InputEvent) int index; Vector2 pos; |