final project q8

This commit is contained in:
2022-05-24 23:35:04 +08:00
parent d3cf0c7a7c
commit 3dc6689804
15 changed files with 552 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/*
* Author: CHEN Yongyuan (Walter) 1930006025 from OOP(1007)
* Date: 2022-04-25
*/
public class ControllerSimple extends Controller {
private Library m;
public ControllerSimple(Library m) {
super(m);
}
}