package models; import entities.Ground; import java.util.ArrayList; //--------------------------------------------------------------- // public class GroundModel implements IModel { //--------------------------------------------------------------- private Ground ground; private ArrayList<Integer> flagTimings = new ArrayList<>(); // フラグ切り替え //--------------------------------------------------------------- //--------------------------------------------------------------- public GroundModel() { ground = new Ground(); } //--------------------------------------------------------------- //--------------------------------------------------------------- // getter public Ground getGround() { return ground; } //--------------------------------------------------------------- //--------------------------------------------------------------- // //--------------------------------------------------------------- }