app-xamarintv/XamarinTV/Models/TouchActionType.cs

12 строки
178 B
C#
Исходник Обычный вид История

2020-02-10 05:49:35 +03:00
namespace XamarinTV.Models
{
public enum TouchActionType
{
Entered,
Pressed,
Moved,
Released,
Exited,
Cancelled
}
}