We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63cd107 commit f978528Copy full SHA for f978528
Touch-Gestures.Tests/Tablet/GenericTouchReport.cs
@@ -1,10 +1,11 @@
1
+using System;
2
using OpenTabletDriver.Plugin.Tablet.Touch;
3
4
namespace TouchGestures.Tests.Tablet
5
{
6
public class GenericTouchReport : ITouchReport
7
- public byte[] Raw { set; get; } = new byte[0];
8
- public TouchPoint[] Touches { get; init; } = new TouchPoint[0];
+ public byte[] Raw { set; get; } = Array.Empty<byte>();
9
+ public TouchPoint[] Touches { get; init; } = Array.Empty<TouchPoint>();
10
}
11
0 commit comments