From a3e418c1a48a057d82fc3faf927ebf1cd3da7227 Mon Sep 17 00:00:00 2001 From: WBoerenkamps Date: Tue, 17 Dec 2024 20:48:34 +0100 Subject: feedback --- src/crepe/system/InputSystem.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/crepe/system/InputSystem.h') diff --git a/src/crepe/system/InputSystem.h b/src/crepe/system/InputSystem.h index 45c593a..e580d8e 100644 --- a/src/crepe/system/InputSystem.h +++ b/src/crepe/system/InputSystem.h @@ -19,31 +19,31 @@ class Transform; class ButtonPressEvent : public Event { public: //! Metadata of the button. - const Metadata & meta_data; + const Metadata & metadata; /** - * \param meta_data Metadata of the button pressed + * \param metadata Metadata of the button pressed */ - ButtonPressEvent(const Metadata & meta_data) : meta_data(meta_data){}; + ButtonPressEvent(const Metadata & metadata) : metadata(metadata){}; }; //! Event triggered when the mouse enters a button class ButtonEnterEvent : public Event { public: //! Metadata of the button. - const Metadata & meta_data; + const Metadata & metadata; /** - * \param meta_data Metadata of the button pressed + * \param metadata Metadata of the button pressed */ - ButtonEnterEvent(const Metadata & meta_data) : meta_data(meta_data){}; + ButtonEnterEvent(const Metadata & metadata) : metadata(metadata){}; }; //! Event triggered when the mouse leaves a button class ButtonExitEvent : public Event { public: //! Metadata of the button. - const Metadata & meta_data; + const Metadata & metadata; /** - * \param meta_data Metadata of the button pressed + * \param metadata Metadata of the button pressed */ - ButtonExitEvent(const Metadata & meta_data) : meta_data(meta_data){}; + ButtonExitEvent(const Metadata & metadata) : metadata(metadata){}; }; /** -- cgit v1.2.3