From 2ea7db0f91128189cfaa28e9f446b8e4df71c9fa Mon Sep 17 00:00:00 2001 From: zarlo Date: Wed, 12 Jun 2019 15:55:10 +1000 Subject: [PATCH] Update MouseManager.cs why not most people will not likely do this in there code so why not here --- source/Cosmos.System2/MouseManager.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/Cosmos.System2/MouseManager.cs b/source/Cosmos.System2/MouseManager.cs index bf698625d..ab766fdba 100644 --- a/source/Cosmos.System2/MouseManager.cs +++ b/source/Cosmos.System2/MouseManager.cs @@ -51,6 +51,11 @@ namespace Cosmos.System /// public static uint Y; + /// + /// The Point of the mouse. + /// + public static Point getPoint() {return new Point((int)MouseManager.X, (int)MouseManager.Y);} + /// /// The state the mouse is currently in. ///