Require toggle in treeSettings

This commit is contained in:
CocoTheOwner 2021-07-21 11:34:34 +02:00
parent bfa13583e3
commit 66a8db598f

View File

@ -1,6 +1,7 @@
package com.volmit.iris.engine.object;
import com.volmit.iris.engine.object.annotations.Desc;
import com.volmit.iris.engine.object.annotations.Required;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
@ -15,6 +16,7 @@ import lombok.experimental.Accessors;
@EqualsAndHashCode(callSuper = false)
public class IrisTreeSettings {
@Required
@Desc("Turn replacing on and off")
boolean enabled = false;