summaryrefslogtreecommitdiff
path: root/pacman/view/src/main/java/module-info.java
diff options
context:
space:
mode:
authormithe24 <mithe24@student.sdu.dk>2025-05-20 18:26:53 +0200
committerGitHub <noreply@github.com>2025-05-20 18:26:53 +0200
commit8c8a4023c98e076ae6c635b36734dbe28782ed69 (patch)
treed85fddfd3ec5db1a2d138573399733922e0209e1 /pacman/view/src/main/java/module-info.java
parentbf53777577aea4615559b56b319bfc8b24ed3fa0 (diff)
downloadpacman-8c8a4023c98e076ae6c635b36734dbe28782ed69.tar.gz
pacman-8c8a4023c98e076ae6c635b36734dbe28782ed69.zip
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
Diffstat (limited to 'pacman/view/src/main/java/module-info.java')
-rw-r--r--pacman/view/src/main/java/module-info.java6
1 files changed, 3 insertions, 3 deletions
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;