Merge pull request #73 from nitta-lab-2022/Game
GameクラスにgetDrawingController()を追加
commit 25eccf2f374b39113fc0953d3e12186c4cea40e4
2 parents fa38a66 + 98323b9
ShimokawaGakuto authored on 10 Jun 2022
Showing 1 changed file
View
4
src/main/java/com/ntlab/irisserver/entities/Game.java
private DrawingController drawingController = null;
 
public Game() {
drawingController = new DrawingController(this);
}
 
public DrawingController getDrawingController() {
return drawingController;
}
 
public Drawing getDrawing(int dno) {
Drawing d = drawingList.get(dno);