2.0.0 - Config and Smart Leaves resourcepack!

This commit is contained in:
Motschen
2021-01-14 16:21:32 +01:00
parent d762b6c022
commit 2a2b97f41a
12 changed files with 182 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
package eu.midnightdust.cullleaves.config;
import me.sargunvohra.mcmods.autoconfig1u.ConfigData;
import me.sargunvohra.mcmods.autoconfig1u.annotation.Config;
import me.sargunvohra.mcmods.autoconfig1u.annotation.ConfigEntry;
import me.sargunvohra.mcmods.autoconfig1u.shadowed.blue.endless.jankson.Comment;
import net.minecraft.client.render.entity.PlayerModelPart;
@Config(name = "cullleaves")
public class CullLeavesConfig implements ConfigData {
@ConfigEntry.Gui.PrefixText // Enable/Disable the mod. Requires Chunk Reload (F3 + A).
public boolean enabled = true;
}