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