21 lines
478 B
C#
Raw Normal View History

2011-11-04 23:06:39 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ANX.Framework.Input
{
public static class Mouse
{
public static IntPtr WindowHandle { get; set; }
public static MouseState GetState()
{
throw new NotImplementedException();
}
public static void SetPosition(int x, int y)
{
throw new NotImplementedException();
}
}
}