| 4 | import org.jetbrains.annotations.*; |
| 5 | |
| 6 | @Data |
| 7 | public class EventTouchStart implements Event { |
| 8 | @ApiStatus.Internal public final int _id; |
| 9 | @ApiStatus.Internal public final float _fracX; |
| 10 | @ApiStatus.Internal public final float _fracY; |
| 11 | @ApiStatus.Internal public final int _deviceId; |
| 12 | @ApiStatus.Internal public final float _deviceWidth; |
| 13 | @ApiStatus.Internal public final float _deviceHeight; |
| 14 | @ApiStatus.Internal public final TouchType _touchType; |
| 15 | |
| 16 | public EventTouchStart(int id, float fracX, float fracY, int deviceId, float deviceWidth, float deviceHeight, int touchType) { |
| 17 | _id = id; |
| 18 | _fracX = fracX; |
| 19 | _fracY = fracY; |
| 20 | _deviceId = deviceId; |
| 21 | _deviceWidth = deviceWidth; |
| 22 | _deviceHeight = deviceHeight; |
| 23 | _touchType = TouchType.makeFromInt(touchType); |
| 24 | } |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected