Bunkers-by-prestige/main/java/com/bizarrealex/aether/AetherOptions.java
disclearing 47c80ff363 6
2019-01-21 22:00:08 +00:00

22 lines
429 B
Java

package com.bizarrealex.aether;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;
@Getter
@Setter
@Accessors(chain = true, fluent = true)
public class AetherOptions {
static AetherOptions defaultOptions() {
return new AetherOptions()
.hook(true)
.scoreDirectionDown(false);
}
private boolean hook;
private boolean scoreDirectionDown;
}