blob: b8cd128b3ff8a5188fd5e7ec313effff2471f82d (
plain)
1
2
3
4
5
6
7
|
/* module-info.java
* This acts as the manifest for the module.
*/
module pacman.model {
requires javafx.controls; /* Declares a dependency on another module */
exports pacman.model; /* exports make specific packages */
} /* public to other modules */
|