blob: 8b4e2719a85ad8e511e9e8e149fb79fbbb7333e4 (
plain)
1
2
3
4
5
6
7
|
/* module-info.java
* This acts as the manifest for the module.
*/
module com.gr15.pacman.controller {
requires transitive com.gr15.pacman.view;
exports com.gr15.pacman.controller;
}
|