Newer
Older
JumpingGame / src / main / java / models / GroundModel.java
package models;

import entities.Ground;

//---------------------------------------------------------------
//
public class GroundModel implements IModel {
    //---------------------------------------------------------------
    private Ground ground;

    //---------------------------------------------------------------
    //---------------------------------------------------------------
    public GroundModel() {
        ground = new Ground();
    }

    //---------------------------------------------------------------
    //---------------------------------------------------------------
    // getter
    public Ground getGround() {
        return ground;
    }

    //---------------------------------------------------------------
    //---------------------------------------------------------------
    //

    //---------------------------------------------------------------
}