22 lines
429 B
Java
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;
|
|
|
|
}
|