mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
Done MouseManager api docs
This commit is contained in:
parent
911a6905ce
commit
7333a09767
1 changed files with 7 additions and 3 deletions
|
|
@ -54,9 +54,9 @@ namespace Cosmos.System
|
|||
/// </summary>
|
||||
public static uint Y;
|
||||
|
||||
/// <summary>
|
||||
/// The Point of the mouse.
|
||||
/// </summary>
|
||||
// /// <summary>
|
||||
// /// The Point of the mouse.
|
||||
// /// </summary>
|
||||
// public static Point GetPoint() {return new Point((int)MouseManager.X, (int)MouseManager.Y);}
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -157,6 +157,10 @@ namespace Cosmos.System
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Add mouse to the mouse list.
|
||||
/// </summary>
|
||||
/// <param name="aMouse">A mouse to add.</param>
|
||||
private static void AddMouse(MouseBase aMouse)
|
||||
{
|
||||
aMouse.OnMouseChanged = HandleMouse;
|
||||
|
|
|
|||
Loading…
Reference in a new issue