aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/InputSystem.h
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-28 09:01:37 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-28 09:01:37 +0100
commit570acb7e9258edcd6a06fff4dd2ce0ff12a3e873 (patch)
tree0b9d8406f6d6a8e2dcd187bee7277bc81a270acc /src/crepe/system/InputSystem.h
parent8635d1ace31232c295c6cb85ea215887c6fb1319 (diff)
added on_enter and on_hover
Diffstat (limited to 'src/crepe/system/InputSystem.h')
-rw-r--r--src/crepe/system/InputSystem.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/crepe/system/InputSystem.h b/src/crepe/system/InputSystem.h
index b648144..c6ca114 100644
--- a/src/crepe/system/InputSystem.h
+++ b/src/crepe/system/InputSystem.h
@@ -54,16 +54,6 @@ private:
* This method processes the mouse movement event and updates the button hover state.
*/
void handle_move(const SDLContext::EventData & eventData);
-
- /**
- * \brief Finds the transform component associated with a button.
- * \param button The button to find the associated transform for.
- * \param transforms A list of transforms to search through.
- * \return A pointer to the transform of the button, or nullptr if not found.
- */
- OptionalRef<Transform> find_transform_for_button(Button & button,
- RefVector<Transform> & transforms);
-
/**
* \brief Checks if the mouse position is inside the bounds of the button.
* \param eventData The event data containing the mouse position.