blob: 71af35cc801b5c03a3d0a977f6f5396d1edf2965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* module-info.java
* This acts as the manifest for the module.
*/
module com.gr15.pacman.controller {
requires javafx.controls;
requires transitive javafx.graphics;
requires transitive com.gr15.pacman.view;
requires com.gr15.pacman.model;
exports com.gr15.pacman.controller;
exports com.gr15.pacman.controller.screen;
}
|