From c9e24aaf5f867b5706560e109f5efabaeec03886 Mon Sep 17 00:00:00 2001 From: Ari Vuollet Date: Wed, 2 Apr 2025 22:24:50 +0300 Subject: [PATCH] Fix documentation generation --- Source/Engine/Input/Mouse.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Engine/Input/Mouse.h b/Source/Engine/Input/Mouse.h index aecccd965..d9d2221dd 100644 --- a/Source/Engine/Input/Mouse.h +++ b/Source/Engine/Input/Mouse.h @@ -120,7 +120,8 @@ public: /// Gets the current state of mouse relative mode. /// /// The window to check against, or null to check for any window. - virtual API_FUNCTION() bool IsRelative(Window* window = nullptr) const + /// True if mouse is in relative mode, otherwise false. + API_FUNCTION() virtual bool IsRelative(Window* window = nullptr) const { return _relativeMode; }