()
| 14 | public int x, y; |
| 15 | |
| 16 | public BitmapImageScene() { |
| 17 | try { |
| 18 | image = Image.makeDeferredFromEncodedBytes(Files.readAllBytes(Path.of(file("images/IMG_7098.jpeg")))); |
| 19 | } catch (IOException e) { |
| 20 | throw new RuntimeException(e); |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | public void advance(Canvas canvas, int width) { |
| 25 | canvas.restore(); |
nothing calls this directly
no test coverage detected