diff -r de6cfca9566bed16d4de4a82409c41ecb71d1a11 -r ac75dc03ed163839c62ea52a31c3f2fde3f084a3 axios/Axios_WP7.csproj
--- a/axios/Axios_WP7.csproj Fri Dec 28 16:57:08 2012 -0600
+++ b/axios/Axios_WP7.csproj Wed Jan 02 17:08:15 2013 -0600
@@ -171,9 +171,9 @@
+
-
diff -r de6cfca9566bed16d4de4a82409c41ecb71d1a11 -r ac75dc03ed163839c62ea52a31c3f2fde3f084a3 axios/Axios_Windows.csproj
--- a/axios/Axios_Windows.csproj Fri Dec 28 16:57:08 2012 -0600
+++ b/axios/Axios_Windows.csproj Wed Jan 02 17:08:15 2013 -0600
@@ -214,9 +214,9 @@
+
-
diff -r de6cfca9566bed16d4de4a82409c41ecb71d1a11 -r ac75dc03ed163839c62ea52a31c3f2fde3f084a3 axios/Axios_Xbox_360.csproj
--- a/axios/Axios_Xbox_360.csproj Fri Dec 28 16:57:08 2012 -0600
+++ b/axios/Axios_Xbox_360.csproj Wed Jan 02 17:08:15 2013 -0600
@@ -164,9 +164,9 @@
+
-
diff -r de6cfca9566bed16d4de4a82409c41ecb71d1a11 -r ac75dc03ed163839c62ea52a31c3f2fde3f084a3 axios/Axios_settings.cs
--- a/axios/Axios_settings.cs Fri Dec 28 16:57:08 2012 -0600
+++ b/axios/Axios_settings.cs Wed Jan 02 17:08:15 2013 -0600
@@ -116,6 +116,7 @@
* - Adding Factory for Texture2D to create from a list (ie lay a list of texture2D row by row)
* - Adding AddScreen method to ScreenManager to make the PlayerIndex optional (default of PlayerIndex.One)
* - Adding visible flag to DrawableAxiosGameObject and SimpleDrawableAxiosGameObject
+ * - Adding extension to mousestate (Position) to get a Vector2 object of the position
*
*/
#endregion
diff -r de6cfca9566bed16d4de4a82409c41ecb71d1a11 -r ac75dc03ed163839c62ea52a31c3f2fde3f084a3 axios/Engine/Extensions/Camera.cs
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/axios/Engine/Extensions/Camera.cs Wed Jan 02 17:08:15 2013 -0600
@@ -0,0 +1,11 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace Axios.Engine.Extensions
+{
+ public static class Camera
+ {
+ }
+}
diff -r de6cfca9566bed16d4de4a82409c41ecb71d1a11 -r ac75dc03ed163839c62ea52a31c3f2fde3f084a3 axios/Engine/Extensions/MouseState.cs
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/axios/Engine/Extensions/MouseState.cs Wed Jan 02 17:08:15 2013 -0600
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using Microsoft.Xna.Framework;
+using Microsoft.Xna.Framework.Input;
+using GameStateManagement;
+
+namespace Axios.Engine.Extensions
+{
+ public static class MoustStateExtensions
+ {
+ public static Vector2 Position(this MouseState input)
+ {
+ return new Vector2(input.X, input.Y);
+ }
+ }
+}