Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / ControllerJump.java
Simon Lindgren on 26 Mar 2020 375 bytes first commit
package net.minecraft.server;

public class ControllerJump {

    private final EntityInsentient b;
    protected boolean a;

    public ControllerJump(EntityInsentient entityinsentient) {
        this.b = entityinsentient;
    }

    public void jump() {
        this.a = true;
    }

    public void b() {
        this.b.setJumping(this.a);
        this.a = false;
    }
}