blob: c3e217823c87f835caa2178cc85d272a005c984a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* module-info.java
* This acts as the manifest for the module.
*/
module com.gr15.pacman.view {
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;
}
|