gdxapp4d/numberxd/src/main/love/distributedrebirth/numberxd/base2t/bone/BassBoneName.java

19 lines
416 B
Java
Raw Normal View History

2022-02-01 15:27:06 +00:00
package love.distributedrebirth.numberxd.base2t.bone;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Defines the bean name.
*
* @author willemtsade ©Δ 仙上主天
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
public @interface BassBoneName {
String value();
}