mirror of
https://github.com/TeamMidnightDust/VisualOverhaul.git
synced 2025-12-16 22:05:09 +01:00
14 lines
402 B
Java
14 lines
402 B
Java
package eu.midnightdust.visualoverhaul.config;
|
|
|
|
import me.sargunvohra.mcmods.autoconfig1u.ConfigData;
|
|
import me.sargunvohra.mcmods.autoconfig1u.annotation.Config;
|
|
|
|
@Config(name = "visualoverhaul")
|
|
public class VOConfig implements ConfigData {
|
|
|
|
public boolean brewingstand = true;
|
|
public boolean jukebox = true;
|
|
public boolean jukebox_fake_block = true;
|
|
public boolean furnace = true;
|
|
}
|