From a10cc2e1b4b7edf983847a411cc1d3df0021e9c8 Mon Sep 17 00:00:00 2001 From: TopchetoEU <36534413+TopchetoEU@users.noreply.github.com> Date: Wed, 21 Sep 2022 09:53:12 +0300 Subject: [PATCH] feat: Add config manager --- .../me/topchetoeu/smoothchunks/ConfigManager.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/java/me/topchetoeu/smoothchunks/ConfigManager.java diff --git a/src/main/java/me/topchetoeu/smoothchunks/ConfigManager.java b/src/main/java/me/topchetoeu/smoothchunks/ConfigManager.java new file mode 100644 index 0000000..94f03d5 --- /dev/null +++ b/src/main/java/me/topchetoeu/smoothchunks/ConfigManager.java @@ -0,0 +1,11 @@ +package me.topchetoeu.smoothchunks; + +import java.io.File; + +public class ConfigManager { + public final File configFile; + + public ConfigManager(File configFile) { + this.configFile = configFile; + } +}