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