123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace bbiwarg.Recognition.TouchRecognition
- {
- public enum TouchEventType
- {
- Down,
- Move,
- Up
- }
- public class TouchEvent
- {
- public TouchEventType Type { get; private set; }
- public Touch Touch { get; private set; }
- public TouchEvent(TouchEventType type, Touch touch)
- {
- Type = type;
- Touch = touch;
- }
- }
- }
|