mirror of
https://github.com/CompeyDev/elytra-lock-fabric.git
synced 2024-12-12 21:00:42 +00:00
11 lines
No EOL
319 B
Java
11 lines
No EOL
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;
|
|
} |