MouseLocation.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 namespace MouseWithoutBorders.Class 6 { 7 internal class MouseLocation 8 { 9 internal int X { get; set; } 10 11 internal int Y { get; set; } 12 13 internal int Count { get; set; } 14 15 internal void ResetCount() 16 { 17 Count = 1; 18 } 19 } 20 }