Compare commits

..

1 Commits

Author SHA1 Message Date
Renovate 9203acc881 Update actions/setup-java action to v5
Build and Test / build (pull_request) Failing after 35s
2026-05-13 11:00:25 +00:00
3 changed files with 0 additions and 19 deletions
@@ -1,15 +0,0 @@
package be.seeseemelk.diceos.system;
import io.avaje.inject.Component;
import lombok.RequiredArgsConstructor;
@Component
@RequiredArgsConstructor
public class WindowSpawnTask implements OnStartup {
private final WindowService windowService;
@Override
public void onStartup() {
windowService.spawnWindow(50, 50, 200, 150);
}
}
@@ -21,10 +21,6 @@ public class Window extends Container {
this.decoration = decoration; this.decoration = decoration;
} }
public boolean isHovered(int mouseX, int mouseY) {
return mouseX >= x && mouseX <= x + width && mouseY >= y && mouseY <= y + height;
}
private int dragOffsetX, dragOffsetY; private int dragOffsetX, dragOffsetY;
private boolean isDragging; private boolean isDragging;
Binary file not shown.

Before

Width:  |  Height:  |  Size: 205 B