Feather/src/main/java/me/braydon/feather/FeatherSettings.java

16 lines
329 B
Java
Raw Normal View History

2023-12-11 22:15:53 -08:00
package me.braydon.feather;
import lombok.Getter;
import lombok.Setter;
/**
* Settings for feather, modify these as you wish!
*
* @author Braydon
*/
public final class FeatherSettings {
/**
* The amount of threads to use for {@link FeatherThreads}.
*/
@Setter @Getter private static int threadCount = 4;
}