diff options
author | cutealien <cutealien@dfc29bdd-3216-0410-991c-e03cc46cb475> | 2020-12-30 19:08:13 +0000 |
---|---|---|
committer | cutealien <cutealien@dfc29bdd-3216-0410-991c-e03cc46cb475> | 2020-12-30 19:08:13 +0000 |
commit | f1a58b706ce509ee8dc722fd82b4bdaddb7d93af (patch) | |
tree | 273274700b1c52e93a3c4b26244c6ed9c06d693f | |
parent | d07057959e89088d0d656d8caab074c7be116478 (diff) | |
download | irrlicht-f1a58b706ce509ee8dc722fd82b4bdaddb7d93af.tar.xz |
Fix bug introduced in last merge from svn trunk
struct STouchInput was in there twice.
git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/branches/ogl-es@6183 dfc29bdd-3216-0410-991c-e03cc46cb475
-rw-r--r-- | include/IEventReceiver.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/IEventReceiver.h b/include/IEventReceiver.h index 11a50da..f5870fb 100644 --- a/include/IEventReceiver.h +++ b/include/IEventReceiver.h @@ -353,22 +353,6 @@ struct SEvent };
- //! Any kind of touch event.
- struct STouchInput
- {
- // Touch ID.
- size_t ID;
-
- // X position of simple touch.
- s32 X;
-
- // Y position of simple touch.
- s32 Y;
-
- //! Type of touch event.
- ETOUCH_INPUT_EVENT Event;
- };
-
//! Any kind of mouse event.
struct SMouseInput
{
|