change vars name and add code doc

This commit is contained in:
Cristhofer Marques
2022-10-13 09:10:35 -03:00
parent 0e45f16b19
commit 84009baeb0

View File

@@ -683,17 +683,17 @@ public:
}
/// <summary>
/// todo : add doc
/// Gets the value indicating if the mouse flipped to the other screen edge horizontally
/// </summary>
API_PROPERTY() bool IsHorizontalFlippingMouse() const
API_PROPERTY() bool IsMouseFlippingHorizontally() const
{
return _isHorizontalFlippingMouse;
}
/// <summary>
/// todo : add doc
/// Gets the value indicating if the mouse flipped to the other screen edge vertically
/// </summary>
API_PROPERTY() bool IsVerticalFlippingMouse() const
API_PROPERTY() bool IsMouseFlippingVertically() const
{
return _isVerticalFlippingMouse;
}