Files
Mindustry/core/src/mindustry/mod/NoPatch.java
2025-10-21 11:38:02 -04:00

10 lines
239 B
Java

package mindustry.mod;
import java.lang.annotation.*;
/** Indicates that a field cannot be edited by the content patcher. */
@Target({ElementType.FIELD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface NoPatch{
}