Newer
Older
JumpingGame / src / main / java / entities / Clear.java
k-fujii on 25 Nov 2021 384 bytes スクロールの依存関係を変更.
package entities;

public class Clear {
    private Position position;

    public Clear(Position position) {
        this.position = position;
    }

    public boolean getClear() {
        boolean temp_l4;
        if ((this.position.getValue().getFirst() > 100.0)) {
            temp_l4 = true;
        } else {
            temp_l4 = false;
        }
        return temp_l4;
    }
}