diff --git a/source/Cosmos.System2/MouseManager.cs b/source/Cosmos.System2/MouseManager.cs index 69d0e1c0b..9789841e8 100644 --- a/source/Cosmos.System2/MouseManager.cs +++ b/source/Cosmos.System2/MouseManager.cs @@ -54,9 +54,9 @@ namespace Cosmos.System /// public static uint Y; - /// - /// The Point of the mouse. - /// + // /// + // /// The Point of the mouse. + // /// // public static Point GetPoint() {return new Point((int)MouseManager.X, (int)MouseManager.Y);} /// @@ -157,6 +157,10 @@ namespace Cosmos.System } } + /// + /// Add mouse to the mouse list. + /// + /// A mouse to add. private static void AddMouse(MouseBase aMouse) { aMouse.OnMouseChanged = HandleMouse;