forked from TouchScript/TouchScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIInputSource.cs
More file actions
22 lines (21 loc) · 767 Bytes
/
Copy pathIInputSource.cs
File metadata and controls
22 lines (21 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
* @author Valentin Simonov / http://va.lent.in/
*/
namespace TouchScript.InputSources
{
/// <summary>
/// An object which represents an input source.
/// </summary>
/// <remarks>
/// <para>In TouchScript all touch points (<see cref="ITouch"/>) come from input sources.</para>
/// <para>If you want to feed the library with touches the best way to do it is to create a custom input source.</para>
/// </remarks>
public interface IInputSource
{
/// <summary>
/// Gets or sets current coordinates remapper.
/// </summary>
/// <value>An object used to change coordinates of touch points coming from this input source.</value>
ICoordinatesRemapper CoordinatesRemapper { get; set; }
}
}