This commit is contained in:
parent
f32d237a2d
commit
be4e6530f4
|
@ -7,7 +7,7 @@ plugins {
|
|||
}
|
||||
|
||||
group = "dev.frogmc"
|
||||
version = "0.0.1-alpha.24"
|
||||
version = "0.0.1-alpha.25"
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
[versions]
|
||||
|
||||
thyroxine = "0.0.1-alpha.12"
|
||||
nightconfig = "3.7.3"
|
||||
thyroxine = "0.0.1-alpha.13"
|
||||
nightconfig = "3.8.1"
|
||||
mixin = "0.15.0+mixin.0.8.7"
|
||||
annotations = "24.1.0"
|
||||
mixinextras = "0.3.6"
|
||||
mixinextras = "0.4.1"
|
||||
|
||||
[libraries]
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
plugins {
|
||||
java
|
||||
id("dev.frogmc.phytotelma") version "0.0.1-alpha.19"
|
||||
id("dev.frogmc.phytotelma") version "0.0.1-alpha.20"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
package dev.frogmc.frogloader.api.env;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
|
||||
/**
|
||||
|
@ -37,10 +42,20 @@ public enum Env {
|
|||
return this.identifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* Denotes this element to be stripped in non-client environments
|
||||
*/
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD})
|
||||
public @interface Client {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Denotes this element to be stripped in non-client environments
|
||||
*/
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD})
|
||||
public @interface Server {
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue