mirror of
https://github.com/CompeyDev/elytra-lock-fabric.git
synced 2024-12-13 13:30:37 +00:00
11 lines
319 B
Java
11 lines
319 B
Java
|
package xyz.devcomp.elytralock.config;
|
||
|
|
||
|
import dev.isxander.yacl3.config.v2.api.SerialEntry;
|
||
|
import dev.isxander.yacl3.config.v2.api.autogen.*;
|
||
|
|
||
|
public class ConfigModel {
|
||
|
@SerialEntry(comment = "The status of the lock toggle")
|
||
|
@AutoGen(category = "elytralock")
|
||
|
@TickBox
|
||
|
public boolean toggle = false;
|
||
|
}
|