package models;
import entities.Ground;
//---------------------------------------------------------------
//
public class GroundModel implements IModel {
//---------------------------------------------------------------
private Ground ground;
//---------------------------------------------------------------
//---------------------------------------------------------------
public GroundModel() {
ground = new Ground();
}
//---------------------------------------------------------------
//---------------------------------------------------------------
// getter
public Ground getGround() {
return ground;
}
//---------------------------------------------------------------
//---------------------------------------------------------------
//
//---------------------------------------------------------------
}