diff options
| author | Max-001 <maxsmits21@kpnmail.nl> | 2024-12-21 11:20:30 +0100 | 
|---|---|---|
| committer | Max-001 <maxsmits21@kpnmail.nl> | 2024-12-21 11:20:30 +0100 | 
| commit | 9da9dd5a1ceb877dd6d822e91b3be2ffd4b43160 (patch) | |
| tree | 98c1141d2e0f9ddb2162749f068ccd080c409196 /src | |
| parent | 999e1b928aa632e80521651f14013c267af604dc (diff) | |
| parent | d003d27e21705c7ccdbf81c9b45bf28c57dcc188 (diff) | |
Merge remote-tracking branch 'origin/master' into max/game
Diffstat (limited to 'src')
| -rw-r--r-- | src/crepe/system/InputSystem.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/crepe/system/InputSystem.h b/src/crepe/system/InputSystem.h index 2cb80e5..45b238b 100644 --- a/src/crepe/system/InputSystem.h +++ b/src/crepe/system/InputSystem.h @@ -23,7 +23,7 @@ public:  	/**  	 * \param metadata Metadata of the button pressed  	 */ -	ButtonPressEvent(const Metadata & metadata) : metadata(metadata){}; +	ButtonPressEvent(const Metadata & metadata) : metadata(metadata) {};  };  //! Event triggered when the mouse enters a button  class ButtonEnterEvent : public Event { @@ -33,7 +33,7 @@ public:  	/**  	 * \param metadata Metadata of the button pressed  	 */ -	ButtonEnterEvent(const Metadata & metadata) : metadata(metadata){}; +	ButtonEnterEvent(const Metadata & metadata) : metadata(metadata) {};  };  //! Event triggered when the mouse leaves a button  class ButtonExitEvent : public Event { @@ -43,7 +43,7 @@ public:  	/**  	 * \param metadata Metadata of the button pressed  	 */ -	ButtonExitEvent(const Metadata & metadata) : metadata(metadata){}; +	ButtonExitEvent(const Metadata & metadata) : metadata(metadata) {};  };  /** |