From 8c8a4023c98e076ae6c635b36734dbe28782ed69 Mon Sep 17 00:00:00 2001 From: mithe24 Date: Tue, 20 May 2025 18:26:53 +0200 Subject: view module overhaul (#26) * chore(game assets): Removed unneeded pacman assets Removed unneeded pacman assets, as a single asset just can be rotated. * chore(): Updating to newest javafx version Updated javafx to newest version. Addded transitivity to modules. * chore(GameController): Removes duplicate class GameController * feat(camara): Adds camara abstraction and overhauls view * fix(sprite): Removed exception from setRotation No exception should be thrown if setting rotation in the Sprite class to a number below 0 or above 360 --- pacman/view/src/main/java/module-info.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pacman/view/src/main/java/module-info.java') diff --git a/pacman/view/src/main/java/module-info.java b/pacman/view/src/main/java/module-info.java index f91361e..c3e2178 100644 --- a/pacman/view/src/main/java/module-info.java +++ b/pacman/view/src/main/java/module-info.java @@ -2,9 +2,9 @@ * This acts as the manifest for the module. */ module com.gr15.pacman.view { - requires javafx.controls; - requires javafx.graphics; - requires com.gr15.pacman.model; + requires transitive javafx.controls; + requires transitive javafx.graphics; + requires transitive com.gr15.pacman.model; exports com.gr15.pacman.view.screen; exports com.gr15.pacman.view; -- cgit v1.2.3-70-g09d2