2022-02-02 15:29:29 +00:00
|
|
|
package love.distributedrebirth.bassboonyd;
|
2022-02-01 15:27:06 +00:00
|
|
|
|
|
|
|
import java.lang.annotation.ElementType;
|
|
|
|
import java.lang.annotation.Retention;
|
|
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
import java.lang.annotation.Target;
|
|
|
|
|
2022-02-02 17:01:10 +00:00
|
|
|
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
|
2022-02-01 15:27:06 +00:00
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
|
|
@Target({ElementType.TYPE})
|
2022-02-02 17:01:10 +00:00
|
|
|
public @interface BãßBȍőnAuthorInfoʸᴰ {
|
2022-02-01 15:27:06 +00:00
|
|
|
|
2022-02-02 17:01:10 +00:00
|
|
|
String name();
|
|
|
|
|
|
|
|
String copyright();
|
2022-02-01 15:27:06 +00:00
|
|
|
}
|