blob: 2bbcf70baeb3c93ca0b8f7aaed654828412ad0b9 (
plain)
1
2
3
4
5
6
7
8
|
/* module-info.java
* This acts as the manifest for the module.
*/
module com.gr15.pacman.model {
requires org.json;
exports com.gr15.pacman.model;
exports com.gr15.pacman.model.entities;
}
|