Touch input message for remote input via networking.
View code on GitHub
Inheritance Hierarchy
DeltaEngine.Input TouchMessage
Namespace: DeltaEngine.Input
Assembly: DeltaEngine.Input (in DeltaEngine.Input.dll) Version: 1.1.1.0 (1.1.1)
Syntax
The TouchMessage type exposes the following members.
Constructors
Name | Description | |
---|---|---|
TouchMessage | Initializes a new instance of the TouchMessage class |
Fields
Name | Description | |
---|---|---|
MaxNumberOfTouches |
Properties
Name | Description | |
---|---|---|
Positions | ||
PressedTouches |
Remarks
Examples
[Test] public void VerifyTouchMessagePropertiesAreSet() { Assert.AreEqual(new []{Vector2D.Half}, touchMessage.Positions); Assert.AreEqual(new []{true}, touchMessage.PressedTouches); }
See Also