Newer
Older
JumpingGame / src / main / java / entities / player / Onground.java
package entities.player;

import entities.Ground;

public class Onground {
    private Ground ground;
    private Position position;

    public Onground(Ground ground, Position position) {
        this.ground = ground;
        this.position = position;
    }

    public boolean getOnground() {
        return ((this.ground.getValue() == true) && (this.position.getValue().getSecond() <= 0.0));    }
}