Files
SlimeVR-Server/java/io/eiren/util/ann/DebugSwitch.java
2022-09-13 03:13:06 +03:00

10 lines
192 B
Java

package io.eiren.util.ann;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target({ ElementType.FIELD, ElementType.METHOD })
public @interface DebugSwitch {
}