mirror of
https://github.com/Memorix101/UnityXNA/
synced 2024-12-30 15:25:35 +01:00
17 lines
314 B
C#
17 lines
314 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Microsoft.Xna.Framework.Input.Touch
|
|||
|
{
|
|||
|
public class TouchPanel
|
|||
|
{
|
|||
|
internal static TouchCollection GetState()
|
|||
|
{
|
|||
|
// TODO:
|
|||
|
return new TouchCollection();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|