This commit is contained in:
2024-10-30 12:45:10 -04:00
parent f250b18783
commit 3a759dd0b6
9 changed files with 0 additions and 1 deletions

View File

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