(int id, float fracX, float fracY, int deviceId, float deviceWidth, float deviceHeight, int touchType)
| 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 test coverage detected