aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/dev/isxander/yacl/impl
diff options
context:
space:
mode:
authorisXander <xandersmith2008@gmail.com>2022-11-12 11:05:16 +0000
committerisXander <xandersmith2008@gmail.com>2022-11-12 11:05:16 +0000
commit558b120e2d4924a84860c3f84415ab573040a293 (patch)
treed1a6cf8508d2aadf5b1a22f663c3d4fb7867fdd2 /src/main/java/dev/isxander/yacl/impl
parentfe404957974b127363e95aa27c4745afc91760aa (diff)
downloadYetAnotherConfigLib-558b120e2d4924a84860c3f84415ab573040a293.tar.gz
YetAnotherConfigLib-558b120e2d4924a84860c3f84415ab573040a293.tar.bz2
YetAnotherConfigLib-558b120e2d4924a84860c3f84415ab573040a293.zip
REAL config library
Diffstat (limited to 'src/main/java/dev/isxander/yacl/impl')
-rw-r--r--src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java2
-rw-r--r--src/main/java/dev/isxander/yacl/impl/utils/YaclConstants.java8
2 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java b/src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java
index 7e2afdb..38112f4 100644
--- a/src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java
+++ b/src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java
@@ -4,6 +4,7 @@ import com.google.common.collect.ImmutableList;
import dev.isxander.yacl.api.ConfigCategory;
import dev.isxander.yacl.api.YetAnotherConfigLib;
import dev.isxander.yacl.gui.YACLScreen;
+import dev.isxander.yacl.impl.utils.YaclConstants;
import net.minecraft.client.gui.screen.Screen;
import net.minecraft.text.Text;
@@ -12,6 +13,7 @@ import java.util.function.Consumer;
public record YetAnotherConfigLibImpl(Text title, ImmutableList<ConfigCategory> categories, Runnable saveFunction, Consumer<YACLScreen> initConsumer) implements YetAnotherConfigLib {
@Override
public Screen generateScreen(Screen parent) {
+ YaclConstants.LOGGER.info("Generating YACL screen");
return new YACLScreen(this, parent);
}
}
diff --git a/src/main/java/dev/isxander/yacl/impl/utils/YaclConstants.java b/src/main/java/dev/isxander/yacl/impl/utils/YaclConstants.java
new file mode 100644
index 0000000..aadeb18
--- /dev/null
+++ b/src/main/java/dev/isxander/yacl/impl/utils/YaclConstants.java
@@ -0,0 +1,8 @@
+package dev.isxander.yacl.impl.utils;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class YaclConstants {
+ public static final Logger LOGGER = LoggerFactory.getLogger("YetAnotherConfigLib");
+}