From 7b4f8e5579816214229d50bfe182cb1a18e411a1 Mon Sep 17 00:00:00 2001 From: Nathan Date: Mon, 5 May 2025 13:19:24 -0500 Subject: [PATCH] spellcheck --- include/utils/Window/WindowEvents.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/utils/Window/WindowEvents.h b/include/utils/Window/WindowEvents.h index 0c523ba..1868f40 100644 --- a/include/utils/Window/WindowEvents.h +++ b/include/utils/Window/WindowEvents.h @@ -114,6 +114,7 @@ namespace Archimedes { MouseButtonReleasedWindowEvent() : button(0) {} MouseButtonReleasedWindowEvent(unsigned int b) : button(b) {} + MouseButtonReleasedWindowEvent(unsigned int b, std::any userData) : Event(userData), button(b) {} ~MouseButtonReleasedWindowEvent() {