summaryrefslogtreecommitdiff
path: root/pacman/view/src/main/java/module-info.java
blob: a9649df7014cafede9943b759fcef153936a4f31 (plain)
1
2
3
4
5
6
7
8
9
/* module-info.java
 * This acts as the manifest for the module.
 */
module pacman.view {
    requires javafx.controls;   /* JavaFX dependencies */
    requires javafx.graphics;
    requires pacman.model;
    exports pacman.view;        /* exports make specific packages */
}                               /* public to other modules */