mirror of
https://github.com/Memorix101/UnityXNA/
synced 2024-12-30 15:25:35 +01:00
19 lines
429 B
C#
19 lines
429 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Microsoft.Xna.Framework.Input.Touch
|
|||
|
{
|
|||
|
public struct TouchLocation : IEquatable<TouchLocation>
|
|||
|
{
|
|||
|
public TouchLocationState State { get; set; }
|
|||
|
|
|||
|
public bool Equals(Microsoft.Xna.Framework.Input.Touch.TouchLocation touchLocation)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|