From 84009baeb00432a4e70a770adf5f2002cf9c22bf Mon Sep 17 00:00:00 2001 From: Cristhofer Marques Date: Thu, 13 Oct 2022 09:10:35 -0300 Subject: [PATCH] change vars name and add code doc --- Source/Engine/Platform/Base/WindowBase.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Engine/Platform/Base/WindowBase.h b/Source/Engine/Platform/Base/WindowBase.h index 2b10fd27b..ebeeb6b45 100644 --- a/Source/Engine/Platform/Base/WindowBase.h +++ b/Source/Engine/Platform/Base/WindowBase.h @@ -683,17 +683,17 @@ public: } /// - /// todo : add doc + /// Gets the value indicating if the mouse flipped to the other screen edge horizontally /// - API_PROPERTY() bool IsHorizontalFlippingMouse() const + API_PROPERTY() bool IsMouseFlippingHorizontally() const { return _isHorizontalFlippingMouse; } /// - /// todo : add doc + /// Gets the value indicating if the mouse flipped to the other screen edge vertically /// - API_PROPERTY() bool IsVerticalFlippingMouse() const + API_PROPERTY() bool IsMouseFlippingVertically() const { return _isVerticalFlippingMouse; }